Skip to content

Commit 17f9b6d

Browse files
committed
build: l10n
1 parent d58a263 commit 17f9b6d

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1909,6 +1909,18 @@ abstract class AppLocalizations {
19091909
/// In en, this message translates to:
19101910
/// **'Followed'**
19111911
String get savedFiltersBarFollowedLabel;
1912+
1913+
/// Title for the page where users can filter the list of sources.
1914+
///
1915+
/// In en, this message translates to:
1916+
/// **'Filter Sources'**
1917+
String get sourceListFilterPageTitle;
1918+
1919+
/// Tooltip for the button that opens the source list filter page.
1920+
///
1921+
/// In en, this message translates to:
1922+
/// **'Filter source list'**
1923+
String get sourceListFilterPageFilterButtonTooltip;
19121924
}
19131925

19141926
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,4 +1002,10 @@ class AppLocalizationsAr extends AppLocalizations {
10021002

10031003
@override
10041004
String get savedFiltersBarFollowedLabel => 'المتابَعات';
1005+
1006+
@override
1007+
String get sourceListFilterPageTitle => 'تصفية المصادر';
1008+
1009+
@override
1010+
String get sourceListFilterPageFilterButtonTooltip => 'تصفية قائمة المصادر';
10051011
}

lib/l10n/app_localizations_en.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1003,4 +1003,10 @@ class AppLocalizationsEn extends AppLocalizations {
10031003

10041004
@override
10051005
String get savedFiltersBarFollowedLabel => 'Followed';
1006+
1007+
@override
1008+
String get sourceListFilterPageTitle => 'Filter Sources';
1009+
1010+
@override
1011+
String get sourceListFilterPageFilterButtonTooltip => 'Filter source list';
10061012
}

0 commit comments

Comments
 (0)