Removed unused strings

This commit is contained in:
2025-07-19 21:52:29 +02:00
parent a339537227
commit 21437e6b0e
5 changed files with 7 additions and 22 deletions

View File

@@ -519,23 +519,17 @@ abstract class AppLocalizations {
/// **'Cabo-Strafe'**
String get cabo_penalty;
/// No description provided for @cabo_penalty_subtitle.
///
/// In de, this message translates to:
/// **'... für falsches Cabo sagen'**
String get cabo_penalty_subtitle;
/// No description provided for @point_limit.
///
/// In de, this message translates to:
/// **'Punkte-Limit'**
String get point_limit;
/// No description provided for @point_limit_subtitle.
/// No description provided for @standard_mode.
///
/// In de, this message translates to:
/// **'... hier ist Schluss'**
String get point_limit_subtitle;
/// **'Standard-Modus'**
String get standard_mode;
/// No description provided for @reset_to_default.
///

View File

@@ -243,14 +243,11 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get cabo_penalty => 'Cabo-Strafe';
@override
String get cabo_penalty_subtitle => '... für falsches Cabo sagen';
@override
String get point_limit => 'Punkte-Limit';
@override
String get point_limit_subtitle => '... hier ist Schluss';
String get standard_mode => 'Standard-Modus';
@override
String get reset_to_default => 'Auf Standard zurücksetzen';

View File

@@ -241,15 +241,11 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get cabo_penalty => 'Cabo Penalty';
@override
String get cabo_penalty_subtitle =>
'A point penalty for incorrectly calling Cabo.';
@override
String get point_limit => 'Point Limit';
@override
String get point_limit_subtitle => 'The required score to win the game.';
String get standard_mode => 'Default Mode';
@override
String get reset_to_default => 'Reset to Default';