added localization for excursion steps
This commit is contained in:
@@ -106,6 +106,7 @@
|
||||
"test": "Test",
|
||||
"notest": "Kein Test",
|
||||
"dateandtime": "Datum und Zeit",
|
||||
"umstaendeUndAktionen": "Umstände und Aktionen",
|
||||
"teilnehmer": "Teilnehmer",
|
||||
"dauer": "Dauer hh:mm",
|
||||
"bimaNr": "BIMA Nummer",
|
||||
|
||||
@@ -519,6 +519,8 @@
|
||||
"description": "date and time step header"
|
||||
},
|
||||
|
||||
"umstaendeUndAktionen": "circumstances and actions",
|
||||
|
||||
"teilnehmer": "Participants",
|
||||
"@teilnehmer": {
|
||||
"description": "teilnehmer text field"
|
||||
|
||||
@@ -743,6 +743,12 @@ abstract class AppLocalizations {
|
||||
/// **'Date and Time'**
|
||||
String get dateandtime;
|
||||
|
||||
/// No description provided for @umstaendeUndAktionen.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'circumstances and actions'**
|
||||
String get umstaendeUndAktionen;
|
||||
|
||||
/// teilnehmer text field
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
|
||||
@@ -332,6 +332,9 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
@override
|
||||
String get dateandtime => 'Datum und Zeit';
|
||||
|
||||
@override
|
||||
String get umstaendeUndAktionen => 'Umstände und Aktionen';
|
||||
|
||||
@override
|
||||
String get teilnehmer => 'Teilnehmer';
|
||||
|
||||
|
||||
@@ -332,6 +332,9 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get dateandtime => 'Date and Time';
|
||||
|
||||
@override
|
||||
String get umstaendeUndAktionen => 'circumstances and actions';
|
||||
|
||||
@override
|
||||
String get teilnehmer => 'Participants';
|
||||
|
||||
|
||||
@@ -250,7 +250,7 @@ class _ExcursionMainState extends State<ExcursionMain> {
|
||||
),
|
||||
),
|
||||
Step(
|
||||
title: const Text("step2"),
|
||||
title: Text(AppLocalizations.of(context)!.umstaendeUndAktionen),
|
||||
content: Column(
|
||||
children: [
|
||||
// ---------- Weather
|
||||
@@ -324,7 +324,7 @@ class _ExcursionMainState extends State<ExcursionMain> {
|
||||
),
|
||||
),
|
||||
Step(
|
||||
title: const Text("step3"),
|
||||
title: Text(AppLocalizations.of(context)!.intkomm),
|
||||
content: Column(
|
||||
children: [
|
||||
// ---------- Remarks
|
||||
|
||||
Reference in New Issue
Block a user