Lokalisierung erweitert
This commit is contained in:
@@ -64,7 +64,12 @@
|
||||
"done": "Fertig",
|
||||
"next_round": "Nächste Runde",
|
||||
|
||||
"game_statistics": "Spielstatistiken",
|
||||
"statistics": "Statistiken",
|
||||
"delete_game": "Spiel löschen",
|
||||
"new_game_same_settings": "Neues Spiel mit gleichen Einstellungen",
|
||||
"export_game": "Spiel exportieren",
|
||||
|
||||
"game_process": "Spielverlauf",
|
||||
|
||||
"settings": "Einstellungen",
|
||||
"cabo_penalty": "Cabo-Strafe",
|
||||
|
||||
@@ -14,6 +14,7 @@
|
||||
"player": "Player",
|
||||
"players": "Players",
|
||||
"name": "Name",
|
||||
"back": "Back",
|
||||
|
||||
"home": "Home",
|
||||
"about": "About",
|
||||
@@ -63,6 +64,13 @@
|
||||
"done": "Done",
|
||||
"next_round": "Next Round",
|
||||
|
||||
"statistics": "Statistics",
|
||||
"delete_game": "Delete Game",
|
||||
"new_game_same_settings": "New Game with same Settings",
|
||||
"export_game": "Export Game",
|
||||
|
||||
"game_process": "Spielverlauf",
|
||||
|
||||
"settings": "Settings",
|
||||
"cabo_penalty": "Cabo Penalty",
|
||||
"cabo_penalty_subtitle": "... for falsely calling Cabo.",
|
||||
@@ -80,5 +88,6 @@
|
||||
"app_version": "App Version",
|
||||
"load_version": "Loading version...",
|
||||
"build": "Build",
|
||||
|
||||
"about_text": "Hey :) Thanks for being one of the first users of my app! I’ve put a lot of work into this project, and even though I tried to think of everything, it might not work perfectly just yet. So if you discover any bugs or have feedback on the design or usability, please let me know via the TestFlight app or by sending me a message or email. Thank you very much!"
|
||||
}
|
||||
|
||||
@@ -362,11 +362,35 @@ abstract class AppLocalizations {
|
||||
/// **'Nächste Runde'**
|
||||
String get next_round;
|
||||
|
||||
/// No description provided for @game_statistics.
|
||||
/// No description provided for @statistics.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Spielstatistiken'**
|
||||
String get game_statistics;
|
||||
/// **'Statistiken'**
|
||||
String get statistics;
|
||||
|
||||
/// No description provided for @delete_game.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Spiel löschen'**
|
||||
String get delete_game;
|
||||
|
||||
/// No description provided for @new_game_same_settings.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Neues Spiel mit gleichen Einstellungen'**
|
||||
String get new_game_same_settings;
|
||||
|
||||
/// No description provided for @export_game.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Spiel exportieren'**
|
||||
String get export_game;
|
||||
|
||||
/// No description provided for @game_process.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Spielverlauf'**
|
||||
String get game_process;
|
||||
|
||||
/// No description provided for @settings.
|
||||
///
|
||||
|
||||
@@ -150,7 +150,19 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
String get next_round => 'Nächste Runde';
|
||||
|
||||
@override
|
||||
String get game_statistics => 'Spielstatistiken';
|
||||
String get statistics => 'Statistiken';
|
||||
|
||||
@override
|
||||
String get delete_game => 'Spiel löschen';
|
||||
|
||||
@override
|
||||
String get new_game_same_settings => 'Neues Spiel mit gleichen Einstellungen';
|
||||
|
||||
@override
|
||||
String get export_game => 'Spiel exportieren';
|
||||
|
||||
@override
|
||||
String get game_process => 'Spielverlauf';
|
||||
|
||||
@override
|
||||
String get settings => 'Einstellungen';
|
||||
|
||||
@@ -48,7 +48,7 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
String get name => 'Name';
|
||||
|
||||
@override
|
||||
String get back => 'Zurück';
|
||||
String get back => 'Back';
|
||||
|
||||
@override
|
||||
String get home => 'Home';
|
||||
@@ -147,7 +147,19 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
String get next_round => 'Next Round';
|
||||
|
||||
@override
|
||||
String get game_statistics => 'Spielstatistiken';
|
||||
String get statistics => 'Statistics';
|
||||
|
||||
@override
|
||||
String get delete_game => 'Delete Game';
|
||||
|
||||
@override
|
||||
String get new_game_same_settings => 'New Game with same Settings';
|
||||
|
||||
@override
|
||||
String get export_game => 'Export Game';
|
||||
|
||||
@override
|
||||
String get game_process => 'Spielverlauf';
|
||||
|
||||
@override
|
||||
String get settings => 'Settings';
|
||||
|
||||
@@ -1,6 +1 @@
|
||||
{
|
||||
"en": [
|
||||
"back",
|
||||
"game_statistics"
|
||||
]
|
||||
}
|
||||
{}
|
||||
Reference in New Issue
Block a user