Skip to content

Commit 7a332b6

Browse files
committed
build(l10n): generate
1 parent 595893b commit 7a332b6

File tree

3 files changed

+140
-0
lines changed

3 files changed

+140
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2821,6 +2821,72 @@ abstract class AppLocalizations {
28212821
/// In en, this message translates to:
28222822
/// **'Non-Breaking Only'**
28232823
String get breakingNewsFilterNonBreakingOnly;
2824+
2825+
/// Tab title for Notifications settings
2826+
///
2827+
/// In en, this message translates to:
2828+
/// **'Notifications'**
2829+
String get notificationsTab;
2830+
2831+
/// Title for the Push Notification Settings section
2832+
///
2833+
/// In en, this message translates to:
2834+
/// **'Push Notification Settings'**
2835+
String get pushNotificationSettingsTitle;
2836+
2837+
/// Description for the Push Notification Settings section
2838+
///
2839+
/// In en, this message translates to:
2840+
/// **'Manage global settings for the push notification system, including the primary provider and which notification types are active.'**
2841+
String get pushNotificationSettingsDescription;
2842+
2843+
/// Title for the Push Notification System status section
2844+
///
2845+
/// In en, this message translates to:
2846+
/// **'Push Notification System'**
2847+
String get pushNotificationSystemStatusTitle;
2848+
2849+
/// Description for the Push Notification System status section
2850+
///
2851+
/// In en, this message translates to:
2852+
/// **'A global switch to enable or disable the entire push notification system.'**
2853+
String get pushNotificationSystemStatusDescription;
2854+
2855+
/// Title for the Push Notification Primary Provider section
2856+
///
2857+
/// In en, this message translates to:
2858+
/// **'Primary Provider'**
2859+
String get pushNotificationPrimaryProviderTitle;
2860+
2861+
/// Description for the Push Notification Primary Provider section
2862+
///
2863+
/// In en, this message translates to:
2864+
/// **'Select the primary service provider for sending push notifications.'**
2865+
String get pushNotificationPrimaryProviderDescription;
2866+
2867+
/// Title for the Push Notification Delivery Types section
2868+
///
2869+
/// In en, this message translates to:
2870+
/// **'Delivery Types'**
2871+
String get pushNotificationDeliveryTypesTitle;
2872+
2873+
/// Description for the Push Notification Delivery Types section
2874+
///
2875+
/// In en, this message translates to:
2876+
/// **'Globally enable or disable specific types of push notifications.'**
2877+
String get pushNotificationDeliveryTypesDescription;
2878+
2879+
/// Label for the Firebase push notification provider
2880+
///
2881+
/// In en, this message translates to:
2882+
/// **'Firebase'**
2883+
String get pushNotificationProviderFirebase;
2884+
2885+
/// Label for the OneSignal push notification provider
2886+
///
2887+
/// In en, this message translates to:
2888+
/// **'OneSignal'**
2889+
String get pushNotificationProviderOneSignal;
28242890
}
28252891

28262892
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1508,4 +1508,41 @@ class AppLocalizationsAr extends AppLocalizations {
15081508

15091509
@override
15101510
String get breakingNewsFilterNonBreakingOnly => 'غير العاجلة فقط';
1511+
1512+
@override
1513+
String get notificationsTab => 'الإشعارات';
1514+
1515+
@override
1516+
String get pushNotificationSettingsTitle => 'إعدادات الإشعارات الفورية';
1517+
1518+
@override
1519+
String get pushNotificationSettingsDescription =>
1520+
'إدارة الإعدادات العامة لنظام الإشعارات الفورية، بما في ذلك المزود الأساسي وأنواع الإشعارات النشطة.';
1521+
1522+
@override
1523+
String get pushNotificationSystemStatusTitle => 'نظام الإشعارات الفورية';
1524+
1525+
@override
1526+
String get pushNotificationSystemStatusDescription =>
1527+
'مفتاح عام لتمكين أو تعطيل نظام الإشعارات الفورية بأكمله.';
1528+
1529+
@override
1530+
String get pushNotificationPrimaryProviderTitle => 'المزود الأساسي';
1531+
1532+
@override
1533+
String get pushNotificationPrimaryProviderDescription =>
1534+
'اختر مزود الخدمة الأساسي لإرسال الإشعارات الفورية.';
1535+
1536+
@override
1537+
String get pushNotificationDeliveryTypesTitle => 'أنواع التسليم';
1538+
1539+
@override
1540+
String get pushNotificationDeliveryTypesDescription =>
1541+
'تمكين أو تعطيل أنواع معينة من الإشعارات الفورية.';
1542+
1543+
@override
1544+
String get pushNotificationProviderFirebase => 'Firebase';
1545+
1546+
@override
1547+
String get pushNotificationProviderOneSignal => 'OneSignal';
15111548
}

lib/l10n/app_localizations_en.dart

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1511,4 +1511,41 @@ class AppLocalizationsEn extends AppLocalizations {
15111511

15121512
@override
15131513
String get breakingNewsFilterNonBreakingOnly => 'Non-Breaking Only';
1514+
1515+
@override
1516+
String get notificationsTab => 'Notifications';
1517+
1518+
@override
1519+
String get pushNotificationSettingsTitle => 'Push Notification Settings';
1520+
1521+
@override
1522+
String get pushNotificationSettingsDescription =>
1523+
'Manage global settings for the push notification system, including the primary provider and which notification types are active.';
1524+
1525+
@override
1526+
String get pushNotificationSystemStatusTitle => 'Push Notification System';
1527+
1528+
@override
1529+
String get pushNotificationSystemStatusDescription =>
1530+
'A global switch to enable or disable the entire push notification system.';
1531+
1532+
@override
1533+
String get pushNotificationPrimaryProviderTitle => 'Primary Provider';
1534+
1535+
@override
1536+
String get pushNotificationPrimaryProviderDescription =>
1537+
'Select the primary service provider for sending push notifications.';
1538+
1539+
@override
1540+
String get pushNotificationDeliveryTypesTitle => 'Delivery Types';
1541+
1542+
@override
1543+
String get pushNotificationDeliveryTypesDescription =>
1544+
'Globally enable or disable specific types of push notifications.';
1545+
1546+
@override
1547+
String get pushNotificationProviderFirebase => 'Firebase';
1548+
1549+
@override
1550+
String get pushNotificationProviderOneSignal => 'OneSignal';
15141551
}

0 commit comments

Comments
 (0)