Updated strings
This commit is contained in:
@@ -30,6 +30,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"rating_title": "Gefällt dir die App?",
|
||||
"rating_message": "Feedback hilft mir, die App zu verbessern. Vielen Dank!",
|
||||
"yes": "Ja",
|
||||
"no": "Nein",
|
||||
|
||||
"overview": "Übersicht",
|
||||
"new_game": "Neues Spiel",
|
||||
"game_title": "Titel des Spiels",
|
||||
|
||||
@@ -30,6 +30,11 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"rating_title": "Do you like the app?",
|
||||
"rating_message": "Feedback helps me to continuously improve the app. Thank you!",
|
||||
"yes": "Yes",
|
||||
"no": "No",
|
||||
|
||||
"overview": "Overview",
|
||||
"new_game": "New Game",
|
||||
"game_title": "Game Title",
|
||||
|
||||
@@ -218,6 +218,30 @@ abstract class AppLocalizations {
|
||||
/// **'Bist du sicher, dass du das Spiel \"{gameTitle}\" löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.'**
|
||||
String delete_game_message(String gameTitle);
|
||||
|
||||
/// No description provided for @rating_title.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Gefällt dir die App?'**
|
||||
String get rating_title;
|
||||
|
||||
/// No description provided for @rating_message.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Feedback hilft mir, die App zu verbessern. Vielen Dank!'**
|
||||
String get rating_message;
|
||||
|
||||
/// No description provided for @yes.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Ja'**
|
||||
String get yes;
|
||||
|
||||
/// No description provided for @no.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Nein'**
|
||||
String get no;
|
||||
|
||||
/// No description provided for @overview.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
|
||||
@@ -71,6 +71,19 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
return 'Bist du sicher, dass du das Spiel \"$gameTitle\" löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.';
|
||||
}
|
||||
|
||||
@override
|
||||
String get rating_title => 'Gefällt dir die App?';
|
||||
|
||||
@override
|
||||
String get rating_message =>
|
||||
'Feedback hilft mir, die App zu verbessern. Vielen Dank!';
|
||||
|
||||
@override
|
||||
String get yes => 'Ja';
|
||||
|
||||
@override
|
||||
String get no => 'Nein';
|
||||
|
||||
@override
|
||||
String get overview => 'Übersicht';
|
||||
|
||||
|
||||
@@ -71,6 +71,19 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
return 'Are you sure you want to delete the game \"$gameTitle\"? This action cannot be undone.';
|
||||
}
|
||||
|
||||
@override
|
||||
String get rating_title => 'Do you like the app?';
|
||||
|
||||
@override
|
||||
String get rating_message =>
|
||||
'Feedback helps me to continuously improve the app. Thank you!';
|
||||
|
||||
@override
|
||||
String get yes => 'Yes';
|
||||
|
||||
@override
|
||||
String get no => 'No';
|
||||
|
||||
@override
|
||||
String get overview => 'Overview';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user