[QuickAccent]Add é to Norwegian and Swedish (#28225)

This commit is contained in:
Aaron Junker
2023-09-07 12:34:15 +02:00
committed by GitHub
parent 937e7b0c00
commit 2ecf5f41c2

View File

@@ -548,6 +548,7 @@ namespace PowerAccent.Core
return letter switch return letter switch
{ {
LetterKey.VK_A => new[] { "å", "ä" }, LetterKey.VK_A => new[] { "å", "ä" },
LetterKey.VK_E => new[] { "é" },
LetterKey.VK_O => new[] { "ö" }, LetterKey.VK_O => new[] { "ö" },
_ => Array.Empty<string>(), _ => Array.Empty<string>(),
}; };
@@ -583,7 +584,7 @@ namespace PowerAccent.Core
return letter switch return letter switch
{ {
LetterKey.VK_A => new[] { "å", "æ" }, LetterKey.VK_A => new[] { "å", "æ" },
LetterKey.VK_E => new[] { "€" }, LetterKey.VK_E => new[] { "€", "é" },
LetterKey.VK_O => new[] { "ø" }, LetterKey.VK_O => new[] { "ø" },
LetterKey.VK_S => new[] { "$" }, LetterKey.VK_S => new[] { "$" },
_ => Array.Empty<string>(), _ => Array.Empty<string>(),