Skip to content

Commit 7e09196

Browse files
committed
feat(l10n): add Arabic and English keys for ad platform types
- Add Arabic and English translations for AdMob and Local ad platform names - Introduce new localization keys for ad platform types
1 parent 44c4768 commit 7e09196

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
@@ -2347,6 +2347,18 @@ abstract class AppLocalizations {
23472347
/// In en, this message translates to:
23482348
/// **'The number of transitions (e.g., opening articles) a user must make before an interstitial ad is displayed.'**
23492349
String get transitionsBeforeInterstitialAdsDescription;
2350+
2351+
/// The name of the AdMob ad platform.
2352+
///
2353+
/// In en, this message translates to:
2354+
/// **'AdMob'**
2355+
String get adPlatformTypeAdmob;
2356+
2357+
/// The name of the Local ad platform for custom ads.
2358+
///
2359+
/// In en, this message translates to:
2360+
/// **'Local'**
2361+
String get adPlatformTypeLocal;
23502362
}
23512363

23522364
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,4 +1257,10 @@ class AppLocalizationsAr extends AppLocalizations {
12571257
@override
12581258
String get transitionsBeforeInterstitialAdsDescription =>
12591259
'عدد الانتقالات (مثل فتح المقالات) التي يجب أن يقوم بها المستخدم قبل عرض إعلان بيني.';
1260+
1261+
@override
1262+
String get adPlatformTypeAdmob => 'أدموب';
1263+
1264+
@override
1265+
String get adPlatformTypeLocal => 'محلي';
12601266
}

lib/l10n/app_localizations_en.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,4 +1259,10 @@ class AppLocalizationsEn extends AppLocalizations {
12591259
@override
12601260
String get transitionsBeforeInterstitialAdsDescription =>
12611261
'The number of transitions (e.g., opening articles) a user must make before an interstitial ad is displayed.';
1262+
1263+
@override
1264+
String get adPlatformTypeAdmob => 'AdMob';
1265+
1266+
@override
1267+
String get adPlatformTypeLocal => 'Local';
12621268
}

lib/l10n/arb/app_ar.arb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1573,5 +1573,13 @@
15731573
"transitionsBeforeInterstitialAdsDescription": "عدد الانتقالات (مثل فتح المقالات) التي يجب أن يقوم بها المستخدم قبل عرض إعلان بيني.",
15741574
"@transitionsBeforeInterstitialAdsDescription": {
15751575
"description": "Description for the number of transitions a user must make before an interstitial ad is shown."
1576+
},
1577+
"adPlatformTypeAdmob": "أدموب",
1578+
"@adPlatformTypeAdmob": {
1579+
"description": "اسم منصة إعلانات أدموب."
1580+
},
1581+
"adPlatformTypeLocal": "محلي",
1582+
"@adPlatformTypeLocal": {
1583+
"description": "اسم منصة الإعلانات المحلية للإعلانات المخصصة."
15761584
}
15771585
}

lib/l10n/arb/app_en.arb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1569,5 +1569,13 @@
15691569
"transitionsBeforeInterstitialAdsDescription": "The number of transitions (e.g., opening articles) a user must make before an interstitial ad is displayed.",
15701570
"@transitionsBeforeInterstitialAdsDescription": {
15711571
"description": "Description for the number of transitions a user must make before an interstitial ad is shown."
1572+
},
1573+
"adPlatformTypeAdmob": "AdMob",
1574+
"@adPlatformTypeAdmob": {
1575+
"description": "The name of the AdMob ad platform."
1576+
},
1577+
"adPlatformTypeLocal": "Local",
1578+
"@adPlatformTypeLocal": {
1579+
"description": "The name of the Local ad platform for custom ads."
15721580
}
15731581
}

0 commit comments

Comments
 (0)