diff --git a/res/values/strings.xml b/res/values/strings.xml
index 66282017a8..dc7c08fd38 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -691,7 +691,7 @@
%1$s joined the group.
Group updated.
- Title is now \'%1$s\'.
+ Group name is now \'%1$s\'.
Unlock
diff --git a/src/org/thoughtcrime/securesms/util/GroupUtil.java b/src/org/thoughtcrime/securesms/util/GroupUtil.java
index 440267cebc..c4075276ea 100644
--- a/src/org/thoughtcrime/securesms/util/GroupUtil.java
+++ b/src/org/thoughtcrime/securesms/util/GroupUtil.java
@@ -79,7 +79,7 @@ public class GroupUtil {
if (title != null && !title.trim().isEmpty()) {
if (description.length() > 0) description.append(" ");
- description.append(context.getString(R.string.GroupUtil_title_is_now, title));
+ description.append(context.getString(R.string.GroupUtil_group_name_is_now, title));
}
if (description.length() > 0) {