File tree Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Expand file tree Collapse file tree 3 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -1417,6 +1417,18 @@ abstract class AppLocalizations {
1417
1417
/// In en, this message translates to:
1418
1418
/// **'Disabled'**
1419
1419
String get appStatusDisabled;
1420
+
1421
+ /// Hint text shown in demo environment for the login email.
1422
+ ///
1423
+ /// In en, this message translates to:
1424
+ /// **'For demo, use email: {email}'**
1425
+ String demoEmailHint (String email);
1426
+
1427
+ /// Hint text shown in demo environment for the verification code.
1428
+ ///
1429
+ /// In en, this message translates to:
1430
+ /// **'For demo, use code: {code}'**
1431
+ String demoCodeHint (String code);
1420
1432
}
1421
1433
1422
1434
class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -737,4 +737,14 @@ class AppLocalizationsAr extends AppLocalizations {
737
737
738
738
@override
739
739
String get appStatusDisabled => 'معطل' ;
740
+
741
+ @override
742
+ String demoEmailHint (String email) {
743
+ return 'للعرض التجريبي، استخدم البريد الإلكتروني: $email ' ;
744
+ }
745
+
746
+ @override
747
+ String demoCodeHint (String code) {
748
+ return 'للعرض التجريبي، استخدم الرمز: $code ' ;
749
+ }
740
750
}
Original file line number Diff line number Diff line change @@ -735,4 +735,14 @@ class AppLocalizationsEn extends AppLocalizations {
735
735
736
736
@override
737
737
String get appStatusDisabled => 'Disabled' ;
738
+
739
+ @override
740
+ String demoEmailHint (String email) {
741
+ return 'For demo, use email: $email ' ;
742
+ }
743
+
744
+ @override
745
+ String demoCodeHint (String code) {
746
+ return 'For demo, use code: $code ' ;
747
+ }
738
748
}
You can’t perform that action at this time.
0 commit comments