From 486aae5c6be02e3d9be03549038352d174c7ab8f Mon Sep 17 00:00:00 2001 From: fgueben Date: Mon, 11 May 2026 20:49:54 +0200 Subject: [PATCH] Update language.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added the letters "k" and "w" that were missing in the french language. abcçdeéèfghijlmnopqrstuvxyz -> is the previous alphabet (missing the letters "k" and "w") abcçdeéèfghijklmnopqrstuvwxyz -> is the correct complete alphabet (by adding the letters "k" and "w") --- packages/keybr-keyboard/lib/language.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/keybr-keyboard/lib/language.ts b/packages/keybr-keyboard/lib/language.ts index 37ecfeb4..16063d02 100644 --- a/packages/keybr-keyboard/lib/language.ts +++ b/packages/keybr-keyboard/lib/language.ts @@ -84,7 +84,7 @@ export class Language implements EnumItem { /* id= */ "fr", /* script= */ "latin", /* direction= */ "ltr", - /* alphabet= */ "abcçdeéèfghijlmnopqrstuvxyz", + /* alphabet= */ "abcçdeéèfghijklmnopqrstuvwxyz", ); static readonly HE = new Language( /* id= */ "he",