Transaction Details localized to Hindi

This commit is contained in:
2025-08-13 11:42:11 +05:30
parent 913e31a6ab
commit 76d5874e19
6 changed files with 80 additions and 8 deletions

View File

@@ -231,6 +231,11 @@
"noBeneficiaryFound": "No beneficiaries found",
"beneficiaryName": "Beneficiary Name",
"validateBeneficiary": "Validate Beneficiary",
"themeMode": "Theme Mode"
"themeMode": "Theme Mode",
"transactionDetails": "Transaction Details",
"transactionType": "Transaction Type",
"transferType": "Transfer Type",
"utrNo": "UTR No.",
"beneficiaryAccountNo": "Beneficiary Account No."
}

View File

@@ -231,5 +231,10 @@
"noBeneficiaryFound": "कोई लाभार्थी नहीं मिला",
"beneficiaryName": "लाभार्थी नाम",
"validateBeneficiary": "लाभार्थी को सत्यापित करें",
"themeMode": "थीम मोड"
"themeMode": "थीम मोड",
"transactionDetails": "लेन-देन विवरण",
"transactionType": "लेनदेन प्रकार",
"transferType": "स्थानांतरण प्रकार",
"utrNo": "यूटीआर नंबर",
"beneficiaryAccountNo": "लाभार्थी खाता संख्या"
}

View File

@@ -1414,6 +1414,36 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Theme Mode'**
String get themeMode;
/// No description provided for @transactionDetails.
///
/// In en, this message translates to:
/// **'Transaction Details'**
String get transactionDetails;
/// No description provided for @transactionType.
///
/// In en, this message translates to:
/// **'Transaction Type'**
String get transactionType;
/// No description provided for @transferType.
///
/// In en, this message translates to:
/// **'Transfer Type'**
String get transferType;
/// No description provided for @utrNo.
///
/// In en, this message translates to:
/// **'UTR No.'**
String get utrNo;
/// No description provided for @beneficiaryAccountNo.
///
/// In en, this message translates to:
/// **'Beneficiary Account No.'**
String get beneficiaryAccountNo;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {

View File

@@ -667,4 +667,19 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get themeMode => 'Theme Mode';
@override
String get transactionDetails => 'Transaction Details';
@override
String get transactionType => 'Transaction Type';
@override
String get transferType => 'Transfer Type';
@override
String get utrNo => 'UTR No.';
@override
String get beneficiaryAccountNo => 'Beneficiary Account No.';
}

View File

@@ -667,4 +667,19 @@ class AppLocalizationsHi extends AppLocalizations {
@override
String get themeMode => 'थीम मोड';
@override
String get transactionDetails => 'लेन-देन विवरण';
@override
String get transactionType => 'लेनदेन प्रकार';
@override
String get transferType => 'स्थानांतरण प्रकार';
@override
String get utrNo => 'यूटीआर नंबर';
@override
String get beneficiaryAccountNo => 'लाभार्थी खाता संख्या';
}