Skip to content

Commit 57c774b

Browse files
committed
build: l10n
1 parent 8b14f39 commit 57c774b

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2941,6 +2941,42 @@ abstract class AppLocalizations {
29412941
/// In en, this message translates to:
29422942
/// **'Select Dashboard Roles'**
29432943
String get selectDashboardRoles;
2944+
2945+
/// Column header for authentication status
2946+
///
2947+
/// In en, this message translates to:
2948+
/// **'Authentication'**
2949+
String get authentication;
2950+
2951+
/// Column header for subscription status
2952+
///
2953+
/// In en, this message translates to:
2954+
/// **'Subscription'**
2955+
String get subscription;
2956+
2957+
/// Authentication status for a guest user
2958+
///
2959+
/// In en, this message translates to:
2960+
/// **'Anonymous'**
2961+
String get authenticationAnonymous;
2962+
2963+
/// Authentication status for a signed-in user
2964+
///
2965+
/// In en, this message translates to:
2966+
/// **'Authenticated'**
2967+
String get authenticationAuthenticated;
2968+
2969+
/// Subscription status for a free user
2970+
///
2971+
/// In en, this message translates to:
2972+
/// **'Free'**
2973+
String get subscriptionFree;
2974+
2975+
/// Subscription status for a premium user
2976+
///
2977+
/// In en, this message translates to:
2978+
/// **'Premium'**
2979+
String get subscriptionPremium;
29442980
}
29452981

29462982
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1564,4 +1564,22 @@ class AppLocalizationsAr extends AppLocalizations {
15641564

15651565
@override
15661566
String get selectDashboardRoles => 'اختر أدوار لوحة التحكم';
1567+
1568+
@override
1569+
String get authentication => 'المصادقة';
1570+
1571+
@override
1572+
String get subscription => 'الاشتراك';
1573+
1574+
@override
1575+
String get authenticationAnonymous => 'مجهول';
1576+
1577+
@override
1578+
String get authenticationAuthenticated => 'موثق';
1579+
1580+
@override
1581+
String get subscriptionFree => 'مجاني';
1582+
1583+
@override
1584+
String get subscriptionPremium => 'مميز';
15671585
}

lib/l10n/app_localizations_en.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1570,4 +1570,22 @@ class AppLocalizationsEn extends AppLocalizations {
15701570

15711571
@override
15721572
String get selectDashboardRoles => 'Select Dashboard Roles';
1573+
1574+
@override
1575+
String get authentication => 'Authentication';
1576+
1577+
@override
1578+
String get subscription => 'Subscription';
1579+
1580+
@override
1581+
String get authenticationAnonymous => 'Anonymous';
1582+
1583+
@override
1584+
String get authenticationAuthenticated => 'Authenticated';
1585+
1586+
@override
1587+
String get subscriptionFree => 'Free';
1588+
1589+
@override
1590+
String get subscriptionPremium => 'Premium';
15731591
}

0 commit comments

Comments
 (0)