Change 'Title' to 'Group name' in group update message

closes #3424
//FREEBIE
pull/1/head
McLoo 9 years ago committed by Moxie Marlinspike
parent 8fc690d8e0
commit 6c20a4c08b

@ -691,7 +691,7 @@
<!-- GroupUtil -->
<string name="GroupUtil_joined_the_group">%1$s joined the group.</string>
<string name="GroupUtil_group_updated">Group updated.</string>
<string name="GroupUtil_title_is_now">Title is now \'%1$s\'.</string>
<string name="GroupUtil_group_name_is_now">Group name is now \'%1$s\'.</string>
<!-- prompt_passphrase_activity -->
<string name="prompt_passphrase_activity__unlock">Unlock</string>

@ -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) {

Loading…
Cancel
Save