File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -1753,6 +1753,18 @@ abstract class AppLocalizations {
17531753 /// In en, this message translates to:
17541754 /// **'Archive'**
17551755 String get archive;
1756+
1757+ /// Snackbar message when a headline is deleted
1758+ ///
1759+ /// In en, this message translates to:
1760+ /// **'Deleted \'\'{title}\'\'.'**
1761+ String headlineDeleted (String title);
1762+
1763+ /// No description provided for @undo.
1764+ ///
1765+ /// In en, this message translates to:
1766+ /// **'Undo'**
1767+ String get undo;
17561768}
17571769
17581770class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -922,4 +922,12 @@ class AppLocalizationsAr extends AppLocalizations {
922922
923923 @override
924924 String get archive => 'أرشفة' ;
925+
926+ @override
927+ String headlineDeleted (String title) {
928+ return 'تم حذف \'\' $title \'\' .' ;
929+ }
930+
931+ @override
932+ String get undo => 'تراجع' ;
925933}
Original file line number Diff line number Diff line change @@ -921,4 +921,12 @@ class AppLocalizationsEn extends AppLocalizations {
921921
922922 @override
923923 String get archive => 'Archive' ;
924+
925+ @override
926+ String headlineDeleted (String title) {
927+ return 'Deleted \'\' $title \'\' .' ;
928+ }
929+
930+ @override
931+ String get undo => 'Undo' ;
924932}
You can’t perform that action at this time.
0 commit comments