aboutsummaryrefslogtreecommitdiffstats
path: root/mod/group.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-10-27 03:54:44 -0700
committerfriendica <info@friendica.com>2012-10-27 03:54:44 -0700
commite29618ee0df044b1ae292fb28a0a8fda34e63252 (patch)
treee93fdf039e9a8c4e5d8652746ae549bd59c00724 /mod/group.php
parentfb8b44f1b2c7cefecf540ff1224a529be2694a6a (diff)
downloadvolse-hubzilla-e29618ee0df044b1ae292fb28a0a8fda34e63252.tar.gz
volse-hubzilla-e29618ee0df044b1ae292fb28a0a8fda34e63252.tar.bz2
volse-hubzilla-e29618ee0df044b1ae292fb28a0a8fda34e63252.zip
contact group is now 'channel group'
Diffstat (limited to 'mod/group.php')
-rw-r--r--mod/group.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/mod/group.php b/mod/group.php
index 69a7892c0..6b46e1193 100644
--- a/mod/group.php
+++ b/mod/group.php
@@ -44,7 +44,7 @@ function group_post(&$a) {
intval(local_user())
);
if(! count($r)) {
- notice( t('Contact group not found.') . EOL );
+ notice( t('Channel group not found.') . EOL );
goaway($a->get_baseurl() . '/contacts');
return; // NOTREACHED
}
@@ -57,7 +57,7 @@ function group_post(&$a) {
intval($group['id'])
);
if($r)
- info( t('Contact group name changed.') . EOL );
+ info( t('Channel group name changed.') . EOL );
}
$a->page['aside'] = group_side();
@@ -88,7 +88,7 @@ function group_content(&$a) {
return replace_macros($tpl, $context + array(
'$title' => t('Create a group of contacts/friends.'),
- '$gname' => array('groupname',t('Contact Group Name: '), '', ''),
+ '$gname' => array('groupname',t('Channel Group Name: '), '', ''),
'$gid' => 'new',
'$form_security_token' => get_form_security_token("group_edit"),
));
@@ -107,9 +107,9 @@ function group_content(&$a) {
if(count($r))
$result = group_rmv(local_user(),$r[0]['name']);
if($result)
- info( t('Contact group removed.') . EOL);
+ info( t('Channel group removed.') . EOL);
else
- notice( t('Unable to remove contact group.') . EOL);
+ notice( t('Unable to remove channel group.') . EOL);
}
goaway($a->get_baseurl() . '/group');
// NOTREACHED
@@ -134,7 +134,7 @@ function group_content(&$a) {
intval(local_user())
);
if(! count($r)) {
- notice( t('Contact group not found.') . EOL );
+ notice( t('Channel group not found.') . EOL );
goaway($a->get_baseurl() . '/contacts');
}
$group = $r[0];
@@ -174,7 +174,7 @@ function group_content(&$a) {
$context = $context + array(
'$title' => t('Contact Group Editor'),
- '$gname' => array('groupname',t('Contact Group Name: '),$group['name'], ''),
+ '$gname' => array('groupname',t('Channel Group Name: '),$group['name'], ''),
'$gid' => $group['id'],
'$drop' => $drop_txt,
'$form_security_token' => get_form_security_token('group_edit'),
@@ -188,7 +188,7 @@ function group_content(&$a) {
$groupeditor = array(
'label_members' => t('Members'),
'members' => array(),
- 'label_contacts' => t('All Contacts'),
+ 'label_contacts' => t('All Active Channels'),
'contacts' => array(),
);
@@ -218,7 +218,7 @@ function group_content(&$a) {
}
$context['$groupeditor'] = $groupeditor;
- $context['$desc'] = t('Click on a contact to add or remove.');
+ $context['$desc'] = t('Click on a channel to add or remove.');
if($change) {
$tpl = get_markup_template('groupeditor.tpl');