[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

@@ -12,7 +12,7 @@ using System.Text.Json;
public class SettingsService
{
private const string PowerAccentModuleName = "PowerAccent";
private const string PowerAccentModuleName = "QuickAccent";
private readonly ISettingsUtils _settingsUtils;
private readonly IFileSystemWatcher _watcher;
private readonly object _loadingSettingsLock = new object();
@@ -34,7 +34,7 @@ public class SettingsService
{
if (!_settingsUtils.SettingsExists(PowerAccentModuleName))
{
Logger.LogInfo("PowerAccent settings.json was missing, creating a new one");
Logger.LogInfo("QuickAccent settings.json was missing, creating a new one");
var defaultSettings = new PowerAccentSettings();
var options = new JsonSerializerOptions
{

View File

@@ -14,7 +14,7 @@ namespace PowerAccent.Core.Tools
public static class Logger
{
private static readonly IFileSystem _fileSystem = new FileSystem();
private static readonly string ApplicationLogPath = Path.Combine(Constants.AppDataPath(), "PowerAccent\\Logs");
private static readonly string ApplicationLogPath = Path.Combine(Constants.AppDataPath(), "QuickAccent\\Logs");
static Logger()
{