File tree Expand file tree Collapse file tree 3 files changed +40
-0
lines changed
Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Original file line number Diff line number Diff 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
25262544class _AppLocalizationsDelegate
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments