Manage Beneficiary UI

This commit is contained in:
2025-08-08 23:37:16 +05:30
parent 763c101f58
commit dbc61abf00
11 changed files with 249 additions and 145 deletions

View File

@@ -228,6 +228,7 @@
"validIfsc": "Valid IFSC",
"beneficiaryAddedSuccess": "Beneficiary Added Successfully",
"beneficiaryAdditionFailed": "Beneficiary Addition Failed",
"noBeneficiaryFound": "No beneficiaries found"
"noBeneficiaryFound": "No beneficiaries found",
"beneficiaryName": "Beneficiary Name"
}

View File

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

View File

@@ -1396,6 +1396,12 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'No beneficiaries found'**
String get noBeneficiaryFound;
/// No description provided for @beneficiaryName.
///
/// In en, this message translates to:
/// **'Beneficiary Name'**
String get beneficiaryName;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {

View File

@@ -658,4 +658,7 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get noBeneficiaryFound => 'No beneficiaries found';
@override
String get beneficiaryName => 'Beneficiary Name';
}

View File

@@ -658,4 +658,7 @@ class AppLocalizationsHi extends AppLocalizations {
@override
String get noBeneficiaryFound => 'कोई लाभार्थी नहीं मिला';
@override
String get beneficiaryName => 'लाभार्थी नाम';
}