Add missing localization string
This commit is contained in:
parent
eb5307129b
commit
bbea8099a8
|
|
@ -16,6 +16,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
|||
static final Map<String, Map<String, String>> _localizedValues = {
|
||||
'en': {
|
||||
// STARTER: lang key - do not remove comment
|
||||
'vendor_postal_code': 'Vendor Postal Code',
|
||||
'preview_location': 'Preview Location',
|
||||
'bottom': 'Bottom',
|
||||
'side': 'Side',
|
||||
|
|
@ -87477,6 +87478,10 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
|||
String get side =>
|
||||
_localizedValues[localeCode]['side'] ?? _localizedValues['en']['side'];
|
||||
|
||||
String get vendorPostalCode =>
|
||||
_localizedValues[localeCode]['vendor_postal_code'] ??
|
||||
_localizedValues['en']['vendor_postal_code'];
|
||||
|
||||
// STARTER: lang field - do not remove comment
|
||||
|
||||
String lookup(String key) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue