Updated identifiers

This commit is contained in:
2025-07-10 17:42:47 +02:00
parent d5d318929e
commit 08c2b1d91a
7 changed files with 15 additions and 15 deletions

View File

@@ -30,8 +30,8 @@
} }
} }
}, },
"rating_title": "Gefällt dir die App?", "pre_rating_title": "Gefällt dir die App?",
"rating_message": "Feedback hilft mir, die App zu verbessern. Vielen Dank!", "pre_rating_message": "Feedback hilft mir, die App zu verbessern. Vielen Dank!",
"yes": "Ja", "yes": "Ja",
"no": "Nein", "no": "Nein",

View File

@@ -30,8 +30,8 @@
} }
} }
}, },
"rating_title": "Do you like the app?", "pre_rating_title": "Do you like the app?",
"rating_message": "Feedback helps me to continuously improve the app. Thank you!", "pre_rating_message": "Feedback helps me to continuously improve the app. Thank you!",
"yes": "Yes", "yes": "Yes",
"no": "No", "no": "No",

View File

@@ -218,17 +218,17 @@ abstract class AppLocalizations {
/// **'Bist du sicher, dass du das Spiel \"{gameTitle}\" löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.'** /// **'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); String delete_game_message(String gameTitle);
/// No description provided for @rating_title. /// No description provided for @pre_rating_title.
/// ///
/// In de, this message translates to: /// In de, this message translates to:
/// **'Gefällt dir die App?'** /// **'Gefällt dir die App?'**
String get rating_title; String get pre_rating_title;
/// No description provided for @rating_message. /// No description provided for @pre_rating_message.
/// ///
/// In de, this message translates to: /// In de, this message translates to:
/// **'Feedback hilft mir, die App zu verbessern. Vielen Dank!'** /// **'Feedback hilft mir, die App zu verbessern. Vielen Dank!'**
String get rating_message; String get pre_rating_message;
/// No description provided for @yes. /// No description provided for @yes.
/// ///

View File

@@ -72,10 +72,10 @@ class AppLocalizationsDe extends AppLocalizations {
} }
@override @override
String get rating_title => 'Gefällt dir die App?'; String get pre_rating_title => 'Gefällt dir die App?';
@override @override
String get rating_message => String get pre_rating_message =>
'Feedback hilft mir, die App zu verbessern. Vielen Dank!'; 'Feedback hilft mir, die App zu verbessern. Vielen Dank!';
@override @override

View File

@@ -72,10 +72,10 @@ class AppLocalizationsEn extends AppLocalizations {
} }
@override @override
String get rating_title => 'Do you like the app?'; String get pre_rating_title => 'Do you like the app?';
@override @override
String get rating_message => String get pre_rating_message =>
'Feedback helps me to continuously improve the app. Thank you!'; 'Feedback helps me to continuously improve the app. Thank you!';
@override @override

View File

@@ -260,8 +260,8 @@ class _MainMenuViewState extends State<MainMenuView> {
context: context, context: context,
builder: (BuildContext context) { builder: (BuildContext context) {
return CupertinoAlertDialog( return CupertinoAlertDialog(
title: Text(AppLocalizations.of(context).rating_title), title: Text(AppLocalizations.of(context).pre_rating_title),
content: Text(AppLocalizations.of(context).rating_message), content: Text(AppLocalizations.of(context).pre_rating_message),
actions: <CupertinoDialogAction>[ actions: <CupertinoDialogAction>[
CupertinoDialogAction( CupertinoDialogAction(
child: Text(AppLocalizations.of(context).yes), child: Text(AppLocalizations.of(context).yes),

View File

@@ -2,7 +2,7 @@ name: cabo_counter
description: "Mobile app for the card game Cabo" description: "Mobile app for the card game Cabo"
publish_to: 'none' publish_to: 'none'
version: 0.4.0+451 version: 0.4.0+452
environment: environment:
sdk: ^3.5.4 sdk: ^3.5.4