Added new Buttons and new GraphView
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
"player": "Spieler:in",
|
||||
"players": "Spieler:innen",
|
||||
"name": "Name",
|
||||
"back": "Zurück",
|
||||
|
||||
"home": "Home",
|
||||
"about": "Über",
|
||||
@@ -63,6 +64,8 @@
|
||||
"done": "Fertig",
|
||||
"next_round": "Nächste Runde",
|
||||
|
||||
"game_statistics": "Spielstatistiken",
|
||||
|
||||
"settings": "Einstellungen",
|
||||
"cabo_penalty": "Cabo-Strafe",
|
||||
"cabo_penalty_subtitle": "... für falsches Cabo sagen",
|
||||
|
||||
@@ -176,6 +176,12 @@ abstract class AppLocalizations {
|
||||
/// **'Name'**
|
||||
String get name;
|
||||
|
||||
/// No description provided for @back.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Zurück'**
|
||||
String get back;
|
||||
|
||||
/// No description provided for @home.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
@@ -356,6 +362,12 @@ abstract class AppLocalizations {
|
||||
/// **'Nächste Runde'**
|
||||
String get next_round;
|
||||
|
||||
/// No description provided for @game_statistics.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'Spielstatistiken'**
|
||||
String get game_statistics;
|
||||
|
||||
/// No description provided for @settings.
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
|
||||
@@ -47,6 +47,9 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
@override
|
||||
String get name => 'Name';
|
||||
|
||||
@override
|
||||
String get back => 'Zurück';
|
||||
|
||||
@override
|
||||
String get home => 'Home';
|
||||
|
||||
@@ -146,6 +149,9 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
@override
|
||||
String get next_round => 'Nächste Runde';
|
||||
|
||||
@override
|
||||
String get game_statistics => 'Spielstatistiken';
|
||||
|
||||
@override
|
||||
String get settings => 'Einstellungen';
|
||||
|
||||
|
||||
@@ -47,6 +47,9 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get name => 'Name';
|
||||
|
||||
@override
|
||||
String get back => 'Zurück';
|
||||
|
||||
@override
|
||||
String get home => 'Home';
|
||||
|
||||
@@ -58,7 +61,7 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get empty_text_2 =>
|
||||
'Add a new round using the button in the top right corner';
|
||||
'Add a new round using the button in the top right corner.';
|
||||
|
||||
@override
|
||||
String get delete_game_title => 'Delete game?';
|
||||
@@ -143,6 +146,9 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get next_round => 'Next Round';
|
||||
|
||||
@override
|
||||
String get game_statistics => 'Spielstatistiken';
|
||||
|
||||
@override
|
||||
String get settings => 'Settings';
|
||||
|
||||
@@ -150,13 +156,13 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
String get cabo_penalty => 'Cabo Penalty';
|
||||
|
||||
@override
|
||||
String get cabo_penalty_subtitle => '... for falsely calling Cabo';
|
||||
String get cabo_penalty_subtitle => '... for falsely calling Cabo.';
|
||||
|
||||
@override
|
||||
String get point_limit => 'Point Limit';
|
||||
|
||||
@override
|
||||
String get point_limit_subtitle => '... the game ends here';
|
||||
String get point_limit_subtitle => '... the game ends here.';
|
||||
|
||||
@override
|
||||
String get reset_to_default => 'Reset to Default';
|
||||
@@ -196,5 +202,5 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get about_text =>
|
||||
'Hey :) Thanks for being one of the first users of my first app! I’ve put a lot of work into this project, and even though I (hopefully) thought of a lot, not everything will work 100% yet. So if you discover any bugs or have feedback on the design or usability, please let me know via the Testflight app or a message / email. Thank you very much!';
|
||||
'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!';
|
||||
}
|
||||
|
||||
@@ -1 +1,6 @@
|
||||
{}
|
||||
{
|
||||
"en": [
|
||||
"back",
|
||||
"game_statistics"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user