From 31f219690a6e2e100e868d2a5161a08a2ed06dd4 Mon Sep 17 00:00:00 2001 From: Ken Powers Date: Mon, 9 Mar 2020 16:56:11 -0400 Subject: [PATCH] Show "you" instead of "me" in the group members list --- _locales/en/messages.json | 4 ---- ts/components/ContactListItem.tsx | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 9d5e24685..192a8bd20 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -255,10 +255,6 @@ } } }, - "me": { - "message": "Me", - "description": "The label for yourself when shown in a group member list" - }, "view": { "message": "View", "description": "Used as a label on a button allowing user to see more information" diff --git a/ts/components/ContactListItem.tsx b/ts/components/ContactListItem.tsx index 3754ca5b8..0290ef80e 100644 --- a/ts/components/ContactListItem.tsx +++ b/ts/components/ContactListItem.tsx @@ -55,7 +55,7 @@ export class ContactListItem extends React.Component { } = this.props; const title = name ? name : phoneNumber; - const displayName = isMe ? i18n('me') : title; + const displayName = isMe ? i18n('you') : title; const profileElement = !isMe && profileName && !name ? (