Skip to content

Commit b454281

Browse files
committed
build(l10n): sync
1 parent f8d3b92 commit b454281

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2995,6 +2995,12 @@ abstract class AppLocalizations {
29952995
/// In en, this message translates to:
29962996
/// **'Sign in to join the conversation'**
29972997
String get commentInputDisabledHint;
2998+
2999+
/// Hint text for the comment input field when the user has already posted a comment.
3000+
///
3001+
/// In en, this message translates to:
3002+
/// **'You have already commented on this headline.'**
3003+
String get commentInputExistingHint;
29983004
}
29993005

30003006
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1593,4 +1593,7 @@ class AppLocalizationsAr extends AppLocalizations {
15931593

15941594
@override
15951595
String get commentInputDisabledHint => 'سجل الدخول للانضمام إلى المحادثة';
1596+
1597+
@override
1598+
String get commentInputExistingHint => 'لقد علقت بالفعل على هذا العنوان.';
15961599
}

lib/l10n/app_localizations_en.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1596,4 +1596,8 @@ class AppLocalizationsEn extends AppLocalizations {
15961596

15971597
@override
15981598
String get commentInputDisabledHint => 'Sign in to join the conversation';
1599+
1600+
@override
1601+
String get commentInputExistingHint =>
1602+
'You have already commented on this headline.';
15991603
}

0 commit comments

Comments
 (0)