File tree Expand file tree Collapse file tree 5 files changed +35
-1
lines changed Expand file tree Collapse file tree 5 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,12 @@ abstract class AppLocalizations {
158
158
/// **'Send Code'**
159
159
String get requestCodeSendCodeButton;
160
160
161
+ /// Button label for resending the verification code after a cooldown
162
+ ///
163
+ /// In en, this message translates to:
164
+ /// **'Resend in {seconds}s'**
165
+ String requestCodeResendButtonCooldown (int seconds);
166
+
161
167
/// Title for the email code verification page
162
168
///
163
169
/// In en, this message translates to:
Original file line number Diff line number Diff line change @@ -42,6 +42,11 @@ class AppLocalizationsAr extends AppLocalizations {
42
42
@override
43
43
String get requestCodeSendCodeButton => 'إرسال الرمز' ;
44
44
45
+ @override
46
+ String requestCodeResendButtonCooldown (int seconds) {
47
+ return 'إعادة الإرسال في $seconds ثانية' ;
48
+ }
49
+
45
50
@override
46
51
String get emailCodeSentPageTitle => 'التحقق من الرمز' ;
47
52
Original file line number Diff line number Diff line change @@ -41,6 +41,11 @@ class AppLocalizationsEn extends AppLocalizations {
41
41
@override
42
42
String get requestCodeSendCodeButton => 'Send Code' ;
43
43
44
+ @override
45
+ String requestCodeResendButtonCooldown (int seconds) {
46
+ return 'Resend in ${seconds }s' ;
47
+ }
48
+
44
49
@override
45
50
String get emailCodeSentPageTitle => 'Verify Code' ;
46
51
Original file line number Diff line number Diff line change 39
39
"@requestCodeSendCodeButton": {
40
40
"description": "تسمية زر إرسال رمز التحقق"
41
41
},
42
+ "requestCodeResendButtonCooldown": "إعادة الإرسال في {seconds} ثانية",
43
+ "@requestCodeResendButtonCooldown": {
44
+ "description": "تسمية زر إعادة إرسال رمز التحقق بعد فترة تهدئة",
45
+ "placeholders": {
46
+ "seconds": {
47
+ "type": "int"
48
+ }
49
+ }
50
+ },
42
51
"emailCodeSentPageTitle": "التحقق من الرمز",
43
52
"@emailCodeSentPageTitle": {
44
53
"description": "عنوان صفحة التحقق من رمز البريد الإلكتروني"
1067
1076
"@feedActionTypeEnableNotifications": {
1068
1077
"description": "نوع إجراء الموجز لتفعيل الإشعارات"
1069
1078
}
1070
- }
1079
+ }
Original file line number Diff line number Diff line change 39
39
"@requestCodeSendCodeButton": {
40
40
"description": "Button label for sending the verification code"
41
41
},
42
+ "requestCodeResendButtonCooldown": "Resend in {seconds}s",
43
+ "@requestCodeResendButtonCooldown": {
44
+ "description": "Button label for resending the verification code after a cooldown",
45
+ "placeholders": {
46
+ "seconds": {
47
+ "type": "int"
48
+ }
49
+ }
50
+ },
42
51
"emailCodeSentPageTitle": "Verify Code",
43
52
"@emailCodeSentPageTitle": {
44
53
"description": "Title for the email code verification page"
You can’t perform that action at this time.
0 commit comments