Skip to content

Commit 6346e25

Browse files
committed
feat: Add content management and app config desc
- Added page descriptions for features - Updated ARB files
1 parent 09e1331 commit 6346e25

File tree

5 files changed

+44
-0
lines changed

5 files changed

+44
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,12 @@ abstract class AppLocalizations {
212212
/// **'Content Management'**
213213
String get contentManagement;
214214

215+
/// Description for the Content Management page
216+
///
217+
/// In en, this message translates to:
218+
/// **'Manage news headlines, categories, and sources for the Dashboard.'**
219+
String get contentManagementPageDescription;
220+
215221
/// Label for the headlines subpage
216222
///
217223
/// In en, this message translates to:
@@ -236,6 +242,12 @@ abstract class AppLocalizations {
236242
/// **'App Configuration'**
237243
String get appConfiguration;
238244

245+
/// Description for the App Configuration page
246+
///
247+
/// In en, this message translates to:
248+
/// **'Configure global settings for the mobile application, including user content limits, ad display rules, in-app prompts, operational status, and force update parameters.'**
249+
String get appConfigurationPageDescription;
250+
239251
/// Label for the settings navigation item
240252
///
241253
/// In en, this message translates to:

lib/l10n/app_localizations_ar.dart

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ class AppLocalizationsAr extends AppLocalizations {
7373
@override
7474
String get contentManagement => 'إدارة المحتوى';
7575

76+
@override
77+
String get contentManagementPageDescription =>
78+
'إدارة العناوين الإخبارية والفئات والمصادر للوحة القيادة.';
79+
7680
@override
7781
String get headlines => 'العناوين الرئيسية';
7882

@@ -85,6 +89,10 @@ class AppLocalizationsAr extends AppLocalizations {
8589
@override
8690
String get appConfiguration => 'إعدادات التطبيق';
8791

92+
@override
93+
String get appConfigurationPageDescription =>
94+
'تكوين الإعدادات العامة للتطبيق المحمول، بما في ذلك حدود محتوى المستخدم، وقواعد عرض الإعلانات، والتنبيهات داخل التطبيق، وحالة التشغيل، ومعلمات التحديث الإجباري.';
95+
8896
@override
8997
String get settings => 'الإعدادات';
9098

lib/l10n/app_localizations_en.dart

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@ class AppLocalizationsEn extends AppLocalizations {
7272
@override
7373
String get contentManagement => 'Content Management';
7474

75+
@override
76+
String get contentManagementPageDescription =>
77+
'Manage news headlines, categories, and sources for the Dashboard.';
78+
7579
@override
7680
String get headlines => 'Headlines';
7781

@@ -84,6 +88,10 @@ class AppLocalizationsEn extends AppLocalizations {
8488
@override
8589
String get appConfiguration => 'App Configuration';
8690

91+
@override
92+
String get appConfigurationPageDescription =>
93+
'Configure global settings for the mobile application, including user content limits, ad display rules, in-app prompts, operational status, and force update parameters.';
94+
8795
@override
8896
String get settings => 'Settings';
8997

lib/l10n/arb/app_ar.arb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@
8585
"@contentManagement": {
8686
"description": "تسمية عنصر التنقل لإدارة المحتوى"
8787
},
88+
"contentManagementPageDescription": "إدارة العناوين الإخبارية والفئات والمصادر للوحة القيادة.",
89+
"@contentManagementPageDescription": {
90+
"description": "وصف صفحة إدارة المحتوى"
91+
},
8892
"headlines": "العناوين الرئيسية",
8993
"@headlines": {
9094
"description": "تسمية الصفحة الفرعية للعناوين الرئيسية"
@@ -101,6 +105,10 @@
101105
"@appConfiguration": {
102106
"description": "تسمية عنصر التنقل لإعدادات التطبيق"
103107
},
108+
"appConfigurationPageDescription": "تكوين الإعدادات العامة للتطبيق المحمول، بما في ذلك حدود محتوى المستخدم، وقواعد عرض الإعلانات، والتنبيهات داخل التطبيق، وحالة التشغيل، ومعلمات التحديث الإجباري.",
109+
"@appConfigurationPageDescription": {
110+
"description": "وصف صفحة إعدادات التطبيق"
111+
},
104112
"settings": "الإعدادات",
105113
"@settings": {
106114
"description": "تسمية عنصر التنقل للإعدادات"

lib/l10n/arb/app_en.arb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@
8585
"@contentManagement": {
8686
"description": "Label for the content management navigation item"
8787
},
88+
"contentManagementPageDescription": "Manage news headlines, categories, and sources for the Dashboard.",
89+
"@contentManagementPageDescription": {
90+
"description": "Description for the Content Management page"
91+
},
8892
"headlines": "Headlines",
8993
"@headlines": {
9094
"description": "Label for the headlines subpage"
@@ -101,6 +105,10 @@
101105
"@appConfiguration": {
102106
"description": "Label for the app configuration navigation item"
103107
},
108+
"appConfigurationPageDescription": "Configure global settings for the mobile application, including user content limits, ad display rules, in-app prompts, operational status, and force update parameters.",
109+
"@appConfigurationPageDescription": {
110+
"description": "Description for the App Configuration page"
111+
},
104112
"settings": "Settings",
105113
"@settings": {
106114
"description": "Label for the settings navigation item"

0 commit comments

Comments
 (0)