diff --git a/res/values/strings.xml b/res/values/strings.xml
index d0f029742e..05977fb663 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -690,7 +690,10 @@
The text entered was not a valid host
- %1$s joined the group.
+
+ - %1$s joined the group.
+ - %1$s joined the group.
+
Group updated.
Group name is now \'%1$s\'.
diff --git a/src/org/thoughtcrime/securesms/util/GroupUtil.java b/src/org/thoughtcrime/securesms/util/GroupUtil.java
index c4075276ea..fb7095ffbe 100644
--- a/src/org/thoughtcrime/securesms/util/GroupUtil.java
+++ b/src/org/thoughtcrime/securesms/util/GroupUtil.java
@@ -74,7 +74,8 @@ public class GroupUtil {
String title = groupContext.getName();
if (members != null) {
- description.append(context.getString(R.string.GroupUtil_joined_the_group, members.toShortString()));
+ description.append(context.getResources().getQuantityString(R.plurals.GroupUtil_joined_the_group,
+ members.getRecipientsList().size(), members.toShortString()));
}
if (title != null && !title.trim().isEmpty()) {