File tree Expand file tree Collapse file tree 3 files changed +19
-7
lines changed
Expand file tree Collapse file tree 3 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -4025,14 +4025,20 @@ abstract class AppLocalizations {
40254025 /// Tooltip for the icon indicating a premium user.
40264026 ///
40274027 /// In en, this message translates to:
4028- /// **'Premium User '**
4028+ /// **'Premium'**
40294029 String get premiumUserTooltip;
40304030
4031- /// Tooltip for the icon indicating a user with privileged dashboard access .
4031+ /// Tooltip for the icon indicating an admin user .
40324032 ///
40334033 /// In en, this message translates to:
4034- /// **'Dashboard Publisher or Admin'**
4035- String get privilegedUserTooltip;
4034+ /// **'Admin'**
4035+ String get adminUserTooltip;
4036+
4037+ /// Tooltip for the icon indicating a publisher user.
4038+ ///
4039+ /// In en, this message translates to:
4040+ /// **'Publisher'**
4041+ String get publisherUserTooltip;
40364042}
40374043
40384044class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -2163,5 +2163,8 @@ class AppLocalizationsAr extends AppLocalizations {
21632163 String get premiumUserTooltip => 'مستخدم مميز' ;
21642164
21652165 @override
2166- String get privilegedUserTooltip => 'ناشر أو مسؤول في لوحة التحكم' ;
2166+ String get adminUserTooltip => 'مسؤول' ;
2167+
2168+ @override
2169+ String get publisherUserTooltip => 'ناشر' ;
21672170}
Original file line number Diff line number Diff line change @@ -2166,8 +2166,11 @@ class AppLocalizationsEn extends AppLocalizations {
21662166 }
21672167
21682168 @override
2169- String get premiumUserTooltip => 'Premium User ' ;
2169+ String get premiumUserTooltip => 'Premium' ;
21702170
21712171 @override
2172- String get privilegedUserTooltip => 'Dashboard Publisher or Admin' ;
2172+ String get adminUserTooltip => 'Admin' ;
2173+
2174+ @override
2175+ String get publisherUserTooltip => 'Publisher' ;
21732176}
You can’t perform that action at this time.
0 commit comments