File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed
Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -4021,6 +4021,18 @@ abstract class AppLocalizations {
40214021 /// In en, this message translates to:
40224022 /// **'Are you sure you want to demote {email} to a standard user?'**
40234023 String confirmDemotionMessage (String email);
4024+
4025+ /// Tooltip for the icon indicating a premium user.
4026+ ///
4027+ /// In en, this message translates to:
4028+ /// **'Premium User'**
4029+ String get premiumUserTooltip;
4030+
4031+ /// Tooltip for the icon indicating a user with privileged dashboard access.
4032+ ///
4033+ /// In en, this message translates to:
4034+ /// **'Dashboard Publisher or Admin'**
4035+ String get privilegedUserTooltip;
40244036}
40254037
40264038class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -2158,4 +2158,10 @@ class AppLocalizationsAr extends AppLocalizations {
21582158 String confirmDemotionMessage (String email) {
21592159 return 'هل أنت متأكد أنك تريد تخفيض رتبة $email إلى مستخدم عادي؟' ;
21602160 }
2161+
2162+ @override
2163+ String get premiumUserTooltip => 'مستخدم مميز' ;
2164+
2165+ @override
2166+ String get privilegedUserTooltip => 'ناشر أو مسؤول في لوحة التحكم' ;
21612167}
Original file line number Diff line number Diff line change @@ -2164,4 +2164,10 @@ class AppLocalizationsEn extends AppLocalizations {
21642164 String confirmDemotionMessage (String email) {
21652165 return 'Are you sure you want to demote $email to a standard user?' ;
21662166 }
2167+
2168+ @override
2169+ String get premiumUserTooltip => 'Premium User' ;
2170+
2171+ @override
2172+ String get privilegedUserTooltip => 'Dashboard Publisher or Admin' ;
21672173}
You can’t perform that action at this time.
0 commit comments