Skip to content

Commit ed66b85

Browse files
committed
refactor(app_configuration): rename "general" to "system" in app configuration
- Update tab title from "appTab" to "systemTab" - Modify Arabic and English localization files to reflect the change - Correct typo in "feedItemClickBehaviorDescription"
1 parent 920dab3 commit ed66b85

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

lib/app_configuration/view/app_configuration_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class _AppConfigurationPageState extends State<AppConfigurationPage>
6565
tabAlignment: TabAlignment.start,
6666
isScrollable: true,
6767
tabs: [
68-
Tab(text: l10n.appTab),
68+
Tab(text: l10n.systemTab),
6969
Tab(text: l10n.featuresTab),
7070
Tab(text: l10n.userTab),
7171
],

lib/l10n/app_localizations_ar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class AppLocalizationsAr extends AppLocalizations {
115115
String get advertisementsTab => 'الإعلانات';
116116

117117
@override
118-
String get generalTab => 'عام';
118+
String get systemTab => 'النظام';
119119

120120
@override
121121
String get userContentLimitsTitle => 'حدود المحتوى';

lib/l10n/arb/app_ar.arb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@
139139
"@advertisementsTab": {
140140
"description": "عنوان تبويب إعدادات الإعلانات"
141141
},
142-
"generalTab": "عام",
143-
"@generalTab": {
144-
"description": "عنوان تبويب الإعدادات العامة"
142+
"systemTab": "النظام",
143+
"@systemTab": {
144+
"description": "عنوان تبويب لإعدادات النظام"
145145
},
146146
"userContentLimitsTitle": "حدود المحتوى",
147147
"@userContentLimitsTitle": {
@@ -2071,7 +2071,7 @@
20712071
"description": "عنوان إعداد سلوك النقر على عنصر الموجز."
20722072
},
20732073
"feedItemClickBehaviorDescription": "اختر المتصفح الذي يفتح عند نقر المستخدم على عنوان في الموجز.",
2074-
"@feedItemClickbehaviorDescription": {
2074+
"@feedItemClickBehaviorDescription": {
20752075
"description": "وصف إعداد سلوك النقر على عنصر الموجز."
20762076
},
20772077
"feedItemClickBehaviorInternalNavigation": "متصفح داخل التطبيق",

lib/l10n/arb/app_en.arb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,9 @@
139139
"@advertisementsTab": {
140140
"description": "Tab title for Advertisements settings"
141141
},
142-
"generalTab": "General",
143-
"@generalTab": {
144-
"description": "Tab title for General settings"
142+
"systemTab": "System",
143+
"@systemTab": {
144+
"description": "Tab title for system settings"
145145
},
146146
"userContentLimitsTitle": "User Content Limits",
147147
"@userContentLimitsTitle": {
@@ -2067,7 +2067,7 @@
20672067
"description": "Title for the feed item click behavior setting."
20682068
},
20692069
"feedItemClickBehaviorDescription": "Select which browser opens when a user taps on a headline in the feed.",
2070-
"@feedItemClickbehaviorDescription": {
2070+
"@feedItemClickBehaviorDescription": {
20712071
"description": "Description for the feed item click behavior setting."
20722072
},
20732073
"feedItemClickBehaviorInternalNavigation": "In-App Browser",

0 commit comments

Comments
 (0)