From 6c20a4c08b7d29498111a6ddacce8d3621c979d6 Mon Sep 17 00:00:00 2001 From: McLoo Date: Sat, 13 Jun 2015 23:16:02 +0200 Subject: [PATCH] Change 'Title' to 'Group name' in group update message closes #3424 //FREEBIE --- res/values/strings.xml | 2 +- src/org/thoughtcrime/securesms/util/GroupUtil.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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) {