added localization for excursion steps

This commit is contained in:
Nico
2025-05-15 19:42:33 +02:00
parent 167eea363f
commit 0e621ba1ef
6 changed files with 17 additions and 2 deletions

View File

@@ -106,6 +106,7 @@
"test": "Test", "test": "Test",
"notest": "Kein Test", "notest": "Kein Test",
"dateandtime": "Datum und Zeit", "dateandtime": "Datum und Zeit",
"umstaendeUndAktionen": "Umstände und Aktionen",
"teilnehmer": "Teilnehmer", "teilnehmer": "Teilnehmer",
"dauer": "Dauer hh:mm", "dauer": "Dauer hh:mm",
"bimaNr": "BIMA Nummer", "bimaNr": "BIMA Nummer",

View File

@@ -519,6 +519,8 @@
"description": "date and time step header" "description": "date and time step header"
}, },
"umstaendeUndAktionen": "circumstances and actions",
"teilnehmer": "Participants", "teilnehmer": "Participants",
"@teilnehmer": { "@teilnehmer": {
"description": "teilnehmer text field" "description": "teilnehmer text field"

View File

@@ -743,6 +743,12 @@ abstract class AppLocalizations {
/// **'Date and Time'** /// **'Date and Time'**
String get dateandtime; String get dateandtime;
/// No description provided for @umstaendeUndAktionen.
///
/// In en, this message translates to:
/// **'circumstances and actions'**
String get umstaendeUndAktionen;
/// teilnehmer text field /// teilnehmer text field
/// ///
/// In en, this message translates to: /// In en, this message translates to:

View File

@@ -332,6 +332,9 @@ class AppLocalizationsDe extends AppLocalizations {
@override @override
String get dateandtime => 'Datum und Zeit'; String get dateandtime => 'Datum und Zeit';
@override
String get umstaendeUndAktionen => 'Umstände und Aktionen';
@override @override
String get teilnehmer => 'Teilnehmer'; String get teilnehmer => 'Teilnehmer';

View File

@@ -332,6 +332,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override @override
String get dateandtime => 'Date and Time'; String get dateandtime => 'Date and Time';
@override
String get umstaendeUndAktionen => 'circumstances and actions';
@override @override
String get teilnehmer => 'Participants'; String get teilnehmer => 'Participants';

View File

@@ -250,7 +250,7 @@ class _ExcursionMainState extends State<ExcursionMain> {
), ),
), ),
Step( Step(
title: const Text("step2"), title: Text(AppLocalizations.of(context)!.umstaendeUndAktionen),
content: Column( content: Column(
children: [ children: [
// ---------- Weather // ---------- Weather
@@ -324,7 +324,7 @@ class _ExcursionMainState extends State<ExcursionMain> {
), ),
), ),
Step( Step(
title: const Text("step3"), title: Text(AppLocalizations.of(context)!.intkomm),
content: Column( content: Column(
children: [ children: [
// ---------- Remarks // ---------- Remarks