[QuickAccent] Rename PowerAccent to Quick Accent (#20176)

* Rename PowerAccent to Keyboard Accent

* Fix bug report and translation issue templates

* Rename to Quick Accent

* missing mention
This commit is contained in:
Jaime Bernardo
2022-08-31 19:05:54 +01:00
committed by GitHub
parent 7e291fb303
commit 9b3e8503a8
24 changed files with 97 additions and 97 deletions

View File

@@ -17,7 +17,7 @@ namespace PowerAccent;
internal static class Program
{
private const string PROGRAM_NAME = "PowerAccent";
private const string PROGRAM_NAME = "QuickAccent";
private const string PROGRAM_APP_NAME = "PowerToys.PowerAccent";
private static App _application;
private static int _powerToysRunnerPid;
@@ -40,7 +40,7 @@ internal static class Program
}
else
{
Logger.LogWarning("Another running PowerAccent instance was detected. Exiting PowerAccent");
Logger.LogWarning("Another running QuickAccent instance was detected. Exiting QuickAccent");
}
}
@@ -65,11 +65,11 @@ internal static class Program
{
_ = int.TryParse(args[0], out _powerToysRunnerPid);
Logger.LogInfo($"PowerAccent started from the PowerToys Runner. Runner pid={_powerToysRunnerPid}");
Logger.LogInfo($"QuickAccent started from the PowerToys Runner. Runner pid={_powerToysRunnerPid}");
RunnerHelper.WaitForPowerToysRunner(_powerToysRunnerPid, () =>
{
Logger.LogInfo("PowerToys Runner exited. Exiting PowerAccent");
Logger.LogInfo("PowerToys Runner exited. Exiting QuickAccent");
Terminate();
});
}
@@ -80,7 +80,7 @@ internal static class Program
}
else
{
Logger.LogInfo($"PowerAccent started detached from PowerToys Runner.");
Logger.LogInfo($"QuickAccent started detached from PowerToys Runner.");
_powerToysRunnerPid = -1;
}
}