File tree Expand file tree Collapse file tree 5 files changed +40
-0
lines changed Expand file tree Collapse file tree 5 files changed +40
-0
lines changed Original file line number Diff line number Diff line change @@ -1273,6 +1273,18 @@ abstract class AppLocalizations {
1273
1273
/// In en, this message translates to:
1274
1274
/// **'Loading data...'**
1275
1275
String get loadingData;
1276
+
1277
+ /// Title for the Create Source page
1278
+ ///
1279
+ /// In en, this message translates to:
1280
+ /// **'Create Source'**
1281
+ String get createSource;
1282
+
1283
+ /// Message displayed when a source is created successfully
1284
+ ///
1285
+ /// In en, this message translates to:
1286
+ /// **'Source created successfully.'**
1287
+ String get sourceCreatedSuccessfully;
1276
1288
}
1277
1289
1278
1290
class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -665,4 +665,10 @@ class AppLocalizationsAr extends AppLocalizations {
665
665
666
666
@override
667
667
String get loadingData => 'جاري تحميل البيانات...' ;
668
+
669
+ @override
670
+ String get createSource => 'إنشاء مصدر' ;
671
+
672
+ @override
673
+ String get sourceCreatedSuccessfully => 'تم إنشاء المصدر بنجاح.' ;
668
674
}
Original file line number Diff line number Diff line change @@ -663,4 +663,10 @@ class AppLocalizationsEn extends AppLocalizations {
663
663
664
664
@override
665
665
String get loadingData => 'Loading data...' ;
666
+
667
+ @override
668
+ String get createSource => 'Create Source' ;
669
+
670
+ @override
671
+ String get sourceCreatedSuccessfully => 'Source created successfully.' ;
666
672
}
Original file line number Diff line number Diff line change 807
807
"loadingData": "جاري تحميل البيانات...",
808
808
"@loadingData": {
809
809
"description": "رسالة عامة تُعرض أثناء تحميل البيانات لنموذج"
810
+ },
811
+ "createSource": "إنشاء مصدر",
812
+ "@createSource": {
813
+ "description": "عنوان صفحة إنشاء مصدر"
814
+ },
815
+ "sourceCreatedSuccessfully": "تم إنشاء المصدر بنجاح.",
816
+ "@sourceCreatedSuccessfully": {
817
+ "description": "رسالة تُعرض عند إنشاء المصدر بنجاح"
810
818
}
811
819
}
Original file line number Diff line number Diff line change 807
807
"loadingData": "Loading data...",
808
808
"@loadingData": {
809
809
"description": "Generic message displayed while loading data for a form"
810
+ },
811
+ "createSource": "Create Source",
812
+ "@createSource": {
813
+ "description": "Title for the Create Source page"
814
+ },
815
+ "sourceCreatedSuccessfully": "Source created successfully.",
816
+ "@sourceCreatedSuccessfully": {
817
+ "description": "Message displayed when a source is created successfully"
810
818
}
811
819
}
You can’t perform that action at this time.
0 commit comments