File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -1999,6 +1999,24 @@ abstract class AppLocalizations {
19991999 /// In en, this message translates to:
20002000 /// **'We couldn\'t find any headlines matching your search. Please try different keywords.'**
20012001 String get headlineSearchNoResultsSubheadline;
2002+
2003+ /// Label indicating the user is a guest.
2004+ ///
2005+ /// In en, this message translates to:
2006+ /// **'Guest Account'**
2007+ String get accountGuestAccount;
2008+
2009+ /// Label for a standard user role.
2010+ ///
2011+ /// In en, this message translates to:
2012+ /// **'Standard User'**
2013+ String get accountRoleStandard;
2014+
2015+ /// Label for a premium user role.
2016+ ///
2017+ /// In en, this message translates to:
2018+ /// **'Premium User'**
2019+ String get accountRolePremium;
20022020}
20032021
20042022class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -1050,4 +1050,13 @@ class AppLocalizationsAr extends AppLocalizations {
10501050 @override
10511051 String get headlineSearchNoResultsSubheadline =>
10521052 'لم نتمكن من العثور على أي عناوين تطابق بحثك. يرجى تجربة كلمات مفتاحية مختلفة.' ;
1053+
1054+ @override
1055+ String get accountGuestAccount => 'حساب زائر' ;
1056+
1057+ @override
1058+ String get accountRoleStandard => 'مستخدم عادي' ;
1059+
1060+ @override
1061+ String get accountRolePremium => 'مستخدم مميز' ;
10531062}
Original file line number Diff line number Diff line change @@ -1052,4 +1052,13 @@ class AppLocalizationsEn extends AppLocalizations {
10521052 @override
10531053 String get headlineSearchNoResultsSubheadline =>
10541054 'We couldn\' t find any headlines matching your search. Please try different keywords.' ;
1055+
1056+ @override
1057+ String get accountGuestAccount => 'Guest Account' ;
1058+
1059+ @override
1060+ String get accountRoleStandard => 'Standard User' ;
1061+
1062+ @override
1063+ String get accountRolePremium => 'Premium User' ;
10551064}
You can’t perform that action at this time.
0 commit comments