We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6db5c0 commit f463551Copy full SHA for f463551
assets/l10n/app_en.arb
@@ -479,5 +479,9 @@
479
"senderFullName": {"type": "String", "example": "Alice"},
480
"numOthers": {"type": "int", "example": "4"}
481
}
482
+ },
483
+ "notifSelfUser": "You",
484
+ "@notifSelfUser": {
485
+ "description": "Display name for the user themself, to show after replying in an Android notification"
486
487
lib/notifications/display.dart
@@ -108,7 +108,7 @@ class NotificationDisplayManager {
108
messagingStyle = MessagingStyle(
109
user: Person(
110
key: _personKey(data.realmUri, data.userId),
111
- name: 'You'), // TODO(i18n)
+ name: zulipLocalizations.notifSelfUser),
112
messages: [],
113
isGroupConversation: switch (data.recipient) {
114
FcmMessageStreamRecipient() => true,
0 commit comments