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 {
1753
1753
/// In en, this message translates to:
1754
1754
/// **'Archive'**
1755
1755
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;
1756
1768
}
1757
1769
1758
1770
class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -922,4 +922,12 @@ class AppLocalizationsAr extends AppLocalizations {
922
922
923
923
@override
924
924
String get archive => 'أرشفة' ;
925
+
926
+ @override
927
+ String headlineDeleted (String title) {
928
+ return 'تم حذف \'\' $title \'\' .' ;
929
+ }
930
+
931
+ @override
932
+ String get undo => 'تراجع' ;
925
933
}
Original file line number Diff line number Diff line change @@ -921,4 +921,12 @@ class AppLocalizationsEn extends AppLocalizations {
921
921
922
922
@override
923
923
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' ;
924
932
}
You can’t perform that action at this time.
0 commit comments