Skip to content

Commit 78468ff

Browse files
committed
chore: misc
1 parent 193b152 commit 78468ff

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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

17581770
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

lib/l10n/app_localizations_en.dart

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)