File tree Expand file tree Collapse file tree 5 files changed +62
-0
lines changed Expand file tree Collapse file tree 5 files changed +62
-0
lines changed Original file line number Diff line number Diff line change @@ -1243,6 +1243,24 @@ abstract class AppLocalizations {
1243
1243
/// In en, this message translates to:
1244
1244
/// **'Cannot update: Original headline data not loaded.'**
1245
1245
String get cannotUpdateHeadlineError;
1246
+
1247
+ /// Title for the Create Headline page
1248
+ ///
1249
+ /// In en, this message translates to:
1250
+ /// **'Create Headline'**
1251
+ String get createHeadline;
1252
+
1253
+ /// Message displayed when a headline is created successfully
1254
+ ///
1255
+ /// In en, this message translates to:
1256
+ /// **'Headline created successfully.'**
1257
+ String get headlineCreatedSuccessfully;
1258
+
1259
+ /// Generic message displayed while loading data for a form
1260
+ ///
1261
+ /// In en, this message translates to:
1262
+ /// **'Loading data...'**
1263
+ String get loadingData;
1246
1264
}
1247
1265
1248
1266
class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -650,4 +650,13 @@ class AppLocalizationsAr extends AppLocalizations {
650
650
@override
651
651
String get cannotUpdateHeadlineError =>
652
652
'لا يمكن التحديث: لم يتم تحميل بيانات العنوان الأصلية.' ;
653
+
654
+ @override
655
+ String get createHeadline => 'إنشاء عنوان' ;
656
+
657
+ @override
658
+ String get headlineCreatedSuccessfully => 'تم إنشاء العنوان بنجاح.' ;
659
+
660
+ @override
661
+ String get loadingData => 'جاري تحميل البيانات...' ;
653
662
}
Original file line number Diff line number Diff line change @@ -648,4 +648,13 @@ class AppLocalizationsEn extends AppLocalizations {
648
648
@override
649
649
String get cannotUpdateHeadlineError =>
650
650
'Cannot update: Original headline data not loaded.' ;
651
+
652
+ @override
653
+ String get createHeadline => 'Create Headline' ;
654
+
655
+ @override
656
+ String get headlineCreatedSuccessfully => 'Headline created successfully.' ;
657
+
658
+ @override
659
+ String get loadingData => 'Loading data...' ;
651
660
}
Original file line number Diff line number Diff line change 788
788
"@cannotUpdateHeadlineError": {
789
789
"description": "رسالة خطأ عند فشل تحديث العنوان بسبب عدم تحميل البيانات الأصلية"
790
790
}
791
+ ,
792
+ "createHeadline": "إنشاء عنوان",
793
+ "@createHeadline": {
794
+ "description": "عنوان صفحة إنشاء عنوان"
795
+ },
796
+ "headlineCreatedSuccessfully": "تم إنشاء العنوان بنجاح.",
797
+ "@headlineCreatedSuccessfully": {
798
+ "description": "رسالة تُعرض عند إنشاء العنوان بنجاح"
799
+ },
800
+ "loadingData": "جاري تحميل البيانات...",
801
+ "@loadingData": {
802
+ "description": "رسالة عامة تُعرض أثناء تحميل البيانات لنموذج"
803
+ }
791
804
}
Original file line number Diff line number Diff line change 790
790
"@cannotUpdateHeadlineError": {
791
791
"description": "Error message when updating a headline fails because the original data wasn't loaded"
792
792
}
793
+ ,
794
+ "createHeadline": "Create Headline",
795
+ "@createHeadline": {
796
+ "description": "Title for the Create Headline page"
797
+ },
798
+ "headlineCreatedSuccessfully": "Headline created successfully.",
799
+ "@headlineCreatedSuccessfully": {
800
+ "description": "Message displayed when a headline is created successfully"
801
+ },
802
+ "loadingData": "Loading data...",
803
+ "@loadingData": {
804
+ "description": "Generic message displayed while loading data for a form"
805
+ }
793
806
}
You can’t perform that action at this time.
0 commit comments