Skip to content

Commit 36b64cb

Browse files
committed
feat(l10n): Add feed action types to localization
- Added "Link Account" - Added "Rate App" - Added "Follow Topics" - Added "Follow Sources" - Added "Enable Notifications"
1 parent efb3484 commit 36b64cb

File tree

5 files changed

+121
-1
lines changed

5 files changed

+121
-1
lines changed

lib/l10n/app_localizations.dart

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1573,6 +1573,42 @@ abstract class AppLocalizations {
15731573
/// In en, this message translates to:
15741574
/// **'Retry'**
15751575
String get retryButtonText;
1576+
1577+
/// Feed action type for linking an account
1578+
///
1579+
/// In en, this message translates to:
1580+
/// **'Link Account'**
1581+
String get feedActionTypeLinkAccount;
1582+
1583+
/// Feed action type for rating the app
1584+
///
1585+
/// In en, this message translates to:
1586+
/// **'Rate App'**
1587+
String get feedActionTypeRateApp;
1588+
1589+
/// Feed action type for following topics
1590+
///
1591+
/// In en, this message translates to:
1592+
/// **'Follow Topics'**
1593+
String get feedActionTypeFollowTopics;
1594+
1595+
/// Feed action type for following sources
1596+
///
1597+
/// In en, this message translates to:
1598+
/// **'Follow Sources'**
1599+
String get feedActionTypeFollowSources;
1600+
1601+
/// Feed action type for upgrading
1602+
///
1603+
/// In en, this message translates to:
1604+
/// **'Upgrade'**
1605+
String get feedActionTypeUpgrade;
1606+
1607+
/// Feed action type for enabling notifications
1608+
///
1609+
/// In en, this message translates to:
1610+
/// **'Enable Notifications'**
1611+
String get feedActionTypeEnableNotifications;
15761612
}
15771613

15781614
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -829,4 +829,22 @@ class AppLocalizationsAr extends AppLocalizations {
829829

830830
@override
831831
String get retryButtonText => 'إعادة المحاولة';
832+
833+
@override
834+
String get feedActionTypeLinkAccount => 'ربط الحساب';
835+
836+
@override
837+
String get feedActionTypeRateApp => 'تقييم التطبيق';
838+
839+
@override
840+
String get feedActionTypeFollowTopics => 'متابعة المواضيع';
841+
842+
@override
843+
String get feedActionTypeFollowSources => 'متابعة المصادر';
844+
845+
@override
846+
String get feedActionTypeUpgrade => 'ترقية';
847+
848+
@override
849+
String get feedActionTypeEnableNotifications => 'تفعيل الإشعارات';
832850
}

lib/l10n/app_localizations_en.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -828,4 +828,22 @@ class AppLocalizationsEn extends AppLocalizations {
828828

829829
@override
830830
String get retryButtonText => 'Retry';
831+
832+
@override
833+
String get feedActionTypeLinkAccount => 'Link Account';
834+
835+
@override
836+
String get feedActionTypeRateApp => 'Rate App';
837+
838+
@override
839+
String get feedActionTypeFollowTopics => 'Follow Topics';
840+
841+
@override
842+
String get feedActionTypeFollowSources => 'Follow Sources';
843+
844+
@override
845+
String get feedActionTypeUpgrade => 'Upgrade';
846+
847+
@override
848+
String get feedActionTypeEnableNotifications => 'Enable Notifications';
831849
}

lib/l10n/arb/app_ar.arb

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1018,5 +1018,29 @@
10181018
"retryButtonText": "إعادة المحاولة",
10191019
"@retryButtonText": {
10201020
"description": "نص زر إعادة المحاولة"
1021+
},
1022+
"feedActionTypeLinkAccount": "ربط الحساب",
1023+
"@feedActionTypeLinkAccount": {
1024+
"description": "نوع إجراء الموجز لربط حساب"
1025+
},
1026+
"feedActionTypeRateApp": "تقييم التطبيق",
1027+
"@feedActionTypeRateApp": {
1028+
"description": "نوع إجراء الموجز لتقييم التطبيق"
1029+
},
1030+
"feedActionTypeFollowTopics": "متابعة المواضيع",
1031+
"@feedActionTypeFollowTopics": {
1032+
"description": "نوع إجراء الموجز لمتابعة المواضيع"
1033+
},
1034+
"feedActionTypeFollowSources": "متابعة المصادر",
1035+
"@feedActionTypeFollowSources": {
1036+
"description": "نوع إجراء الموجز لمتابعة المصادر"
1037+
},
1038+
"feedActionTypeUpgrade": "ترقية",
1039+
"@feedActionTypeUpgrade": {
1040+
"description": "نوع إجراء الموجز للترقية"
1041+
},
1042+
"feedActionTypeEnableNotifications": "تفعيل الإشعارات",
1043+
"@feedActionTypeEnableNotifications": {
1044+
"description": "نوع إجراء الموجز لتفعيل الإشعارات"
10211045
}
10221046
}

lib/l10n/arb/app_en.arb

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,5 +1018,29 @@
10181018
"retryButtonText": "Retry",
10191019
"@retryButtonText": {
10201020
"description": "Text for the retry button"
1021+
},
1022+
"feedActionTypeLinkAccount": "Link Account",
1023+
"@feedActionTypeLinkAccount": {
1024+
"description": "Feed action type for linking an account"
1025+
},
1026+
"feedActionTypeRateApp": "Rate App",
1027+
"@feedActionTypeRateApp": {
1028+
"description": "Feed action type for rating the app"
1029+
},
1030+
"feedActionTypeFollowTopics": "Follow Topics",
1031+
"@feedActionTypeFollowTopics": {
1032+
"description": "Feed action type for following topics"
1033+
},
1034+
"feedActionTypeFollowSources": "Follow Sources",
1035+
"@feedActionTypeFollowSources": {
1036+
"description": "Feed action type for following sources"
1037+
},
1038+
"feedActionTypeUpgrade": "Upgrade",
1039+
"@feedActionTypeUpgrade": {
1040+
"description": "Feed action type for upgrading"
1041+
},
1042+
"feedActionTypeEnableNotifications": "Enable Notifications",
1043+
"@feedActionTypeEnableNotifications": {
1044+
"description": "Feed action type for enabling notifications"
10211045
}
1022-
}
1046+
}

0 commit comments

Comments
 (0)