integration of przelewy24 and giropay
This commit is contained in:
parent
dd67b53e5d
commit
1faa5ff03c
|
|
@ -263,6 +263,7 @@ const kGatewayTypes = {
|
||||||
kGatewayTypeBancontact: 'bancontact',
|
kGatewayTypeBancontact: 'bancontact',
|
||||||
kGatewayTypeIDeal: 'ideal',
|
kGatewayTypeIDeal: 'ideal',
|
||||||
kGatewayTypeGiropay: 'giropay',
|
kGatewayTypeGiropay: 'giropay',
|
||||||
|
kGatewayTypePrzelewy24: 'przelewy24',
|
||||||
};
|
};
|
||||||
|
|
||||||
const String kNotificationChannelEmail = 'email';
|
const String kNotificationChannelEmail = 'email';
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
||||||
'view_statement': 'View Statement',
|
'view_statement': 'View Statement',
|
||||||
'sepa': 'SEPA',
|
'sepa': 'SEPA',
|
||||||
'ideal': 'iDEAL',
|
'ideal': 'iDEAL',
|
||||||
|
'przelewy24': 'Przelewy24',
|
||||||
'update_all_records': 'Update all records',
|
'update_all_records': 'Update all records',
|
||||||
'system': 'System',
|
'system': 'System',
|
||||||
'set_default_company': 'Set Default Company',
|
'set_default_company': 'Set Default Company',
|
||||||
|
|
@ -62678,6 +62679,12 @@ mixin LocalizationsProvider on LocaleCodeAware {
|
||||||
|
|
||||||
String get sepa =>
|
String get sepa =>
|
||||||
_localizedValues[localeCode]['sepa'] ?? _localizedValues['en']['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 =>
|
String get viewStatement =>
|
||||||
_localizedValues[localeCode]['view_statement'] ??
|
_localizedValues[localeCode]['view_statement'] ??
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue