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 {
12731273 /// In en, this message translates to:
12741274 /// **'Loading data...'**
12751275 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;
12761288}
12771289
12781290class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -665,4 +665,10 @@ class AppLocalizationsAr extends AppLocalizations {
665665
666666 @override
667667 String get loadingData => 'جاري تحميل البيانات...' ;
668+
669+ @override
670+ String get createSource => 'إنشاء مصدر' ;
671+
672+ @override
673+ String get sourceCreatedSuccessfully => 'تم إنشاء المصدر بنجاح.' ;
668674}
Original file line number Diff line number Diff line change @@ -663,4 +663,10 @@ class AppLocalizationsEn extends AppLocalizations {
663663
664664 @override
665665 String get loadingData => 'Loading data...' ;
666+
667+ @override
668+ String get createSource => 'Create Source' ;
669+
670+ @override
671+ String get sourceCreatedSuccessfully => 'Source created successfully.' ;
666672}
Original file line number Diff line number Diff line change 807807 "loadingData": "جاري تحميل البيانات...",
808808 "@loadingData": {
809809 "description": "رسالة عامة تُعرض أثناء تحميل البيانات لنموذج"
810+ },
811+ "createSource": "إنشاء مصدر",
812+ "@createSource": {
813+ "description": "عنوان صفحة إنشاء مصدر"
814+ },
815+ "sourceCreatedSuccessfully": "تم إنشاء المصدر بنجاح.",
816+ "@sourceCreatedSuccessfully": {
817+ "description": "رسالة تُعرض عند إنشاء المصدر بنجاح"
810818 }
811819}
Original file line number Diff line number Diff line change 807807 "loadingData": "Loading data...",
808808 "@loadingData": {
809809 "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"
810818 }
811819}
You can’t perform that action at this time.
0 commit comments