mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-02 22:45:17 +00:00
parent
d1b8e77fdc
commit
06ea000f42
@ -243,13 +243,8 @@ public class IdentityUtil {
|
|||||||
if (recipients.size() == 2) {
|
if (recipients.size() == 2) {
|
||||||
return context.getString(resourceTwo, firstName, secondName);
|
return context.getString(resourceTwo, firstName, secondName);
|
||||||
} else {
|
} else {
|
||||||
String nMore;
|
int othersCount = recipients.size() - 2;
|
||||||
|
String nMore = context.getResources().getQuantityString(R.plurals.identity_others, othersCount, othersCount);
|
||||||
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);
|
|
||||||
}
|
|
||||||
|
|
||||||
return context.getString(resourceMany, firstName, secondName, nMore);
|
return context.getString(resourceMany, firstName, secondName, nMore);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user