File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -1381,6 +1381,12 @@ abstract class AppLocalizations {
1381
1381
/// In en, this message translates to:
1382
1382
/// **'Start following categories to see them here.'**
1383
1383
String get followedCategoriesEmptySubheadline;
1384
+
1385
+ /// Message shown in demo mode to provide the verification code
1386
+ ///
1387
+ /// In en, this message translates to:
1388
+ /// **'Demo Mode: Use code {code}'**
1389
+ String demoVerificationCodeMessage (String code);
1384
1390
}
1385
1391
1386
1392
class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -705,4 +705,9 @@ class AppLocalizationsAr extends AppLocalizations {
705
705
@override
706
706
String get followedCategoriesEmptySubheadline =>
707
707
'Start following categories to see them here.' ;
708
+
709
+ @override
710
+ String demoVerificationCodeMessage (String code) {
711
+ return 'وضع العرض التوضيحي: استخدم الرمز $code ' ;
712
+ }
708
713
}
Original file line number Diff line number Diff line change @@ -707,4 +707,9 @@ class AppLocalizationsEn extends AppLocalizations {
707
707
@override
708
708
String get followedCategoriesEmptySubheadline =>
709
709
'Start following categories to see them here.' ;
710
+
711
+ @override
712
+ String demoVerificationCodeMessage (String code) {
713
+ return 'Demo Mode: Use code $code ' ;
714
+ }
710
715
}
You can’t perform that action at this time.
0 commit comments