rework ui
This commit is contained in:
@@ -124,5 +124,25 @@
|
||||
"backButtonLabel": "zurück",
|
||||
"@backButtonLabel": {
|
||||
"description": "Back button label"
|
||||
},
|
||||
"pictureWidgetLabelCustomerNumber": "KUNDENNUMMER",
|
||||
"@pictureWidgetLabelCustomerNumber": {
|
||||
"description": "Picture widget label for customer number"
|
||||
},
|
||||
"pictureWidgetLabelZip": "PLZ",
|
||||
"@pictureWidgetLabelZip": {
|
||||
"description": "Picture widget label for zip code"
|
||||
},
|
||||
"pictureWidgetLabelCity": "ORT",
|
||||
"@pictureWidgetLabelCity": {
|
||||
"description": "Picture widget label for city"
|
||||
},
|
||||
"pictureWidgetLabelComment": "KOMMENTAR",
|
||||
"@pictureWidgetLabelComment": {
|
||||
"description": "Picture widget label for comment"
|
||||
},
|
||||
"pictureWidgetLabelEvaluation": "BEWERTUNG",
|
||||
"@pictureWidgetLabelEvaluation": {
|
||||
"description": "Picture widget label for evaluation"
|
||||
}
|
||||
}
|
||||
@@ -255,6 +255,36 @@ abstract class AppLocalizations {
|
||||
/// In de, this message translates to:
|
||||
/// **'zurück'**
|
||||
String get backButtonLabel;
|
||||
|
||||
/// Picture widget label for customer number
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'KUNDENNUMMER'**
|
||||
String get pictureWidgetLabelCustomerNumber;
|
||||
|
||||
/// Picture widget label for zip code
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'PLZ'**
|
||||
String get pictureWidgetLabelZip;
|
||||
|
||||
/// Picture widget label for city
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'ORT'**
|
||||
String get pictureWidgetLabelCity;
|
||||
|
||||
/// Picture widget label for comment
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'KOMMENTAR'**
|
||||
String get pictureWidgetLabelComment;
|
||||
|
||||
/// Picture widget label for evaluation
|
||||
///
|
||||
/// In de, this message translates to:
|
||||
/// **'BEWERTUNG'**
|
||||
String get pictureWidgetLabelEvaluation;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate
|
||||
|
||||
@@ -96,4 +96,19 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get backButtonLabel => 'zurück';
|
||||
|
||||
@override
|
||||
String get pictureWidgetLabelCustomerNumber => 'KUNDENNUMMER';
|
||||
|
||||
@override
|
||||
String get pictureWidgetLabelZip => 'PLZ';
|
||||
|
||||
@override
|
||||
String get pictureWidgetLabelCity => 'ORT';
|
||||
|
||||
@override
|
||||
String get pictureWidgetLabelComment => 'KOMMENTAR';
|
||||
|
||||
@override
|
||||
String get pictureWidgetLabelEvaluation => 'BEWERTUNG';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user