mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 17:56:44 +02:00
[Quick Accent]Add missing currency symbols to Croatian, Gaeilge, Gàidhlig and Welsh (#29597)
* Add € to Croatian Quick Accent * Add € to Gaeilge and £ to Gàidhlig and Welsh
This commit is contained in:
@@ -203,6 +203,7 @@ namespace PowerAccent.Core
|
||||
{
|
||||
LetterKey.VK_C => new[] { "ć", "č" },
|
||||
LetterKey.VK_D => new[] { "đ" },
|
||||
LetterKey.VK_E => new[] { "€" },
|
||||
LetterKey.VK_S => new[] { "š" },
|
||||
LetterKey.VK_Z => new[] { "ž" },
|
||||
_ => Array.Empty<string>(),
|
||||
@@ -453,7 +454,7 @@ namespace PowerAccent.Core
|
||||
return letter switch
|
||||
{
|
||||
LetterKey.VK_A => new[] { "á" },
|
||||
LetterKey.VK_E => new[] { "é" },
|
||||
LetterKey.VK_E => new[] { "é", "€" },
|
||||
LetterKey.VK_I => new[] { "í" },
|
||||
LetterKey.VK_O => new[] { "ó" },
|
||||
LetterKey.VK_U => new[] { "ú" },
|
||||
@@ -470,6 +471,7 @@ namespace PowerAccent.Core
|
||||
LetterKey.VK_E => new[] { "è" },
|
||||
LetterKey.VK_I => new[] { "ì" },
|
||||
LetterKey.VK_O => new[] { "ò" },
|
||||
LetterKey.VK_P => new[] { "£" },
|
||||
LetterKey.VK_U => new[] { "ù" },
|
||||
_ => Array.Empty<string>(),
|
||||
};
|
||||
@@ -603,6 +605,7 @@ namespace PowerAccent.Core
|
||||
LetterKey.VK_E => new[] { "ê" },
|
||||
LetterKey.VK_I => new[] { "î" },
|
||||
LetterKey.VK_O => new[] { "ô" },
|
||||
LetterKey.VK_P => new[] { "£" },
|
||||
LetterKey.VK_U => new[] { "û" },
|
||||
LetterKey.VK_Y => new[] { "ŷ" },
|
||||
LetterKey.VK_W => new[] { "ŵ" },
|
||||
|
||||
Reference in New Issue
Block a user