Skip to content

Commit 44b0dfc

Browse files
committed
build(l10n): generation
1 parent 9ab2bb0 commit 44b0dfc

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2539,6 +2539,12 @@ abstract class AppLocalizations {
25392539
/// In en, this message translates to:
25402540
/// **'Delete'**
25412541
String get deleteButtonLabel;
2542+
2543+
/// Prefix text shown for breaking news headlines.
2544+
///
2545+
/// In en, this message translates to:
2546+
/// **'Breaking News'**
2547+
String get breakingNewsPrefix;
25422548
}
25432549

25442550
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,4 +1337,7 @@ class AppLocalizationsAr extends AppLocalizations {
13371337

13381338
@override
13391339
String get deleteButtonLabel => 'حذف';
1340+
1341+
@override
1342+
String get breakingNewsPrefix => 'خبر عاجل';
13401343
}

lib/l10n/app_localizations_en.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1341,4 +1341,7 @@ class AppLocalizationsEn extends AppLocalizations {
13411341

13421342
@override
13431343
String get deleteButtonLabel => 'Delete';
1344+
1345+
@override
1346+
String get breakingNewsPrefix => 'Breaking News';
13441347
}

0 commit comments

Comments
 (0)