Skip to content

Commit c33053b

Browse files
Add missing Icelandic character í (VK_I) (#46424)
## Summary of the Pull Request The Icelandic language definition was missing `í` entirely. This adds it to `VK_I`. Closes: Add missing Icelandic character í (VK_I) #46423 ## Validation Steps Performed Code review only. The change is a single line addition to a data-only switch statement, consistent in structure with all other language entries in the file. No binaries, pipelines, or localization files are affected.
1 parent 2cf7d0f commit c33053b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/modules/poweraccent/PowerAccent.Core/Languages.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,7 @@ private static string[] GetDefaultLetterKeyIS(LetterKey letter)
376376
LetterKey.VK_A => new[] { "á", "æ" },
377377
LetterKey.VK_D => new[] { "ð" },
378378
LetterKey.VK_E => new[] { "é" },
379+
LetterKey.VK_I => new[] { "í" },
379380
LetterKey.VK_O => new[] { "ó", "ö" },
380381
LetterKey.VK_U => new[] { "ú" },
381382
LetterKey.VK_Y => new[] { "ý" },

0 commit comments

Comments
 (0)