mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 04:25:18 +00:00
parent
d1b8e77fdc
commit
06ea000f42
@ -243,13 +243,8 @@ public class IdentityUtil {
|
||||
if (recipients.size() == 2) {
|
||||
return context.getString(resourceTwo, firstName, secondName);
|
||||
} else {
|
||||
String nMore;
|
||||
|
||||
if (recipients.size() == 3) {
|
||||
nMore = context.getResources().getQuantityString(R.plurals.identity_others, 1);
|
||||
} else {
|
||||
nMore = context.getResources().getQuantityString(R.plurals.identity_others, recipients.size() - 2);
|
||||
}
|
||||
int othersCount = recipients.size() - 2;
|
||||
String nMore = context.getResources().getQuantityString(R.plurals.identity_others, othersCount, othersCount);
|
||||
|
||||
return context.getString(resourceMany, firstName, secondName, nMore);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user