integration of przelewy24 and giropay
This commit is contained in:
parent
dd67b53e5d
commit
1faa5ff03c
|
|
@ -263,6 +263,7 @@ const kGatewayTypes = {
|
|||
kGatewayTypeBancontact: 'bancontact',
|
||||
kGatewayTypeIDeal: 'ideal',
|
||||
kGatewayTypeGiropay: 'giropay',
|
||||
kGatewayTypePrzelewy24: 'przelewy24',
|
||||
};
|
||||
|
||||
const String kNotificationChannelEmail = 'email';
|
||||
|
|
|
|||
|
|
@ -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'] ??
|
||||
|
|
|
|||
Loading…
Reference in New Issue