Skip to content

Commit 27fcd01

Browse files
committed
docs(l10n): remove AdMob references in ad ID descriptions
- Remove "AdMob" mentions from descriptions of various ad unit ID fields - Simplify descriptions for feed, article, and in-article ad IDs - Update both Arabic and English localization files
1 parent 9792456 commit 27fcd01

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

lib/l10n/app_localizations.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2057,7 +2057,7 @@ abstract class AppLocalizations {
20572057
/// Description for the Feed Native Ad ID input field
20582058
///
20592059
/// In en, this message translates to:
2060-
/// **'The AdMob unit ID for native ads in the feed.'**
2060+
/// **'The unit ID for native ads in the feed.'**
20612061
String get feedNativeAdIdDescription;
20622062

20632063
/// Label for the Feed Banner Ad ID input field
@@ -2069,7 +2069,7 @@ abstract class AppLocalizations {
20692069
/// Description for the Feed Banner Ad ID input field
20702070
///
20712071
/// In en, this message translates to:
2072-
/// **'The AdMob unit ID for banner ads in the feed.'**
2072+
/// **'The unit ID for banner ads in the feed.'**
20732073
String get feedBannerAdIdDescription;
20742074

20752075
/// Label for the Article Interstitial Ad ID input field
@@ -2081,7 +2081,7 @@ abstract class AppLocalizations {
20812081
/// Description for the Article Interstitial Ad ID input field
20822082
///
20832083
/// In en, this message translates to:
2084-
/// **'The AdMob unit ID for interstitial ads in articles.'**
2084+
/// **'The unit ID for interstitial ads in articles.'**
20852085
String get articleInterstitialAdIdDescription;
20862086

20872087
/// Label for the In-Article Native Ad ID input field
@@ -2093,7 +2093,7 @@ abstract class AppLocalizations {
20932093
/// Description for the In-Article Native Ad ID input field
20942094
///
20952095
/// In en, this message translates to:
2096-
/// **'The AdMob unit ID for native ads within articles.'**
2096+
/// **'The unit ID for native ads within articles.'**
20972097
String get inArticleNativeAdIdDescription;
20982098

20992099
/// Label for the In-Article Banner Ad ID input field
@@ -2105,7 +2105,7 @@ abstract class AppLocalizations {
21052105
/// Description for the In-Article Banner Ad ID input field
21062106
///
21072107
/// In en, this message translates to:
2108-
/// **'The AdMob unit ID for banner ads within articles.'**
2108+
/// **'The unit ID for banner ads within articles.'**
21092109
String get inArticleBannerAdIdDescription;
21102110

21112111
/// Localized name for InArticleAdSlotType.belowMainArticleImage

lib/l10n/app_localizations_ar.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ class AppLocalizationsAr extends AppLocalizations {
10931093

10941094
@override
10951095
String get feedNativeAdIdDescription =>
1096-
'معرف وحدة AdMob للإعلانات الأصلية في الموجز.';
1096+
'معرف وحدة الإعلانات الأصلية في الموجز.';
10971097

10981098
@override
10991099
String get feedBannerAdIdLabel => 'معرف إعلان البانر للموجز';
@@ -1107,21 +1107,21 @@ class AppLocalizationsAr extends AppLocalizations {
11071107

11081108
@override
11091109
String get articleInterstitialAdIdDescription =>
1110-
'معرف وحدة AdMob للإعلانات البينية في المقالات.';
1110+
'معرف وحدة الإعلانات البينية في المقالات.';
11111111

11121112
@override
11131113
String get inArticleNativeAdIdLabel => 'معرف الإعلان الأصلي داخل المقال';
11141114

11151115
@override
11161116
String get inArticleNativeAdIdDescription =>
1117-
'معرف وحدة AdMob للإعلانات الأصلية داخل المقالات.';
1117+
'معرف وحدة الإعلانات الأصلية داخل المقالات.';
11181118

11191119
@override
11201120
String get inArticleBannerAdIdLabel => 'معرف إعلان البانر داخل المقال';
11211121

11221122
@override
11231123
String get inArticleBannerAdIdDescription =>
1124-
'معرف وحدة AdMob لإعلانات البانر داخل المقالات.';
1124+
'معرف وحدة إعلانات البانر داخل المقالات.';
11251125

11261126
@override
11271127
String get inArticleAdSlotTypeBelowMainArticleImage =>

lib/l10n/app_localizations_en.dart

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1091,35 +1091,35 @@ class AppLocalizationsEn extends AppLocalizations {
10911091

10921092
@override
10931093
String get feedNativeAdIdDescription =>
1094-
'The AdMob unit ID for native ads in the feed.';
1094+
'The unit ID for native ads in the feed.';
10951095

10961096
@override
10971097
String get feedBannerAdIdLabel => 'Feed Banner Ad ID';
10981098

10991099
@override
11001100
String get feedBannerAdIdDescription =>
1101-
'The AdMob unit ID for banner ads in the feed.';
1101+
'The unit ID for banner ads in the feed.';
11021102

11031103
@override
11041104
String get articleInterstitialAdIdLabel => 'Article Interstitial Ad ID';
11051105

11061106
@override
11071107
String get articleInterstitialAdIdDescription =>
1108-
'The AdMob unit ID for interstitial ads in articles.';
1108+
'The unit ID for interstitial ads in articles.';
11091109

11101110
@override
11111111
String get inArticleNativeAdIdLabel => 'In-Article Native Ad ID';
11121112

11131113
@override
11141114
String get inArticleNativeAdIdDescription =>
1115-
'The AdMob unit ID for native ads within articles.';
1115+
'The unit ID for native ads within articles.';
11161116

11171117
@override
11181118
String get inArticleBannerAdIdLabel => 'In-Article Banner Ad ID';
11191119

11201120
@override
11211121
String get inArticleBannerAdIdDescription =>
1122-
'The AdMob unit ID for banner ads within articles.';
1122+
'The unit ID for banner ads within articles.';
11231123

11241124
@override
11251125
String get inArticleAdSlotTypeBelowMainArticleImage =>

lib/l10n/arb/app_ar.arb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1366,7 +1366,7 @@
13661366
"@feedNativeAdIdLabel": {
13671367
"description": "تسمية حقل إدخال معرف الإعلان الأصلي للموجز"
13681368
},
1369-
"feedNativeAdIdDescription": "معرف وحدة AdMob للإعلانات الأصلية في الموجز.",
1369+
"feedNativeAdIdDescription": "معرف وحدة الإعلانات الأصلية في الموجز.",
13701370
"@feedNativeAdIdDescription": {
13711371
"description": "وصف حقل إدخال معرف الإعلان الأصلي للموجز"
13721372
},
@@ -1382,23 +1382,23 @@
13821382
"@articleInterstitialAdIdLabel": {
13831383
"description": "تسمية حقل إدخال معرف الإعلان البيني للمقالات"
13841384
},
1385-
"articleInterstitialAdIdDescription": "معرف وحدة AdMob للإعلانات البينية في المقالات.",
1385+
"articleInterstitialAdIdDescription": "معرف وحدة الإعلانات البينية في المقالات.",
13861386
"@articleInterstitialAdIdDescription": {
13871387
"description": "وصف حقل إدخال معرف الإعلان البيني للمقالات"
13881388
},
13891389
"inArticleNativeAdIdLabel": "معرف الإعلان الأصلي داخل المقال",
13901390
"@inArticleNativeAdIdLabel": {
13911391
"description": "تسمية حقل إدخال معرف الإعلان الأصلي داخل المقال"
13921392
},
1393-
"inArticleNativeAdIdDescription": "معرف وحدة AdMob للإعلانات الأصلية داخل المقالات.",
1393+
"inArticleNativeAdIdDescription": "معرف وحدة الإعلانات الأصلية داخل المقالات.",
13941394
"@inArticleNativeAdIdDescription": {
13951395
"description": "وصف حقل إدخال معرف الإعلان الأصلي داخل المقال"
13961396
},
13971397
"inArticleBannerAdIdLabel": "معرف إعلان البانر داخل المقال",
13981398
"@inArticleBannerAdIdLabel": {
13991399
"description": "تسمية حقل إدخال معرف إعلان البانر داخل المقال"
14001400
},
1401-
"inArticleBannerAdIdDescription": "معرف وحدة AdMob لإعلانات البانر داخل المقالات.",
1401+
"inArticleBannerAdIdDescription": "معرف وحدة إعلانات البانر داخل المقالات.",
14021402
"@inArticleBannerAdIdDescription": {
14031403
"description": "وصف حقل إدخال معرف إعلان البانر داخل المقال"
14041404
},

lib/l10n/arb/app_en.arb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1362,39 +1362,39 @@
13621362
"@feedNativeAdIdLabel": {
13631363
"description": "Label for the Feed Native Ad ID input field"
13641364
},
1365-
"feedNativeAdIdDescription": "The AdMob unit ID for native ads in the feed.",
1365+
"feedNativeAdIdDescription": "The unit ID for native ads in the feed.",
13661366
"@feedNativeAdIdDescription": {
13671367
"description": "Description for the Feed Native Ad ID input field"
13681368
},
13691369
"feedBannerAdIdLabel": "Feed Banner Ad ID",
13701370
"@feedBannerAdIdLabel": {
13711371
"description": "Label for the Feed Banner Ad ID input field"
13721372
},
1373-
"feedBannerAdIdDescription": "The AdMob unit ID for banner ads in the feed.",
1373+
"feedBannerAdIdDescription": "The unit ID for banner ads in the feed.",
13741374
"@feedBannerAdIdDescription": {
13751375
"description": "Description for the Feed Banner Ad ID input field"
13761376
},
13771377
"articleInterstitialAdIdLabel": "Article Interstitial Ad ID",
13781378
"@articleInterstitialAdIdLabel": {
13791379
"description": "Label for the Article Interstitial Ad ID input field"
13801380
},
1381-
"articleInterstitialAdIdDescription": "The AdMob unit ID for interstitial ads in articles.",
1381+
"articleInterstitialAdIdDescription": "The unit ID for interstitial ads in articles.",
13821382
"@articleInterstitialAdIdDescription": {
13831383
"description": "Description for the Article Interstitial Ad ID input field"
13841384
},
13851385
"inArticleNativeAdIdLabel": "In-Article Native Ad ID",
13861386
"@inArticleNativeAdIdLabel": {
13871387
"description": "Label for the In-Article Native Ad ID input field"
13881388
},
1389-
"inArticleNativeAdIdDescription": "The AdMob unit ID for native ads within articles.",
1389+
"inArticleNativeAdIdDescription": "The unit ID for native ads within articles.",
13901390
"@inArticleNativeAdIdDescription": {
13911391
"description": "Description for the In-Article Native Ad ID input field"
13921392
},
13931393
"inArticleBannerAdIdLabel": "In-Article Banner Ad ID",
13941394
"@inArticleBannerAdIdLabel": {
13951395
"description": "Label for the In-Article Banner Ad ID input field"
13961396
},
1397-
"inArticleBannerAdIdDescription": "The AdMob unit ID for banner ads within articles.",
1397+
"inArticleBannerAdIdDescription": "The unit ID for banner ads within articles.",
13981398
"@inArticleBannerAdIdDescription": {
13991399
"description": "Description for the In-Article Banner Ad ID input field"
14001400
},

0 commit comments

Comments
 (0)