Skip to content

Commit 98e9f32

Browse files
committed
feat: Add appearance settings labels
- Added labels for settings tabs - Added labels for settings subtabs
1 parent 56cc2cd commit 98e9f32

File tree

5 files changed

+80
-0
lines changed

5 files changed

+80
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -931,6 +931,30 @@ abstract class AppLocalizations {
931931
/// In en, this message translates to:
932932
/// **'Arabic'**
933933
String get arabicLanguage;
934+
935+
/// Label for the Appearance settings tab
936+
///
937+
/// In en, this message translates to:
938+
/// **'Appearance'**
939+
String get appearanceSettingsLabel;
940+
941+
/// Label for the Language settings tab
942+
///
943+
/// In en, this message translates to:
944+
/// **'Language'**
945+
String get languageSettingsLabel;
946+
947+
/// Label for the Theme Settings sub-tab
948+
///
949+
/// In en, this message translates to:
950+
/// **'Theme Settings'**
951+
String get themeSettingsLabel;
952+
953+
/// Label for the Font Settings sub-tab
954+
///
955+
/// In en, this message translates to:
956+
/// **'Font Settings'**
957+
String get fontSettingsLabel;
934958
}
935959

936960
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,4 +487,16 @@ class AppLocalizationsAr extends AppLocalizations {
487487

488488
@override
489489
String get arabicLanguage => 'العربية';
490+
491+
@override
492+
String get appearanceSettingsLabel => 'المظهر';
493+
494+
@override
495+
String get languageSettingsLabel => 'اللغة';
496+
497+
@override
498+
String get themeSettingsLabel => 'إعدادات السمة';
499+
500+
@override
501+
String get fontSettingsLabel => 'إعدادات الخط';
490502
}

lib/l10n/app_localizations_en.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,4 +485,16 @@ class AppLocalizationsEn extends AppLocalizations {
485485

486486
@override
487487
String get arabicLanguage => 'Arabic';
488+
489+
@override
490+
String get appearanceSettingsLabel => 'Appearance';
491+
492+
@override
493+
String get languageSettingsLabel => 'Language';
494+
495+
@override
496+
String get themeSettingsLabel => 'Theme Settings';
497+
498+
@override
499+
String get fontSettingsLabel => 'Font Settings';
488500
}

lib/l10n/arb/app_ar.arb

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -579,5 +579,21 @@
579579
"arabicLanguage": "العربية",
580580
"@arabicLanguage": {
581581
"description": "خيار اللغة العربية"
582+
},
583+
"appearanceSettingsLabel": "المظهر",
584+
"@appearanceSettingsLabel": {
585+
"description": "تسمية تبويب إعدادات المظهر"
586+
},
587+
"languageSettingsLabel": "اللغة",
588+
"@languageSettingsLabel": {
589+
"description": "تسمية تبويب إعدادات اللغة"
590+
},
591+
"themeSettingsLabel": "إعدادات السمة",
592+
"@themeSettingsLabel": {
593+
"description": "تسمية تبويب إعدادات السمة الفرعي"
594+
},
595+
"fontSettingsLabel": "إعدادات الخط",
596+
"@fontSettingsLabel": {
597+
"description": "تسمية تبويب إعدادات الخط الفرعي"
582598
}
583599
}

lib/l10n/arb/app_en.arb

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -579,5 +579,21 @@
579579
"arabicLanguage": "Arabic",
580580
"@arabicLanguage": {
581581
"description": "Option for Arabic language"
582+
},
583+
"appearanceSettingsLabel": "Appearance",
584+
"@appearanceSettingsLabel": {
585+
"description": "Label for the Appearance settings tab"
586+
},
587+
"languageSettingsLabel": "Language",
588+
"@languageSettingsLabel": {
589+
"description": "Label for the Language settings tab"
590+
},
591+
"themeSettingsLabel": "Theme Settings",
592+
"@themeSettingsLabel": {
593+
"description": "Label for the Theme Settings sub-tab"
594+
},
595+
"fontSettingsLabel": "Font Settings",
596+
"@fontSettingsLabel": {
597+
"description": "Label for the Font Settings sub-tab"
582598
}
583599
}

0 commit comments

Comments
 (0)