Beneficiary Localization Chamges
This commit is contained in:
@@ -236,6 +236,16 @@
|
||||
"transactionType": "Transaction Type",
|
||||
"transferType": "Transfer Type",
|
||||
"utrNo": "UTR No.",
|
||||
"beneficiaryAccountNo": "Beneficiary Account No."
|
||||
"beneficiaryAccountNo": "Beneficiary Account No.",
|
||||
"invalidRtgs": "Invalid Amount for RTGS",
|
||||
"invalidRtgsPopUp": "RTGS transactions require a minimum amount of 200,000. Please enter a higher amount or select NEFT as the transaction mode.",
|
||||
"correctTpin": "Please Enter the correct TPIN",
|
||||
"insufficientFund": "Your account does not have sufficient balance",
|
||||
"creditedTo": "Credited To",
|
||||
"selectTransactionType": "Select transaction Type",
|
||||
"proceed": "Proceed",
|
||||
"plsValidateBeneficiary": "Please validate beneficiary details first",
|
||||
"accno7to20": "Account number must be between 7 and 20 digits",
|
||||
"validateBeneficiaryproceeding": "Please validate beneficiary before proceeding"
|
||||
}
|
||||
|
||||
|
@@ -236,5 +236,15 @@
|
||||
"transactionType": "लेनदेन प्रकार",
|
||||
"transferType": "स्थानांतरण प्रकार",
|
||||
"utrNo": "यूटीआर नंबर",
|
||||
"beneficiaryAccountNo": "लाभार्थी खाता संख्या"
|
||||
"beneficiaryAccountNo": "लाभार्थी खाता संख्या",
|
||||
"invalidRtgs": "RTGS के लिए अमान्य राशि",
|
||||
"invalidRtgsPopUp": "RTGS लेनदेन के लिए न्यूनतम 2,00,000 रुपये की राशि की आवश्यकता होती है। कृपया अधिक राशि दर्ज करें या लेनदेन मोड के रूप में NEFT चुनें",
|
||||
"correctTpin": "कृपया सही टी-पिन दर्ज करें",
|
||||
"insufficientFund": "आपके खाते में पर्याप्त शेष राशि नहीं है",
|
||||
"creditedTo": "को श्रेय दिया गया",
|
||||
"selectTransactionType": "लेन-देन का प्रकार चुनें",
|
||||
"proceed": "आगे बढ़ना",
|
||||
"plsValidateBeneficiary": "कृपया पहले लाभार्थी विवरण सत्यापित करें",
|
||||
"accno7to20": "खाता संख्या सात से बीस अंकों के बीच होनी चाहिए",
|
||||
"validateBeneficiaryproceeding": "कृपया आगे बढ़ने से पहले लाभार्थी को पट्टे पर मान्य करें"
|
||||
}
|
||||
|
@@ -1444,6 +1444,66 @@ abstract class AppLocalizations {
|
||||
/// In en, this message translates to:
|
||||
/// **'Beneficiary Account No.'**
|
||||
String get beneficiaryAccountNo;
|
||||
|
||||
/// No description provided for @invalidRtgs.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Invalid Amount for RTGS'**
|
||||
String get invalidRtgs;
|
||||
|
||||
/// No description provided for @invalidRtgsPopUp.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'RTGS transactions require a minimum amount of 200,000. Please enter a higher amount or select NEFT as the transaction mode.'**
|
||||
String get invalidRtgsPopUp;
|
||||
|
||||
/// No description provided for @correctTpin.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Please Enter the correct TPIN'**
|
||||
String get correctTpin;
|
||||
|
||||
/// No description provided for @insufficientFund.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Your account does not have sufficient balance'**
|
||||
String get insufficientFund;
|
||||
|
||||
/// No description provided for @creditedTo.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Credited To'**
|
||||
String get creditedTo;
|
||||
|
||||
/// No description provided for @selectTransactionType.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Select transaction Type'**
|
||||
String get selectTransactionType;
|
||||
|
||||
/// No description provided for @proceed.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Proceed'**
|
||||
String get proceed;
|
||||
|
||||
/// No description provided for @plsValidateBeneficiary.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Please validate beneficiary details first'**
|
||||
String get plsValidateBeneficiary;
|
||||
|
||||
/// No description provided for @accno7to20.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Account number must be between 7 and 20 digits'**
|
||||
String get accno7to20;
|
||||
|
||||
/// No description provided for @validateBeneficiaryproceeding.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Please validate beneficiary before proceeding'**
|
||||
String get validateBeneficiaryproceeding;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
|
||||
|
@@ -682,4 +682,34 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get beneficiaryAccountNo => 'Beneficiary Account No.';
|
||||
|
||||
@override
|
||||
String get invalidRtgs => 'Invalid Amount for RTGS';
|
||||
|
||||
@override
|
||||
String get invalidRtgsPopUp => 'RTGS transactions require a minimum amount of 200,000. Please enter a higher amount or select NEFT as the transaction mode.';
|
||||
|
||||
@override
|
||||
String get correctTpin => 'Please Enter the correct TPIN';
|
||||
|
||||
@override
|
||||
String get insufficientFund => 'Your account does not have sufficient balance';
|
||||
|
||||
@override
|
||||
String get creditedTo => 'Credited To';
|
||||
|
||||
@override
|
||||
String get selectTransactionType => 'Select transaction Type';
|
||||
|
||||
@override
|
||||
String get proceed => 'Proceed';
|
||||
|
||||
@override
|
||||
String get plsValidateBeneficiary => 'Please validate beneficiary details first';
|
||||
|
||||
@override
|
||||
String get accno7to20 => 'Account number must be between 7 and 20 digits';
|
||||
|
||||
@override
|
||||
String get validateBeneficiaryproceeding => 'Please validate beneficiary before proceeding';
|
||||
}
|
||||
|
@@ -682,4 +682,34 @@ class AppLocalizationsHi extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get beneficiaryAccountNo => 'लाभार्थी खाता संख्या';
|
||||
|
||||
@override
|
||||
String get invalidRtgs => 'RTGS के लिए अमान्य राशि';
|
||||
|
||||
@override
|
||||
String get invalidRtgsPopUp => 'RTGS लेनदेन के लिए न्यूनतम 2,00,000 रुपये की राशि की आवश्यकता होती है। कृपया अधिक राशि दर्ज करें या लेनदेन मोड के रूप में NEFT चुनें';
|
||||
|
||||
@override
|
||||
String get correctTpin => 'कृपया सही टी-पिन दर्ज करें';
|
||||
|
||||
@override
|
||||
String get insufficientFund => 'आपके खाते में पर्याप्त शेष राशि नहीं है';
|
||||
|
||||
@override
|
||||
String get creditedTo => 'को श्रेय दिया गया';
|
||||
|
||||
@override
|
||||
String get selectTransactionType => 'लेन-देन का प्रकार चुनें';
|
||||
|
||||
@override
|
||||
String get proceed => 'आगे बढ़ना';
|
||||
|
||||
@override
|
||||
String get plsValidateBeneficiary => 'कृपया पहले लाभार्थी विवरण सत्यापित करें';
|
||||
|
||||
@override
|
||||
String get accno7to20 => 'खाता संख्या सात से बीस अंकों के बीच होनी चाहिए';
|
||||
|
||||
@override
|
||||
String get validateBeneficiaryproceeding => 'कृपया आगे बढ़ने से पहले लाभार्थी को पट्टे पर मान्य करें';
|
||||
}
|
||||
|
Reference in New Issue
Block a user