From: Roland Häder Date: Thu, 17 May 2018 00:23:20 +0000 (+0200) Subject: Fixes for #4965: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d1783e9aeb5f74467410424152de2367f6678e7e;p=friendica.git Fixes for #4965: - better descriptive tooltip for adding/removing contact from/to group Signed-off-by: Roland Häder --- diff --git a/mod/group.php b/mod/group.php index 870025074c..726616a90f 100644 --- a/mod/group.php +++ b/mod/group.php @@ -226,7 +226,7 @@ function group_content(App $a) { $entry['label'] = 'members'; $entry['photo_menu'] = ''; $entry['change_member'] = [ - 'title' => L10n::t("Remove Contact"), + 'title' => L10n::t("Remove contact from group"), 'gid' => $group['id'], 'cid' => $member['id'], 'sec_token' => $sec_token @@ -250,7 +250,7 @@ function group_content(App $a) { $entry['label'] = 'contacts'; $entry['photo_menu'] = ''; $entry['change_member'] = [ - 'title' => L10n::t("Add Contact"), + 'title' => L10n::t("Add contact to group"), 'gid' => $group['id'], 'cid' => $member['id'], 'sec_token' => $sec_token