From d1783e9aeb5f74467410424152de2367f6678e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Thu, 17 May 2018 02:23:20 +0200 Subject: [PATCH] Fixes for #4965: - better descriptive tooltip for adding/removing contact from/to group MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- mod/group.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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