Skip to content

Commit 0e750c5

Browse files
committed
build(l10n): sync
1 parent ef548f5 commit 0e750c5

File tree

3 files changed

+76
-10
lines changed

3 files changed

+76
-10
lines changed

lib/l10n/app_localizations.dart

Lines changed: 35 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3272,17 +3272,17 @@ abstract class AppLocalizations {
32723272
/// **'Activates the internal system that periodically asks users if they are enjoying the app.'**
32733273
String get enableAppFeedbackSystemDescription;
32743274

3275-
/// Label for the positive interaction threshold input field.
3275+
/// Label for the interaction cycle threshold input field.
32763276
///
32773277
/// In en, this message translates to:
3278-
/// **'Positive Interaction Threshold'**
3279-
String get positiveInteractionThresholdLabel;
3278+
/// **'Interaction Cycle Threshold'**
3279+
String get interactionCycleThresholdLabel;
32803280

3281-
/// Description for the positive interaction threshold input field.
3281+
/// Description for the interaction cycle threshold input field.
32823282
///
32833283
/// In en, this message translates to:
32843284
/// **'Defines the number of positive actions (e.g., save, like) required to trigger the enjoyment prompt. The prompt is shown each time the user\'s total positive actions is a multiple of this number.'**
3285-
String get positiveInteractionThresholdDescription;
3285+
String get interactionCycleThresholdDescription;
32863286

32873287
/// Label for the initial prompt cooldown input field.
32883288
///
@@ -3326,6 +3326,36 @@ abstract class AppLocalizations {
33263326
/// **'Internal Prompt Logic'**
33273327
String get internalPromptLogicTitle;
33283328

3329+
/// Title for the expansion tile for eligible positive interactions.
3330+
///
3331+
/// In en, this message translates to:
3332+
/// **'Eligible Positive Interactions'**
3333+
String get eligiblePositiveInteractionsTitle;
3334+
3335+
/// Label for the 'save item' positive interaction type.
3336+
///
3337+
/// In en, this message translates to:
3338+
/// **'Save a content item (e.g., a headline)'**
3339+
String get positiveInteractionTypeSaveItem;
3340+
3341+
/// Label for the 'follow item' positive interaction type.
3342+
///
3343+
/// In en, this message translates to:
3344+
/// **'Follow an entity (e.g., a topic, source, or country)'**
3345+
String get positiveInteractionTypeFollowItem;
3346+
3347+
/// Label for the 'share content' positive interaction type.
3348+
///
3349+
/// In en, this message translates to:
3350+
/// **'Share a content item (e.g., a headline)'**
3351+
String get positiveInteractionTypeShareContent;
3352+
3353+
/// Label for the 'save filter' positive interaction type.
3354+
///
3355+
/// In en, this message translates to:
3356+
/// **'Create a saved filter'**
3357+
String get positiveInteractionTypeSaveFilter;
3358+
33293359
/// Title for the nested expansion tile for app review follow-up actions.
33303360
///
33313361
/// In en, this message translates to:

lib/l10n/app_localizations_ar.dart

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1763,10 +1763,10 @@ class AppLocalizationsAr extends AppLocalizations {
17631763
'ينشط النظام الداخلي الذي يسأل المستخدمين بشكل دوري عما إذا كانوا يستمتعون بالتطبيق.';
17641764

17651765
@override
1766-
String get positiveInteractionThresholdLabel => 'عتبة التفاعل الإيجابي';
1766+
String get interactionCycleThresholdLabel => 'عتبة دورة التفاعل';
17671767

17681768
@override
1769-
String get positiveInteractionThresholdDescription =>
1769+
String get interactionCycleThresholdDescription =>
17701770
'يحدد عدد الإجراءات الإيجابية (مثل الحفظ، الإعجاب) المطلوبة لتشغيل موجه الاستمتاع. يظهر الموجه في كل مرة يكون فيها إجمالي الإجراءات الإيجابية للمستخدم من مضاعفات هذا الرقم.';
17711771

17721772
@override
@@ -1793,6 +1793,24 @@ class AppLocalizationsAr extends AppLocalizations {
17931793
@override
17941794
String get internalPromptLogicTitle => 'منطق الموجه الداخلي';
17951795

1796+
@override
1797+
String get eligiblePositiveInteractionsTitle => 'التفاعلات الإيجابية المؤهلة';
1798+
1799+
@override
1800+
String get positiveInteractionTypeSaveItem =>
1801+
'حفظ عنصر محتوى (مثل عنوان رئيسي)';
1802+
1803+
@override
1804+
String get positiveInteractionTypeFollowItem =>
1805+
'متابعة كيان (مثل موضوع أو مصدر أو بلد)';
1806+
1807+
@override
1808+
String get positiveInteractionTypeShareContent =>
1809+
'مشاركة عنصر محتوى (مثل عنوان رئيسي)';
1810+
1811+
@override
1812+
String get positiveInteractionTypeSaveFilter => 'إنشاء مرشح محفوظ';
1813+
17961814
@override
17971815
String get followUpActionsTitle => 'إجراءات المتابعة';
17981816

lib/l10n/app_localizations_en.dart

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1766,11 +1766,10 @@ class AppLocalizationsEn extends AppLocalizations {
17661766
'Activates the internal system that periodically asks users if they are enjoying the app.';
17671767

17681768
@override
1769-
String get positiveInteractionThresholdLabel =>
1770-
'Positive Interaction Threshold';
1769+
String get interactionCycleThresholdLabel => 'Interaction Cycle Threshold';
17711770

17721771
@override
1773-
String get positiveInteractionThresholdDescription =>
1772+
String get interactionCycleThresholdDescription =>
17741773
'Defines the number of positive actions (e.g., save, like) required to trigger the enjoyment prompt. The prompt is shown each time the user\'s total positive actions is a multiple of this number.';
17751774

17761775
@override
@@ -1798,6 +1797,25 @@ class AppLocalizationsEn extends AppLocalizations {
17981797
@override
17991798
String get internalPromptLogicTitle => 'Internal Prompt Logic';
18001799

1800+
@override
1801+
String get eligiblePositiveInteractionsTitle =>
1802+
'Eligible Positive Interactions';
1803+
1804+
@override
1805+
String get positiveInteractionTypeSaveItem =>
1806+
'Save a content item (e.g., a headline)';
1807+
1808+
@override
1809+
String get positiveInteractionTypeFollowItem =>
1810+
'Follow an entity (e.g., a topic, source, or country)';
1811+
1812+
@override
1813+
String get positiveInteractionTypeShareContent =>
1814+
'Share a content item (e.g., a headline)';
1815+
1816+
@override
1817+
String get positiveInteractionTypeSaveFilter => 'Create a saved filter';
1818+
18011819
@override
18021820
String get followUpActionsTitle => 'Follow-up Actions';
18031821

0 commit comments

Comments
 (0)