Add Swiss German translation (WIP)

This commit is contained in:
Calcitem 2021-07-28 02:40:20 +08:00
parent 7606499fd6
commit be38b097c1
No known key found for this signature in database
GPG Key ID: F2F7C29E054CFB80
2 changed files with 1142 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -32,6 +32,7 @@ Map<String, Strings> languageCodeToStrings = {
"cs": CzechStrings(),
"da": DanishStrings(),
"de": GermanStrings(),
"de_CH": SwissGermanStrings(),
"el": GreekStrings(),
"en": EnglishStrings(),
"es": SpanishStrings(),
@ -132,6 +133,15 @@ class GermanStrings extends Strings {
String get tapBackAgainToLeave => 'Nochmal drücken um zu Beenden.';
}
/// de-ch
class SwissGermanStrings extends Strings {
@override
String get languageName => 'Schweizerdeutsch';
@override
String get tapBackAgainToLeave => 'Nochmal drücken um zu Beenden.';
}
/// el
class GreekStrings extends Strings {
@override