diff --git a/lib/constants.dart b/lib/constants.dart index 0b37b82a0..1fa6f160d 100644 --- a/lib/constants.dart +++ b/lib/constants.dart @@ -263,6 +263,7 @@ const kGatewayTypes = { kGatewayTypeBancontact: 'bancontact', kGatewayTypeIDeal: 'ideal', kGatewayTypeGiropay: 'giropay', + kGatewayTypePrzelewy24: 'przelewy24', }; const String kNotificationChannelEmail = 'email'; diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index da43d4d7d..e9357836c 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -18,6 +18,7 @@ mixin LocalizationsProvider on LocaleCodeAware { 'view_statement': 'View Statement', 'sepa': 'SEPA', 'ideal': 'iDEAL', + 'przelewy24': 'Przelewy24', 'update_all_records': 'Update all records', 'system': 'System', 'set_default_company': 'Set Default Company', @@ -62678,6 +62679,12 @@ mixin LocalizationsProvider on LocaleCodeAware { String get sepa => _localizedValues[localeCode]['sepa'] ?? _localizedValues['en']['sepa']; + + String get giropay => + _localizedValues[localeCode]['giropay'] ?? _localizedValues['en']['giropay']; + + String get przelewy24 => + _localizedValues[localeCode]['przelewy24'] ?? _localizedValues['en']['przelewy24']; String get viewStatement => _localizedValues[localeCode]['view_statement'] ??