File tree Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Expand file tree Collapse file tree 5 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -1412,6 +1412,12 @@ abstract class AppLocalizations {
1412
1412
/// **'Send Code'**
1413
1413
String get requestCodeSendCodeButton;
1414
1414
1415
+ /// Button text shown during the cooldown period for resending a code
1416
+ ///
1417
+ /// In en, this message translates to:
1418
+ /// **'Resend in {seconds}s'**
1419
+ String requestCodeResendButtonCooldown (int seconds);
1420
+
1415
1421
/// Title for category entity type
1416
1422
///
1417
1423
/// In en, this message translates to:
Original file line number Diff line number Diff line change @@ -725,6 +725,11 @@ class AppLocalizationsAr extends AppLocalizations {
725
725
@override
726
726
String get requestCodeSendCodeButton => 'إرسال الرمز' ;
727
727
728
+ @override
729
+ String requestCodeResendButtonCooldown (int seconds) {
730
+ return 'إعادة الإرسال في $seconds ثانية' ;
731
+ }
732
+
728
733
@override
729
734
String get entityDetailsCategoryTitle => 'الفئة' ;
730
735
Original file line number Diff line number Diff line change @@ -725,6 +725,11 @@ class AppLocalizationsEn extends AppLocalizations {
725
725
@override
726
726
String get requestCodeSendCodeButton => 'Send Code' ;
727
727
728
+ @override
729
+ String requestCodeResendButtonCooldown (int seconds) {
730
+ return 'Resend in ${seconds }s' ;
731
+ }
732
+
728
733
@override
729
734
String get entityDetailsCategoryTitle => 'Category' ;
730
735
Original file line number Diff line number Diff line change 942
942
"@requestCodeSendCodeButton": {
943
943
"description": "Button text to send the verification code"
944
944
},
945
+ "requestCodeResendButtonCooldown": "إعادة الإرسال في {seconds} ثانية",
946
+ "@requestCodeResendButtonCooldown": {
947
+ "description": "Button text shown during the cooldown period for resending a code",
948
+ "placeholders": {
949
+ "seconds": {
950
+ "type": "int",
951
+ "example": "60"
952
+ }
953
+ }
954
+ },
945
955
"entityDetailsCategoryTitle": "الفئة",
946
956
"@entityDetailsCategoryTitle": {
947
957
"description": "Title for category entity type"
Original file line number Diff line number Diff line change 944
944
"@requestCodeSendCodeButton": {
945
945
"description": "Button text to send the verification code"
946
946
},
947
+ "requestCodeResendButtonCooldown": "Resend in {seconds}s",
948
+ "@requestCodeResendButtonCooldown": {
949
+ "description": "Button text shown during the cooldown period for resending a code",
950
+ "placeholders": {
951
+ "seconds": {
952
+ "type": "int",
953
+ "example": "60"
954
+ }
955
+ }
956
+ },
947
957
"entityDetailsCategoryTitle": "Category",
948
958
"@entityDetailsCategoryTitle": {
949
959
"description": "Title for category entity type"
You can’t perform that action at this time.
0 commit comments