Add missing localization string

This commit is contained in:
Hillel Coren 2022-10-30 10:23:05 +02:00
parent eb5307129b
commit bbea8099a8
1 changed files with 5 additions and 0 deletions

View File

@ -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) {