Skip to content

Commit 18ec2c1

Browse files
committed
build(l10n): sync
1 parent 20c84ca commit 18ec2c1

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

lib/l10n/app_localizations.dart

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff 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

40384044
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

lib/l10n/app_localizations_en.dart

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)