diff --git a/lib/constants.dart b/lib/constants.dart index bc0ce7048..cd409cba8 100644 --- a/lib/constants.dart +++ b/lib/constants.dart @@ -410,6 +410,10 @@ const String kGatewayTypeInstantBankPay = '21'; const String kGatewayTypeFPX = '22'; const String kGatewayTypeKlarna = '23'; const String kGatewayTypeBacs = '24'; +const String kGatewayTypeVenmo = '25'; +const String kGatewayTypeMercadoPago = '26'; +const String kGatewayTypeMyBank = '27'; +const String kGatewayTypePayLater = '28'; const kGatewayTypes = { kGatewayTypeCreditCard: 'credit_card', @@ -436,6 +440,10 @@ const kGatewayTypes = { kGatewayTypeFPX: 'fpx', kGatewayTypeKlarna: 'klarna', kGatewayTypeBacs: 'bacs', + kGatewayTypeVenmo: 'venmo', + kGatewayTypeMercadoPago: 'mercado_pago', + kGatewayTypeMyBank: 'my_bank', + kGatewayTypePayLater: 'pay_later', }; const String kNotificationChannelEmail = 'email'; diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index f1c6f662b..809f925e7 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -18,6 +18,10 @@ mixin LocalizationsProvider on LocaleCodeAware { static final Map> _localizedValues = { 'en': { // STARTER: lang key - do not remove comment + 'venmo': 'Venmo', + 'mercado_pago': 'Mercado Pago', + 'my_bank': 'MyBank', + 'pay_later': 'Pay Later', 'email_report': 'Email Report', 'host': 'Host', 'port': 'Port',