Skip to content

Commit 28e4b48

Browse files
committed
feat(l10n): add source creation strings
1 parent 9ecddac commit 28e4b48

File tree

5 files changed

+40
-0
lines changed

5 files changed

+40
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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

12781290
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

lib/l10n/app_localizations_en.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

lib/l10n/arb/app_ar.arb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -807,5 +807,13 @@
807807
"loadingData": "جاري تحميل البيانات...",
808808
"@loadingData": {
809809
"description": "رسالة عامة تُعرض أثناء تحميل البيانات لنموذج"
810+
},
811+
"createSource": "إنشاء مصدر",
812+
"@createSource": {
813+
"description": "عنوان صفحة إنشاء مصدر"
814+
},
815+
"sourceCreatedSuccessfully": "تم إنشاء المصدر بنجاح.",
816+
"@sourceCreatedSuccessfully": {
817+
"description": "رسالة تُعرض عند إنشاء المصدر بنجاح"
810818
}
811819
}

lib/l10n/arb/app_en.arb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -807,5 +807,13 @@
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
}

0 commit comments

Comments
 (0)