Skip to content

Commit ca3f497

Browse files
committed
feat(l10n): add retry button text translations
- Add Arabic and English translations for "retry" button text - Include descriptions for new translation keys
1 parent 78a3337 commit ca3f497

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1681,6 +1681,12 @@ abstract class AppLocalizations {
16811681
/// In en, this message translates to:
16821682
/// **'Ads help keep this app free !'**
16831683
String get adInfoPlaceholderText;
1684+
1685+
/// Text for a button that allows the user to retry a failed operation.
1686+
///
1687+
/// In en, this message translates to:
1688+
/// **'Retry'**
1689+
String get retryButtonText;
16841690
}
16851691

16861692
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -877,4 +877,7 @@ class AppLocalizationsAr extends AppLocalizations {
877877
@override
878878
String get adInfoPlaceholderText =>
879879
'الإعلانات تساعد في إبقاء هذا التطبيق مجانيًا.';
880+
881+
@override
882+
String get retryButtonText => 'إعادة المحاولة';
880883
}

lib/l10n/app_localizations_en.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -879,4 +879,7 @@ class AppLocalizationsEn extends AppLocalizations {
879879

880880
@override
881881
String get adInfoPlaceholderText => 'Ads help keep this app free !';
882+
883+
@override
884+
String get retryButtonText => 'Retry';
882885
}

lib/l10n/arb/app_ar.arb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,5 +1144,9 @@
11441144
"adInfoPlaceholderText": "الإعلانات تساعد في إبقاء هذا التطبيق مجانيًا.",
11451145
"@adInfoPlaceholderText": {
11461146
"description": "رسالة معروضة في خانات الإعلانات عند تحميل الإعلانات أو فشلها، تشرح الغرض منها."
1147+
},
1148+
"retryButtonText": "إعادة المحاولة",
1149+
"@retryButtonText": {
1150+
"description": "Text for a button that allows the user to retry a failed operation."
11471151
}
11481152
}

lib/l10n/arb/app_en.arb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1144,5 +1144,9 @@
11441144
"adInfoPlaceholderText": "Ads help keep this app free !",
11451145
"@adInfoPlaceholderText": {
11461146
"description": "Message displayed in ad slots when ads are loading or fail to load, explaining their purpose."
1147+
},
1148+
"retryButtonText": "Retry",
1149+
"@retryButtonText": {
1150+
"description": "Text for a button that allows the user to retry a failed operation."
11471151
}
11481152
}

0 commit comments

Comments
 (0)