diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-06-24 20:00:37 +0200 |
---|---|---|
committer | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2017-06-24 20:00:37 +0200 |
commit | fc27155b0e86a37cba5ba597eff4ac350ed4ed19 (patch) | |
tree | 41891f015059e65d01b3c2390fa3a8f896417f8e /src/naming_screen.c | |
parent | a7bc5ccde76ded88ff8c2991456388f7f960a15b (diff) |
wip src
Diffstat (limited to 'src/naming_screen.c')
-rw-r--r-- | src/naming_screen.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/naming_screen.c b/src/naming_screen.c index 88059e669..34c7bebb3 100644 --- a/src/naming_screen.c +++ b/src/naming_screen.c @@ -1929,6 +1929,7 @@ static const struct NamingScreenTemplate *const sNamingScreenTemplates[] = static const u8 sKeyboardCharacters[][4][20] = { +#if ENGLISH { _(" A B C D E F . "), _(" G H I J K L , "), @@ -1941,6 +1942,20 @@ static const u8 sKeyboardCharacters[][4][20] = _(" m n o p q r s "), _(" t u v w x y z "), }, +#elif GERMAN + { + _(" ABCD EFGH . "), + _(" IJKL MNOP , "), + _(" QRST UVWX "), + _(" YZ ÄÖÜ "), + }, + { + _(" abcd efgh . "), + _(" ijkl mnop , "), + _(" qrst uvwx "), + _(" yz äöü "), + }, +#endif { _(" 0 1 2 3 4 "), _(" 5 6 7 8 9 "), |