aboutsummaryrefslogtreecommitdiffstats
path: root/include/group.php
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-01-26 23:44:15 -0800
committerredmatrix <git@macgirvin.com>2016-01-26 23:44:15 -0800
commitd83b907cdcb4d7a7638b2be9a8024a43f6012827 (patch)
treefd9f232ee8f816a99d8551291690e762bfdcdfa1 /include/group.php
parent202817740ab13f91ab9bd90de43116d1778cb751 (diff)
downloadvolse-hubzilla-d83b907cdcb4d7a7638b2be9a8024a43f6012827.tar.gz
volse-hubzilla-d83b907cdcb4d7a7638b2be9a8024a43f6012827.tar.bz2
volse-hubzilla-d83b907cdcb4d7a7638b2be9a8024a43f6012827.zip
rename collections to privacy groups
Diffstat (limited to 'include/group.php')
-rw-r--r--include/group.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/group.php b/include/group.php
index 0875b10f9..bef008afd 100644
--- a/include/group.php
+++ b/include/group.php
@@ -229,7 +229,7 @@ function mini_group_select($uid,$group = '') {
logger('mini_group_select: ' . print_r($grps,true), LOGGER_DATA);
$o = replace_macros(get_markup_template('group_selection.tpl'), array(
- '$label' => t('Add new connections to this collection (privacy group)'),
+ '$label' => t('Add new connections to this privacy group'),
'$groups' => $grps
));
return $o;
@@ -292,10 +292,10 @@ function group_side($every="connections",$each="group",$edit = false, $group_id
$tpl = get_markup_template("group_side.tpl");
$o = replace_macros($tpl, array(
- '$title' => t('Collections'),
- '$edittext' => t('Edit collection'),
- '$createtext' => t('Add new collection'),
- '$ungrouped' => (($every === 'contacts') ? t('Channels not in any collection') : ''),
+ '$title' => t('Privacy Groups'),
+ '$edittext' => t('Edit group'),
+ '$createtext' => t('Add privacy group'),
+ '$ungrouped' => (($every === 'contacts') ? t('Channels not in any privacy group') : ''),
'$groups' => $groups,
'$add' => t('add'),
));