File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -1118,6 +1118,18 @@ abstract class AppLocalizations {
1118
1118
/// **'Cannot update: Original category data not loaded.'**
1119
1119
String get cannotUpdateCategoryError;
1120
1120
1121
+ /// Title for the Create Category page
1122
+ ///
1123
+ /// In en, this message translates to:
1124
+ /// **'Create Category'**
1125
+ String get createCategory;
1126
+
1127
+ /// Message displayed when a category is created successfully
1128
+ ///
1129
+ /// In en, this message translates to:
1130
+ /// **'Category created successfully.'**
1131
+ String get categoryCreatedSuccessfully;
1132
+
1121
1133
/// Title for the Edit Source page
1122
1134
///
1123
1135
/// In en, this message translates to:
Original file line number Diff line number Diff line change @@ -586,6 +586,12 @@ class AppLocalizationsAr extends AppLocalizations {
586
586
String get cannotUpdateCategoryError =>
587
587
'لا يمكن التحديث: لم يتم تحميل بيانات الفئة الأصلية.' ;
588
588
589
+ @override
590
+ String get createCategory => 'إنشاء فئة' ;
591
+
592
+ @override
593
+ String get categoryCreatedSuccessfully => 'تم إنشاء الفئة بنجاح.' ;
594
+
589
595
@override
590
596
String get editSource => 'تعديل المصدر' ;
591
597
Original file line number Diff line number Diff line change @@ -584,6 +584,12 @@ class AppLocalizationsEn extends AppLocalizations {
584
584
String get cannotUpdateCategoryError =>
585
585
'Cannot update: Original category data not loaded.' ;
586
586
587
+ @override
588
+ String get createCategory => 'Create Category' ;
589
+
590
+ @override
591
+ String get categoryCreatedSuccessfully => 'Category created successfully.' ;
592
+
587
593
@override
588
594
String get editSource => 'Edit Source' ;
589
595
You can’t perform that action at this time.
0 commit comments