Payment Error Message and Beneficiary Page

This commit is contained in:
2025-08-11 17:03:02 +05:30
parent e7bbab13ba
commit 8ae26e2f18
16 changed files with 111 additions and 47 deletions

View File

@@ -230,6 +230,7 @@
"beneficiaryAdditionFailed": "Beneficiary Addition Failed",
"noBeneficiaryFound": "No beneficiaries found",
"beneficiaryName": "Beneficiary Name",
"validateBeneficiary": "Validate Beneficiary"
"validateBeneficiary": "Validate Beneficiary",
"themeMode": "Theme Mode"
}

View File

@@ -230,5 +230,6 @@
"beneficiaryAdditionFailed": "लाभार्थी जोड़ने में विफल",
"noBeneficiaryFound": "कोई लाभार्थी नहीं मिला",
"beneficiaryName": "लाभार्थी नाम",
"validateBeneficiary": "लाभार्थी को सत्यापित करें"
"validateBeneficiary": "लाभार्थी को सत्यापित करें",
"themeMode": "थीम मोड"
}

View File

@@ -1408,6 +1408,12 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Validate Beneficiary'**
String get validateBeneficiary;
/// No description provided for @themeMode.
///
/// In en, this message translates to:
/// **'Theme Mode'**
String get themeMode;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {

View File

@@ -664,4 +664,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get validateBeneficiary => 'Validate Beneficiary';
@override
String get themeMode => 'Theme Mode';
}

View File

@@ -664,4 +664,7 @@ class AppLocalizationsHi extends AppLocalizations {
@override
String get validateBeneficiary => 'लाभार्थी को सत्यापित करें';
@override
String get themeMode => 'थीम मोड';
}