Change 'Title' to 'Group name' in group update message
closes #3424 //FREEBIE
This commit is contained in:
parent
8fc690d8e0
commit
6c20a4c08b
2 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue