Skip to content

Commit 1e8397b

Browse files
committed
msglist: Update label to "Messages with yourself" in DM header
Related CZO Discussion: https://chat.zulip.org/#narrow/channel/137-feedback/topic/Chat.20with.20myself/with/2086462 Fixes: #1319
1 parent 9aafbd4 commit 1e8397b

File tree

8 files changed

+7
-8
lines changed

8 files changed

+7
-8
lines changed

assets/l10n/app_en.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@
404404
"others": {"type": "String", "example": "Alice, Bob"}
405405
}
406406
},
407-
"messageListGroupYouWithYourself": "You with yourself",
407+
"messageListGroupYouWithYourself": "Messages with yourself",
408408
"@messageListGroupYouWithYourself": {
409409
"description": "Message list recipient header for a DM group that only includes yourself."
410410
},

lib/generated/l10n/zulip_localizations.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ abstract class ZulipLocalizations {
630630
/// Message list recipient header for a DM group that only includes yourself.
631631
///
632632
/// In en, this message translates to:
633-
/// **'You with yourself'**
633+
/// **'Messages with yourself'**
634634
String get messageListGroupYouWithYourself;
635635

636636
/// Content validation error message when the message is too long.

lib/generated/l10n/zulip_localizations_ar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
316316
}
317317

318318
@override
319-
String get messageListGroupYouWithYourself => 'You with yourself';
319+
String get messageListGroupYouWithYourself => 'Messages with yourself';
320320

321321
@override
322322
String get contentValidationErrorTooLong => 'Message length shouldn\'t be greater than 10000 characters.';

lib/generated/l10n/zulip_localizations_en.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
316316
}
317317

318318
@override
319-
String get messageListGroupYouWithYourself => 'You with yourself';
319+
String get messageListGroupYouWithYourself => 'Messages with yourself';
320320

321321
@override
322322
String get contentValidationErrorTooLong => 'Message length shouldn\'t be greater than 10000 characters.';

lib/generated/l10n/zulip_localizations_ja.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
316316
}
317317

318318
@override
319-
String get messageListGroupYouWithYourself => 'You with yourself';
319+
String get messageListGroupYouWithYourself => 'Messages with yourself';
320320

321321
@override
322322
String get contentValidationErrorTooLong => 'Message length shouldn\'t be greater than 10000 characters.';

lib/generated/l10n/zulip_localizations_nb.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ class ZulipLocalizationsNb extends ZulipLocalizations {
316316
}
317317

318318
@override
319-
String get messageListGroupYouWithYourself => 'You with yourself';
319+
String get messageListGroupYouWithYourself => 'Messages with yourself';
320320

321321
@override
322322
String get contentValidationErrorTooLong => 'Message length shouldn\'t be greater than 10000 characters.';

lib/generated/l10n/zulip_localizations_sk.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ class ZulipLocalizationsSk extends ZulipLocalizations {
316316
}
317317

318318
@override
319-
String get messageListGroupYouWithYourself => 'You with yourself';
319+
String get messageListGroupYouWithYourself => 'Messages with yourself';
320320

321321
@override
322322
String get contentValidationErrorTooLong => 'Message length shouldn\'t be greater than 10000 characters.';

lib/widgets/message_list.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1179,7 +1179,6 @@ class DmRecipientHeader extends StatelessWidget {
11791179
.sorted()
11801180
.join(", "));
11811181
} else {
1182-
// TODO pick string; web has glitchy "You and $yourname"
11831182
title = zulipLocalizations.messageListGroupYouWithYourself;
11841183
}
11851184

0 commit comments

Comments
 (0)