Skip to content

Commit dca6112

Browse files
committed
build(l10n): generate
1 parent dde95d8 commit dca6112

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2521,6 +2521,24 @@ abstract class AppLocalizations {
25212521
/// In en, this message translates to:
25222522
/// **'Digests'**
25232523
String get notificationCenterTabDigests;
2524+
2525+
/// Tooltip for the button to delete all read notifications in the current tab.
2526+
///
2527+
/// In en, this message translates to:
2528+
/// **'Delete all read notifications'**
2529+
String get deleteReadNotificationsButtonTooltip;
2530+
2531+
/// The main text in the dialog confirming the deletion of read notifications.
2532+
///
2533+
/// In en, this message translates to:
2534+
/// **'Are you sure you want to delete all read notifications in this tab? This action cannot be undone.'**
2535+
String get deleteReadNotificationsDialogContent;
2536+
2537+
/// Generic label for a delete button.
2538+
///
2539+
/// In en, this message translates to:
2540+
/// **'Delete'**
2541+
String get deleteButtonLabel;
25242542
}
25252543

25262544
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1326,4 +1326,15 @@ class AppLocalizationsAr extends AppLocalizations {
13261326

13271327
@override
13281328
String get notificationCenterTabDigests => 'الملخصات';
1329+
1330+
@override
1331+
String get deleteReadNotificationsButtonTooltip =>
1332+
'حذف جميع الإشعارات المقروءة';
1333+
1334+
@override
1335+
String get deleteReadNotificationsDialogContent =>
1336+
'هل أنت متأكد أنك تريد حذف جميع الإشعارات المقروءة في علامة التبويب هذه؟ لا يمكن التراجع عن هذا الإجراء.';
1337+
1338+
@override
1339+
String get deleteButtonLabel => 'حذف';
13291340
}

lib/l10n/app_localizations_en.dart

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1330,4 +1330,15 @@ class AppLocalizationsEn extends AppLocalizations {
13301330

13311331
@override
13321332
String get notificationCenterTabDigests => 'Digests';
1333+
1334+
@override
1335+
String get deleteReadNotificationsButtonTooltip =>
1336+
'Delete all read notifications';
1337+
1338+
@override
1339+
String get deleteReadNotificationsDialogContent =>
1340+
'Are you sure you want to delete all read notifications in this tab? This action cannot be undone.';
1341+
1342+
@override
1343+
String get deleteButtonLabel => 'Delete';
13331344
}

0 commit comments

Comments
 (0)