added localization for excursion steps
This commit is contained in:
@@ -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",
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
|
|||||||
@@ -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';
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user