Add Beneficiary Animations and Localizations

This commit is contained in:
2025-08-07 23:36:28 +05:30
parent a1365b19d5
commit ae40f61c01
19 changed files with 139 additions and 275 deletions

View File

@@ -219,6 +219,14 @@
"setMPIN": "Set your mPIN",
"confirmMPIN": "Confirm your mPIN",
"kconnect": "Kconnect",
"kccBankFull": "Kangra Central Co-operative Bank"
"kccBankFull": "Kangra Central Co-operative Bank",
"themeColor": "Theme Color",
"selectThemeColor": "Select Theme Color",
"violet": "Violet",
"blue": "Blue",
"invalidIfsc": "Invalid IFSC code",
"validIfsc": "Valid IFSC",
"beneficiaryAddedSuccess": "Beneficiary Added Successfully",
"beneficiaryAdditionFailed": "Beneficiary Addition Failed"
}

View File

@@ -219,5 +219,13 @@
"setMPIN": "अपना mPIN सेट करें",
"confirmMPIN": "अपना mPIN की पुष्टि करें",
"kconnect": "के-कनेक्ट",
"kccBankFull": "कांगड़ा सेंट्रल को-ऑपरेटिव बैंक"
"kccBankFull": "कांगड़ा सेंट्रल को-ऑपरेटिव बैंक",
"themeColor": "थीम रंग",
"selectThemeColor": "थीम रंग चुनें",
"violet": "बैंगनी",
"blue": "नीला",
"invalidIfsc": "अमान्य IFSC कोड",
"validIfsc": "मान्य IFSC",
"beneficiaryAddedSuccess": "लाभार्थी सफलतापूर्वक जोड़ा गया",
"beneficiaryAdditionFailed": "लाभार्थी जोड़ने में विफल"
}

View File

@@ -1342,6 +1342,54 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Kangra Central Co-operative Bank'**
String get kccBankFull;
/// No description provided for @themeColor.
///
/// In en, this message translates to:
/// **'Theme Color'**
String get themeColor;
/// No description provided for @selectThemeColor.
///
/// In en, this message translates to:
/// **'Select Theme Color'**
String get selectThemeColor;
/// No description provided for @violet.
///
/// In en, this message translates to:
/// **'Violet'**
String get violet;
/// No description provided for @blue.
///
/// In en, this message translates to:
/// **'Blue'**
String get blue;
/// No description provided for @invalidIfsc.
///
/// In en, this message translates to:
/// **'Invalid IFSC code'**
String get invalidIfsc;
/// No description provided for @validIfsc.
///
/// In en, this message translates to:
/// **'Valid IFSC'**
String get validIfsc;
/// No description provided for @beneficiaryAddedSuccess.
///
/// In en, this message translates to:
/// **'Beneficiary Added Successfully'**
String get beneficiaryAddedSuccess;
/// No description provided for @beneficiaryAdditionFailed.
///
/// In en, this message translates to:
/// **'Beneficiary Addition Failed'**
String get beneficiaryAdditionFailed;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {

View File

@@ -631,4 +631,28 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get kccBankFull => 'Kangra Central Co-operative Bank';
@override
String get themeColor => 'Theme Color';
@override
String get selectThemeColor => 'Select Theme Color';
@override
String get violet => 'Violet';
@override
String get blue => 'Blue';
@override
String get invalidIfsc => 'Invalid IFSC code';
@override
String get validIfsc => 'Valid IFSC';
@override
String get beneficiaryAddedSuccess => 'Beneficiary Added Successfully';
@override
String get beneficiaryAdditionFailed => 'Beneficiary Addition Failed';
}

View File

@@ -631,4 +631,28 @@ class AppLocalizationsHi extends AppLocalizations {
@override
String get kccBankFull => 'कांगड़ा सेंट्रल को-ऑपरेटिव बैंक';
@override
String get themeColor => 'थीम रंग';
@override
String get selectThemeColor => 'थीम रंग चुनें';
@override
String get violet => 'बैंगनी';
@override
String get blue => 'नीला';
@override
String get invalidIfsc => 'अमान्य IFSC कोड';
@override
String get validIfsc => 'मान्य IFSC';
@override
String get beneficiaryAddedSuccess => 'लाभार्थी सफलतापूर्वक जोड़ा गया';
@override
String get beneficiaryAdditionFailed => 'लाभार्थी जोड़ने में विफल';
}