Skip to content

Commit

Permalink
Added üÜ and ßẞ to DEMessagEaseNordic.kt, shifted ßẞ correctly in ger…
Browse files Browse the repository at this point in the history
…man keyboards (#1028)

* Added üÜ and ßẞ to DEMessagEaseNordic.kt

kept both at positions from DEMessagEase.kt, moved æÆ to left of eE

Fixes #1027
Fixes #1027

* changed ß (small) to ẞ (big) in shifted layers of all german keyboards

yes, there is a big version of the letter https://de.wikipedia.org/wiki/Gro%C3%9Fes_%C3%9F

* typo
  • Loading branch information
MarvinBaral authored Aug 27, 2024
1 parent 88c3407 commit 5458d36
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,8 @@ val KB_DE_MESSAGEASE_SHIFTED =
),
SwipeDirection.BOTTOM to
KeyC(
display = KeyDisplay.TextDisplay("ß"),
action = KeyAction.CommitText("ß"),
display = KeyDisplay.TextDisplay(""),
action = KeyAction.CommitText(""),
),
SwipeDirection.RIGHT to
KeyC(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ val KB_DE_NORDIC_MESSAGEASE_MAIN =
mapOf(
SwipeDirection.TOP to
KeyC(
display = KeyDisplay.TextDisplay("æ"),
action = KeyAction.CommitText("æ"),
display = KeyDisplay.TextDisplay("ü"),
action = KeyAction.CommitText("ü"),
),
SwipeDirection.TOP_LEFT to
KeyC(
Expand Down Expand Up @@ -366,6 +366,11 @@ val KB_DE_NORDIC_MESSAGEASE_MAIN =
display = KeyDisplay.TextDisplay("ø"),
action = KeyAction.CommitText("ø"),
),
SwipeDirection.BOTTOM to
KeyC(
display = KeyDisplay.TextDisplay("ß"),
action = KeyAction.CommitText("ß"),
),
SwipeDirection.BOTTOM_RIGHT to
KeyC(
display = KeyDisplay.IconDisplay(Icons.AutoMirrored.Outlined.KeyboardTab),
Expand Down Expand Up @@ -395,6 +400,11 @@ val KB_DE_NORDIC_MESSAGEASE_MAIN =
action = KeyAction.CommitText("\""),
color = ColorVariant.MUTED,
),
SwipeDirection.LEFT to
KeyC(
display = KeyDisplay.TextDisplay("æ"),
action = KeyAction.CommitText("æ"),
),
SwipeDirection.BOTTOM_LEFT to
KeyC(
display = KeyDisplay.TextDisplay(","),
Expand Down Expand Up @@ -634,8 +644,8 @@ val KB_DE_NORDIC_MESSAGEASE_SHIFTED =
mapOf(
SwipeDirection.TOP to
KeyC(
display = KeyDisplay.TextDisplay("Æ"),
action = KeyAction.CommitText("Æ"),
display = KeyDisplay.TextDisplay("Ü"),
action = KeyAction.CommitText("Ü"),
),
SwipeDirection.TOP_LEFT to
KeyC(
Expand Down Expand Up @@ -834,6 +844,11 @@ val KB_DE_NORDIC_MESSAGEASE_SHIFTED =
display = KeyDisplay.TextDisplay("Ø"),
action = KeyAction.CommitText("Ø"),
),
SwipeDirection.BOTTOM to
KeyC(
display = KeyDisplay.TextDisplay(""),
action = KeyAction.CommitText(""),
),
SwipeDirection.BOTTOM_RIGHT to
KeyC(
display = KeyDisplay.IconDisplay(Icons.AutoMirrored.Outlined.KeyboardTab),
Expand Down Expand Up @@ -863,6 +878,11 @@ val KB_DE_NORDIC_MESSAGEASE_SHIFTED =
action = KeyAction.CommitText("\""),
color = ColorVariant.MUTED,
),
SwipeDirection.LEFT to
KeyC(
display = KeyDisplay.TextDisplay("Æ"),
action = KeyAction.CommitText("Æ"),
),
SwipeDirection.BOTTOM_LEFT to
KeyC(
display = KeyDisplay.TextDisplay(","),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -577,8 +577,8 @@ val KB_DE_THUMBKEY_SHIFTED =
),
SwipeDirection.LEFT to
KeyC(
display = KeyDisplay.TextDisplay("ß"),
action = KeyAction.CommitText("ß"),
display = KeyDisplay.TextDisplay(""),
action = KeyAction.CommitText(""),
),
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -846,8 +846,8 @@ val KB_DE_THUMBKEY_MULTILINGUAL_SHIFTED =
),
SwipeDirection.LEFT to
KeyC(
display = KeyDisplay.TextDisplay("ß"),
action = KeyAction.CommitText("ß"),
display = KeyDisplay.TextDisplay(""),
action = KeyAction.CommitText(""),
),
),
),
Expand Down

0 comments on commit 5458d36

Please sign in to comment.