From c33053b26b8c669ea197fd989678ec9549d13d12 Mon Sep 17 00:00:00 2001 From: previously contributed as ttenbergen Date: Thu, 26 Mar 2026 03:22:44 -0500 Subject: [PATCH] =?UTF-8?q?Add=20missing=20Icelandic=20character=20=C3=AD?= =?UTF-8?q?=20(VK=5FI)=20(#46424)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 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. --- src/modules/poweraccent/PowerAccent.Core/Languages.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/poweraccent/PowerAccent.Core/Languages.cs b/src/modules/poweraccent/PowerAccent.Core/Languages.cs index 73dca3ee72..d568a60e31 100644 --- a/src/modules/poweraccent/PowerAccent.Core/Languages.cs +++ b/src/modules/poweraccent/PowerAccent.Core/Languages.cs @@ -376,6 +376,7 @@ namespace PowerAccent.Core LetterKey.VK_A => new[] { "á", "æ" }, LetterKey.VK_D => new[] { "ð" }, LetterKey.VK_E => new[] { "é" }, + LetterKey.VK_I => new[] { "í" }, LetterKey.VK_O => new[] { "ó", "ö" }, LetterKey.VK_U => new[] { "ú" }, LetterKey.VK_Y => new[] { "ý" },