Skip to content

Commit a1bab0e

Browse files
committed
feat(l10n): add Arabic and English labels for saved filters
- Add Arabic and English translations for "Followed" label - Add new arb entries for saved filters bar - Maintain existing translations for consistency
1 parent 01c5fb3 commit a1bab0e

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1903,6 +1903,12 @@ abstract class AppLocalizations {
19031903
/// In en, this message translates to:
19041904
/// **'Apply & Save'**
19051905
String get applyFilterDialogApplyAndSaveButton;
1906+
1907+
/// Label for the 'Followed' chip in the saved filters bar.
1908+
///
1909+
/// In en, this message translates to:
1910+
/// **'Followed'**
1911+
String get savedFiltersBarFollowedLabel;
19061912
}
19071913

19081914
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

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

10001000
@override
10011001
String get applyFilterDialogApplyAndSaveButton => 'تطبيق وحفظ';
1002+
1003+
@override
1004+
String get savedFiltersBarFollowedLabel => 'المتابَع';
10021005
}

lib/l10n/app_localizations_en.dart

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

10011001
@override
10021002
String get applyFilterDialogApplyAndSaveButton => 'Apply & Save';
1003+
1004+
@override
1005+
String get savedFiltersBarFollowedLabel => 'Followed';
10031006
}

lib/l10n/arb/app_ar.arb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1309,5 +1309,9 @@
13091309
"applyFilterDialogApplyAndSaveButton": "تطبيق وحفظ",
13101310
"@applyFilterDialogApplyAndSaveButton": {
13111311
"description": "Button text to apply and save the filter for future use."
1312+
},
1313+
"savedFiltersBarFollowedLabel": "المتابَعات",
1314+
"@savedFiltersBarFollowedLabel": {
1315+
"description": "Label for the 'Followed' chip in the saved filters bar."
13121316
}
13131317
}

lib/l10n/arb/app_en.arb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1309,5 +1309,9 @@
13091309
"applyFilterDialogApplyAndSaveButton": "Apply & Save",
13101310
"@applyFilterDialogApplyAndSaveButton": {
13111311
"description": "Button text to apply and save the filter for future use."
1312+
},
1313+
"savedFiltersBarFollowedLabel": "Followed",
1314+
"@savedFiltersBarFollowedLabel": {
1315+
"description": "Label for the 'Followed' chip in the saved filters bar."
13121316
}
13131317
}

0 commit comments

Comments
 (0)