Skip to content

Commit a35f3cd

Browse files
committed
i18n: Translate a "You" string
This renames notifSelfUser to make it more general. Signed-off-by: Zixuan James Li <[email protected]>
1 parent 2a2c6b5 commit a35f3cd

11 files changed

+14
-14
lines changed

assets/l10n/app_en.arb

+3-3
Original file line numberDiff line numberDiff line change
@@ -664,9 +664,9 @@
664664
"@noSubscriptions": {
665665
"description": "Text to display when there are no subscribed channels."
666666
},
667-
"notifSelfUser": "You",
668-
"@notifSelfUser": {
669-
"description": "Display name for the user themself, to show after replying in an Android notification"
667+
"selfUser": "You",
668+
"@selfUser": {
669+
"description": "Display name for the user themself, to show after replying in an Android notification or on an emoji reaction added by themself."
670670
},
671671
"onePersonTyping": "{typist} is typing…",
672672
"@onePersonTyping": {

lib/generated/l10n/zulip_localizations.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -985,11 +985,11 @@ abstract class ZulipLocalizations {
985985
/// **'No channels found'**
986986
String get noSubscriptions;
987987

988-
/// Display name for the user themself, to show after replying in an Android notification
988+
/// Display name for the user themself, to show after replying in an Android notification or on an emoji reaction added by themself.
989989
///
990990
/// In en, this message translates to:
991991
/// **'You'**
992-
String get notifSelfUser;
992+
String get selfUser;
993993

994994
/// Text to display when there is one user typing.
995995
///

lib/generated/l10n/zulip_localizations_ar.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
526526
String get noSubscriptions => 'No channels found';
527527

528528
@override
529-
String get notifSelfUser => 'You';
529+
String get selfUser => 'You';
530530

531531
@override
532532
String onePersonTyping(String typist) {

lib/generated/l10n/zulip_localizations_en.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
526526
String get noSubscriptions => 'No channels found';
527527

528528
@override
529-
String get notifSelfUser => 'You';
529+
String get selfUser => 'You';
530530

531531
@override
532532
String onePersonTyping(String typist) {

lib/generated/l10n/zulip_localizations_fr.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ class ZulipLocalizationsFr extends ZulipLocalizations {
526526
String get noSubscriptions => 'No channels found';
527527

528528
@override
529-
String get notifSelfUser => 'You';
529+
String get selfUser => 'You';
530530

531531
@override
532532
String onePersonTyping(String typist) {

lib/generated/l10n/zulip_localizations_ja.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
526526
String get noSubscriptions => 'No channels found';
527527

528528
@override
529-
String get notifSelfUser => 'You';
529+
String get selfUser => 'You';
530530

531531
@override
532532
String onePersonTyping(String typist) {

lib/generated/l10n/zulip_localizations_pl.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ class ZulipLocalizationsPl extends ZulipLocalizations {
526526
String get noSubscriptions => 'No channels found';
527527

528528
@override
529-
String get notifSelfUser => 'Ty';
529+
String get selfUser => 'You';
530530

531531
@override
532532
String onePersonTyping(String typist) {

lib/generated/l10n/zulip_localizations_ru.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ class ZulipLocalizationsRu extends ZulipLocalizations {
526526
String get noSubscriptions => 'No channels found';
527527

528528
@override
529-
String get notifSelfUser => 'You';
529+
String get selfUser => 'You';
530530

531531
@override
532532
String onePersonTyping(String typist) {

lib/notifications/display.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ class NotificationDisplayManager {
247247
messagingStyle = MessagingStyle(
248248
user: Person(
249249
key: _personKey(data.realmUrl, data.userId),
250-
name: zulipLocalizations.notifSelfUser),
250+
name: zulipLocalizations.selfUser),
251251
messages: [],
252252
isGroupConversation: switch (data.recipient) {
253253
FcmMessageChannelRecipient() => true,

lib/widgets/emoji_reaction.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ class ReactionChip extends StatelessWidget {
163163
// // 'Chris、Greg、Alya、Shu'
164164
? userIds.map((id) {
165165
return id == store.selfUserId
166-
? 'You'
166+
? zulipLocalizations.selfUser
167167
: store.users[id]?.fullName ?? zulipLocalizations.unknownUserName;
168168
}).join(', ')
169169
: userIds.length.toString();

test/notifications/display_test.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ void main() {
380380
..user.which((it) => it
381381
..iconBitmap.isNull()
382382
..key.equals(expectedSelfUserKey)
383-
..name.equals(zulipLocalizations.notifSelfUser))
383+
..name.equals(zulipLocalizations.selfUser))
384384
..isGroupConversation.equals(expectedIsGroupConversation)
385385
..conversationTitle.equals(expectedTitle)
386386
..messages.deepEquals(messageStyleMessagesChecks))

0 commit comments

Comments
 (0)