Add missing gateway types

This commit is contained in:
Hillel Coren 2024-01-22 11:45:04 +02:00
parent 8e87dbf770
commit e4bbb482fe
2 changed files with 12 additions and 0 deletions

View File

@ -410,6 +410,10 @@ const String kGatewayTypeInstantBankPay = '21';
const String kGatewayTypeFPX = '22'; const String kGatewayTypeFPX = '22';
const String kGatewayTypeKlarna = '23'; const String kGatewayTypeKlarna = '23';
const String kGatewayTypeBacs = '24'; const String kGatewayTypeBacs = '24';
const String kGatewayTypeVenmo = '25';
const String kGatewayTypeMercadoPago = '26';
const String kGatewayTypeMyBank = '27';
const String kGatewayTypePayLater = '28';
const kGatewayTypes = { const kGatewayTypes = {
kGatewayTypeCreditCard: 'credit_card', kGatewayTypeCreditCard: 'credit_card',
@ -436,6 +440,10 @@ const kGatewayTypes = {
kGatewayTypeFPX: 'fpx', kGatewayTypeFPX: 'fpx',
kGatewayTypeKlarna: 'klarna', kGatewayTypeKlarna: 'klarna',
kGatewayTypeBacs: 'bacs', kGatewayTypeBacs: 'bacs',
kGatewayTypeVenmo: 'venmo',
kGatewayTypeMercadoPago: 'mercado_pago',
kGatewayTypeMyBank: 'my_bank',
kGatewayTypePayLater: 'pay_later',
}; };
const String kNotificationChannelEmail = 'email'; const String kNotificationChannelEmail = 'email';

View File

@ -18,6 +18,10 @@ mixin LocalizationsProvider on LocaleCodeAware {
static final Map<String, Map<String, String>> _localizedValues = { static final Map<String, Map<String, String>> _localizedValues = {
'en': { 'en': {
// STARTER: lang key - do not remove comment // STARTER: lang key - do not remove comment
'venmo': 'Venmo',
'mercado_pago': 'Mercado Pago',
'my_bank': 'MyBank',
'pay_later': 'Pay Later',
'email_report': 'Email Report', 'email_report': 'Email Report',
'host': 'Host', 'host': 'Host',
'port': 'Port', 'port': 'Port',