Added new kamikaze button and bundles navigation functionality

This commit is contained in:
2025-07-19 16:46:20 +02:00
parent bda9f00501
commit 0ac446b032
7 changed files with 84 additions and 25 deletions

View File

@@ -71,6 +71,7 @@
"results": "Ergebnisse",
"who_said_cabo": "Wer hat CABO gesagt?",
"kamikaze": "Kamikaze",
"who_has_kamikaze": "Wer hat Kamikaze?",
"done": "Fertig",
"next_round": "Nächste Runde",
"bonus_points_title": "Bonus-Punkte!",

View File

@@ -71,6 +71,7 @@
"results": "Results",
"who_said_cabo": "Who called Cabo?",
"kamikaze": "Kamikaze",
"who_has_kamikaze": "Who has Kamikaze?",
"done": "Done",
"next_round": "Next Round",
"bonus_points_title": "Bonus-Points!",

View File

@@ -404,6 +404,12 @@ abstract class AppLocalizations {
/// **'Kamikaze'**
String get kamikaze;
/// No description provided for @who_has_kamikaze.
///
/// In de, this message translates to:
/// **'Wer hat Kamikaze?'**
String get who_has_kamikaze;
/// No description provided for @done.
///
/// In de, this message translates to:

View File

@@ -172,6 +172,9 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get kamikaze => 'Kamikaze';
@override
String get who_has_kamikaze => 'Wer hat Kamikaze?';
@override
String get done => 'Fertig';

View File

@@ -170,6 +170,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get kamikaze => 'Kamikaze';
@override
String get who_has_kamikaze => 'Who has Kamikaze?';
@override
String get done => 'Done';