mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-07-09 06:44:11 +01:00
Show "you" instead of "me" in the group members list
This commit is contained in:
committed by
Scott Nonnenberg
parent
12457d47a3
commit
31f219690a
@@ -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"
|
||||
|
||||
@@ -55,7 +55,7 @@ export class ContactListItem extends React.Component<Props> {
|
||||
} = this.props;
|
||||
|
||||
const title = name ? name : phoneNumber;
|
||||
const displayName = isMe ? i18n('me') : title;
|
||||
const displayName = isMe ? i18n('you') : title;
|
||||
|
||||
const profileElement =
|
||||
!isMe && profileName && !name ? (
|
||||
|
||||
Reference in New Issue
Block a user