From ec2e181bb498dc8e1dafe7df12e667e97bbca847 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 18 Nov 2021 12:10:04 +0200 Subject: [PATCH] Update Flutter --- lib/constants.dart | 4 ++-- lib/utils/i18n.dart | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/constants.dart b/lib/constants.dart index 882221679..339a51991 100644 --- a/lib/constants.dart +++ b/lib/constants.dart @@ -265,7 +265,7 @@ const String kGatewayTypeEPS = '17'; const String kGatewayTypeDirectDebit = '18'; const String kGatewayTypeACSS = '19'; const String kGatewayTypeBECS = '20'; -const String kGatewayTypeBankPay = '21'; +const String kGatewayTypeInstantBankPay = '21'; const kGatewayTypes = { kGatewayTypeCreditCard: 'credit_card', @@ -288,7 +288,7 @@ const kGatewayTypes = { kGatewayTypeEPS: 'eps', kGatewayTypeACSS: 'acss', kGatewayTypeBECS: 'becs', - kGatewayTypeBankPay: 'bank_pay', + kGatewayTypeInstantBankPay: 'instant_bank_pay', }; const String kNotificationChannelEmail = 'email'; diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index 8e8a5aebe..65ebd7b9c 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -16,7 +16,7 @@ mixin LocalizationsProvider on LocaleCodeAware { static final Map> _localizedValues = { 'en': { // STARTER: lang key - do not remove comment - 'bank_pay': 'Bank Pay', + 'instant_bank_pay': 'Instant Bank Pay', 'click_selected': 'Click Selected', 'hide_preview': 'Hide Preview', 'edit_record': 'Edit Record', @@ -62830,9 +62830,9 @@ mixin LocalizationsProvider on LocaleCodeAware { _localizedValues[localeCode]['hide_preview'] ?? _localizedValues['en']['hide_preview']; - String get bankPay => - _localizedValues[localeCode]['bank_pay'] ?? - _localizedValues['en']['bank_pay']; + String get instantBankPay => + _localizedValues[localeCode]['instant_bank_pay'] ?? + _localizedValues['en']['instant_bank_pay']; // STARTER: lang field - do not remove comment