Skip to content

Commit 74bf191

Browse files
committed
build(l10n): sync
1 parent 8050e87 commit 74bf191

File tree

3 files changed

+16
-0
lines changed

3 files changed

+16
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3001,6 +3001,12 @@ abstract class AppLocalizations {
30013001
/// In en, this message translates to:
30023002
/// **'You have already commented on this headline.'**
30033003
String get commentInputExistingHint;
3004+
3005+
/// Display name for a commenter when their full user object is not available, showing a partial ID.
3006+
///
3007+
/// In en, this message translates to:
3008+
/// **'User {id}'**
3009+
String commenterName(String id);
30043010
}
30053011

30063012
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

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

15971597
@override
15981598
String get commentInputExistingHint => 'لقد علقت بالفعل على هذا العنوان.';
1599+
1600+
@override
1601+
String commenterName(String id) {
1602+
return 'مستخدم $id';
1603+
}
15991604
}

lib/l10n/app_localizations_en.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1600,4 +1600,9 @@ class AppLocalizationsEn extends AppLocalizations {
16001600
@override
16011601
String get commentInputExistingHint =>
16021602
'You have already commented on this headline.';
1603+
1604+
@override
1605+
String commenterName(String id) {
1606+
return 'User $id';
1607+
}
16031608
}

0 commit comments

Comments
 (0)