Refer to yourself as 'you' in reactions and group membership.

This commit is contained in:
Greyson Parrelli
2020-02-20 00:41:14 -05:00
parent 9e5f64c431
commit fda8f3e1ce
3 changed files with 7 additions and 3 deletions

View File

@@ -102,7 +102,7 @@ public class GroupMembersDialog extends AsyncTask<Void, Void, List<Recipient>> {
for (Recipient recipient : members) {
if (recipient.isLocalNumber()) {
recipientStrings.add(context.getString(R.string.GroupMembersDialog_me));
recipientStrings.add(context.getString(R.string.GroupMembersDialog_you));
} else {
String name = getRecipientName(recipient);
recipientStrings.add(name);