File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -2977,6 +2977,12 @@ abstract class AppLocalizations {
29772977 /// In en, this message translates to:
29782978 /// **'Premium'**
29792979 String get subscriptionPremium;
2980+
2981+ /// Snackbar message shown when a user is redirected due to lack of permissions.
2982+ ///
2983+ /// In en, this message translates to:
2984+ /// **'Redirecting: You do not have permission to access this page.'**
2985+ String get unauthorizedAccessRedirect;
29802986}
29812987
29822988class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -1582,4 +1582,8 @@ class AppLocalizationsAr extends AppLocalizations {
15821582
15831583 @override
15841584 String get subscriptionPremium => 'مميز' ;
1585+
1586+ @override
1587+ String get unauthorizedAccessRedirect =>
1588+ 'إعادة التوجيه: ليس لديك إذن للوصول إلى هذه الصفحة.' ;
15851589}
Original file line number Diff line number Diff line change @@ -1588,4 +1588,8 @@ class AppLocalizationsEn extends AppLocalizations {
15881588
15891589 @override
15901590 String get subscriptionPremium => 'Premium' ;
1591+
1592+ @override
1593+ String get unauthorizedAccessRedirect =>
1594+ 'Redirecting: You do not have permission to access this page.' ;
15911595}
You can’t perform that action at this time.
0 commit comments