forked from GNUsocial/gnu-social
		
	Revert "* check usage of 'people' in UI and change it to 'users' or something else in most places"
This reverts commit 81b4a381d9.
IMO "user" is a bit impersonal and we shouldn't go changing the tone of the UI willy-nilly when we're updating localisations.
			
			
This commit is contained in:
		@@ -129,7 +129,7 @@ class AllAction extends ProfileAction
 | 
				
			|||||||
        if (common_logged_in()) {
 | 
					        if (common_logged_in()) {
 | 
				
			||||||
            $current_user = common_current_user();
 | 
					            $current_user = common_current_user();
 | 
				
			||||||
            if ($this->user->id === $current_user->id) {
 | 
					            if ($this->user->id === $current_user->id) {
 | 
				
			||||||
                $message .= _('Try subscribing to more users, [join a group](%%action.groups%%) or post something yourself.');
 | 
					                $message .= _('Try subscribing to more people, [join a group](%%action.groups%%) or post something yourself.');
 | 
				
			||||||
            } else {
 | 
					            } else {
 | 
				
			||||||
                $message .= sprintf(_('You can try to [nudge %s](../%s) from his profile or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname);
 | 
					                $message .= sprintf(_('You can try to [nudge %s](../%s) from his profile or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -136,7 +136,7 @@ class FoafAction extends Action
 | 
				
			|||||||
        $person = $this->showMicrobloggingAccount($this->profile,
 | 
					        $person = $this->showMicrobloggingAccount($this->profile,
 | 
				
			||||||
                                     common_root_url(), $this->user->uri, false);
 | 
					                                     common_root_url(), $this->user->uri, false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        // Get users who subscribe to user
 | 
					        // Get people who subscribe to user
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        $sub = new Subscription();
 | 
					        $sub = new Subscription();
 | 
				
			||||||
        $sub->subscribed = $this->profile->id;
 | 
					        $sub->subscribed = $this->profile->id;
 | 
				
			||||||
@@ -250,7 +250,7 @@ class FoafAction extends Action
 | 
				
			|||||||
        if ($isSubscriber) {
 | 
					        if ($isSubscriber) {
 | 
				
			||||||
             $this->element('sioc:follows', array('rdf:resource'=>$this->user->uri . '#acct'));
 | 
					             $this->element('sioc:follows', array('rdf:resource'=>$this->user->uri . '#acct'));
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            // Get users user is subscribed to
 | 
					            // Get people user is subscribed to
 | 
				
			||||||
            $sub = new Subscription();
 | 
					            $sub = new Subscription();
 | 
				
			||||||
            $sub->subscriber = $profile->id;
 | 
					            $sub->subscriber = $profile->id;
 | 
				
			||||||
            $sub->whereAdd('subscriber != subscribed');
 | 
					            $sub->whereAdd('subscriber != subscribed');
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -88,12 +88,11 @@ class GroupsAction extends Action
 | 
				
			|||||||
    {
 | 
					    {
 | 
				
			||||||
        $notice =
 | 
					        $notice =
 | 
				
			||||||
          sprintf(_('%%%%site.name%%%% groups let you find and talk with ' .
 | 
					          sprintf(_('%%%%site.name%%%% groups let you find and talk with ' .
 | 
				
			||||||
                    'users of similar interests. After you join a group ' .
 | 
					                    'people of similar interests. After you join a group ' .
 | 
				
			||||||
                    'you can send messages to all other members using the ' .
 | 
					                    'you can send messages to all other members using the ' .
 | 
				
			||||||
                    'syntax "!groupname". Are you not seeing any groups ' .
 | 
					                    'syntax "!groupname". Don\'t see a group you like? Try ' .
 | 
				
			||||||
                    'you like? Try ' .
 | 
					 | 
				
			||||||
                    '[searching for one](%%%%action.groupsearch%%%%) or ' .
 | 
					                    '[searching for one](%%%%action.groupsearch%%%%) or ' .
 | 
				
			||||||
                    '[start your own](%%%%action.newgroup%%%%)!'));
 | 
					                    '[start your own!](%%%%action.newgroup%%%%)'));
 | 
				
			||||||
        $this->elementStart('div', 'instructions');
 | 
					        $this->elementStart('div', 'instructions');
 | 
				
			||||||
        $this->raw(common_markup_to_html($notice));
 | 
					        $this->raw(common_markup_to_html($notice));
 | 
				
			||||||
        $this->elementEnd('div');
 | 
					        $this->elementEnd('div');
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -151,7 +151,7 @@ class ImsettingsAction extends ConnectSettingsAction
 | 
				
			|||||||
        $this->elementStart('li');
 | 
					        $this->elementStart('li');
 | 
				
			||||||
        $this->checkbox('jabberreplies',
 | 
					        $this->checkbox('jabberreplies',
 | 
				
			||||||
                        _('Send me replies through Jabber/GTalk '.
 | 
					                        _('Send me replies through Jabber/GTalk '.
 | 
				
			||||||
                          'from users I am not subscribed to.'),
 | 
					                          'from people I\'m not subscribed to.'),
 | 
				
			||||||
                        $user->jabberreplies);
 | 
					                        $user->jabberreplies);
 | 
				
			||||||
        $this->elementEnd('li');
 | 
					        $this->elementEnd('li');
 | 
				
			||||||
        $this->elementStart('li');
 | 
					        $this->elementStart('li');
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -133,7 +133,7 @@ class InviteAction extends CurrentUserDesignAction
 | 
				
			|||||||
            $this->elementEnd('ul');
 | 
					            $this->elementEnd('ul');
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        if ($this->subbed) {
 | 
					        if ($this->subbed) {
 | 
				
			||||||
            $this->element('p', null, _('These are already users and you were automatically subscribed to them:'));
 | 
					            $this->element('p', null, _('These people are already users and you were automatically subscribed to them:'));
 | 
				
			||||||
            $this->elementStart('ul');
 | 
					            $this->elementStart('ul');
 | 
				
			||||||
            foreach ($this->subbed as $other) {
 | 
					            foreach ($this->subbed as $other) {
 | 
				
			||||||
                $this->element('li', null, sprintf(_('%s (%s)'), $other->nickname, $other->email));
 | 
					                $this->element('li', null, sprintf(_('%s (%s)'), $other->nickname, $other->email));
 | 
				
			||||||
@@ -141,7 +141,7 @@ class InviteAction extends CurrentUserDesignAction
 | 
				
			|||||||
            $this->elementEnd('ul');
 | 
					            $this->elementEnd('ul');
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        if ($this->sent) {
 | 
					        if ($this->sent) {
 | 
				
			||||||
            $this->element('p', null, _('Invitation(s) sent to the following e-mail addresses:'));
 | 
					            $this->element('p', null, _('Invitation(s) sent to the following people:'));
 | 
				
			||||||
            $this->elementStart('ul');
 | 
					            $this->elementStart('ul');
 | 
				
			||||||
            foreach ($this->sent as $other) {
 | 
					            foreach ($this->sent as $other) {
 | 
				
			||||||
                $this->element('li', null, $other);
 | 
					                $this->element('li', null, $other);
 | 
				
			||||||
@@ -226,9 +226,9 @@ class InviteAction extends CurrentUserDesignAction
 | 
				
			|||||||
        $headers['Subject'] = sprintf(_('%1$s has invited you to join them on %2$s'), $bestname, $sitename);
 | 
					        $headers['Subject'] = sprintf(_('%1$s has invited you to join them on %2$s'), $bestname, $sitename);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        $body = sprintf(_("%1\$s has invited you to join them on %2\$s (%3\$s).\n\n".
 | 
					        $body = sprintf(_("%1\$s has invited you to join them on %2\$s (%3\$s).\n\n".
 | 
				
			||||||
                          "%2\$s is a micro-blogging service that lets you keep up-to-date with those you know and those who interest you.\n\n".
 | 
					                          "%2\$s is a micro-blogging service that lets you keep up-to-date with people you know and people who interest you.\n\n".
 | 
				
			||||||
                          "You can also share news about yourself, your thoughts, or your life online with users who know about you. ".
 | 
					                          "You can also share news about yourself, your thoughts, or your life online with people who know about you. ".
 | 
				
			||||||
                          "It is also great for meeting others who share your interests.\n\n".
 | 
					                          "It's also great for meeting new people who share your interests.\n\n".
 | 
				
			||||||
                          "%1\$s said:\n\n%4\$s\n\n".
 | 
					                          "%1\$s said:\n\n%4\$s\n\n".
 | 
				
			||||||
                          "You can see %1\$s's profile page on %2\$s here:\n\n".
 | 
					                          "You can see %1\$s's profile page on %2\$s here:\n\n".
 | 
				
			||||||
                          "%5\$s\n\n".
 | 
					                          "%5\$s\n\n".
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -44,7 +44,7 @@ require_once INSTALLDIR.'/lib/searchaction.php';
 | 
				
			|||||||
 * @author   Robin Millette <millette@status.net>
 | 
					 * @author   Robin Millette <millette@status.net>
 | 
				
			||||||
 * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
 | 
					 * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
 | 
				
			||||||
 * @link     http://status.net/
 | 
					 * @link     http://status.net/
 | 
				
			||||||
 * @todo     common parent for user and content search?
 | 
					 * @todo     common parent for people and content search?
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
class NoticesearchAction extends SearchAction
 | 
					class NoticesearchAction extends SearchAction
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -61,7 +61,7 @@ class OpensearchAction extends Action
 | 
				
			|||||||
        $short_name = '';
 | 
					        $short_name = '';
 | 
				
			||||||
        if ($type == 'people') {
 | 
					        if ($type == 'people') {
 | 
				
			||||||
            $type       = 'peoplesearch';
 | 
					            $type       = 'peoplesearch';
 | 
				
			||||||
            $short_name = _('User Search');
 | 
					            $short_name = _('People Search');
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            $type       = 'noticesearch';
 | 
					            $type       = 'noticesearch';
 | 
				
			||||||
            $short_name = _('Notice Search');
 | 
					            $short_name = _('Notice Search');
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -49,7 +49,7 @@ class PeoplesearchAction extends SearchAction
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    function getInstructions()
 | 
					    function getInstructions()
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        return _('Search for users on %%site.name%% by their name, location, or interests. ' .
 | 
					        return _('Search for people on %%site.name%% by their name, location, or interests. ' .
 | 
				
			||||||
                  'Separate the terms by spaces; they must be 3 characters or more.');
 | 
					                  'Separate the terms by spaces; they must be 3 characters or more.');
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -67,7 +67,7 @@ class PeopletagAction extends Action
 | 
				
			|||||||
        $this->tag = $this->trimmed('tag');
 | 
					        $this->tag = $this->trimmed('tag');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (!common_valid_profile_tag($this->tag)) {
 | 
					        if (!common_valid_profile_tag($this->tag)) {
 | 
				
			||||||
            $this->clientError(sprintf(_('Not a valid user tag: %s'),
 | 
					            $this->clientError(sprintf(_('Not a valid people tag: %s'),
 | 
				
			||||||
                $this->tag));
 | 
					                $this->tag));
 | 
				
			||||||
            return;
 | 
					            return;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -68,8 +68,8 @@ class ProfilesettingsAction extends AccountSettingsAction
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    function getInstructions()
 | 
					    function getInstructions()
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        return _('You can update your personal profile info here ' .
 | 
					        return _('You can update your personal profile info here '.
 | 
				
			||||||
                  'so readers know more about you.');
 | 
					                  'so people know more about you.');
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    function showScripts()
 | 
					    function showScripts()
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -82,14 +82,14 @@ class RegisterAction extends Action
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (common_config('site', 'inviteonly') && empty($this->code)) {
 | 
					        if (common_config('site', 'inviteonly') && empty($this->code)) {
 | 
				
			||||||
            $this->clientError(_('Sorry. Only those invited can register.'));
 | 
					            $this->clientError(_('Sorry, only invited people can register.'));
 | 
				
			||||||
            return false;
 | 
					            return false;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (!empty($this->code)) {
 | 
					        if (!empty($this->code)) {
 | 
				
			||||||
            $this->invite = Invitation::staticGet('code', $this->code);
 | 
					            $this->invite = Invitation::staticGet('code', $this->code);
 | 
				
			||||||
            if (empty($this->invite)) {
 | 
					            if (empty($this->invite)) {
 | 
				
			||||||
                $this->clientError(_('Sorry. This is an invalid invitation code.'));
 | 
					                $this->clientError(_('Sorry, invalid invitation code.'));
 | 
				
			||||||
                return false;
 | 
					                return false;
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            // Store this in case we need it
 | 
					            // Store this in case we need it
 | 
				
			||||||
@@ -186,7 +186,7 @@ class RegisterAction extends Action
 | 
				
			|||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if (common_config('site', 'inviteonly') && !($code && $invite)) {
 | 
					            if (common_config('site', 'inviteonly') && !($code && $invite)) {
 | 
				
			||||||
                $this->clientError(_('Sorry. Only those invited can register.'));
 | 
					                $this->clientError(_('Sorry, only invited people can register.'));
 | 
				
			||||||
                return;
 | 
					                return;
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -401,7 +401,7 @@ class RegisterAction extends Action
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (common_config('site', 'inviteonly') && !($code && $invite)) {
 | 
					        if (common_config('site', 'inviteonly') && !($code && $invite)) {
 | 
				
			||||||
            $this->clientError(_('Sorry. Only those invited can register.'));
 | 
					            $this->clientError(_('Sorry, only invited people can register.'));
 | 
				
			||||||
            return;
 | 
					            return;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -542,7 +542,7 @@ class RegisterAction extends Action
 | 
				
			|||||||
                           '(%%%%action.imsettings%%%%) '.
 | 
					                           '(%%%%action.imsettings%%%%) '.
 | 
				
			||||||
                           'so you can send notices '.
 | 
					                           'so you can send notices '.
 | 
				
			||||||
                           'through instant messages.' . "\n" .
 | 
					                           'through instant messages.' . "\n" .
 | 
				
			||||||
                           '* [Search for users](%%%%action.peoplesearch%%%%) '.
 | 
					                           '* [Search for people](%%%%action.peoplesearch%%%%) '.
 | 
				
			||||||
                           'that you may know or '.
 | 
					                           'that you may know or '.
 | 
				
			||||||
                           'that share your interests. ' . "\n" .
 | 
					                           'that share your interests. ' . "\n" .
 | 
				
			||||||
                           '* Update your [profile settings]'.
 | 
					                           '* Update your [profile settings]'.
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -195,12 +195,12 @@ class RepliesAction extends OwnerDesignAction
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    function showEmptyListMessage()
 | 
					    function showEmptyListMessage()
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        $message = sprintf(_('This is the timeline showing replies to %s but %s has not received a notice to his attention yet.'), $this->user->nickname, $this->user->nickname) . ' ';
 | 
					        $message = sprintf(_('This is the timeline showing replies to %s but %s hasn\'t received a notice to his attention yet.'), $this->user->nickname, $this->user->nickname) . ' ';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (common_logged_in()) {
 | 
					        if (common_logged_in()) {
 | 
				
			||||||
            $current_user = common_current_user();
 | 
					            $current_user = common_current_user();
 | 
				
			||||||
            if ($this->user->id === $current_user->id) {
 | 
					            if ($this->user->id === $current_user->id) {
 | 
				
			||||||
                $message .= _('You can engage other users in a conversation, subscribe to more users or [join groups](%%action.groups%%).');
 | 
					                $message .= _('You can engage other users in a conversation, subscribe to more people or [join groups](%%action.groups%%).');
 | 
				
			||||||
            } else {
 | 
					            } else {
 | 
				
			||||||
                $message .= sprintf(_('You can try to [nudge %s](../%s) or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname);
 | 
					                $message .= sprintf(_('You can try to [nudge %s](../%s) or [post something to his or her attention](%%%%action.newnotice%%%%?status_textarea=%s).'), $this->user->nickname, $this->user->nickname, '@' . $this->user->nickname);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -60,12 +60,12 @@ class SubscribersAction extends GalleryAction
 | 
				
			|||||||
        $user =& common_current_user();
 | 
					        $user =& common_current_user();
 | 
				
			||||||
        if ($user && ($user->id == $this->profile->id)) {
 | 
					        if ($user && ($user->id == $this->profile->id)) {
 | 
				
			||||||
            $this->element('p', null,
 | 
					            $this->element('p', null,
 | 
				
			||||||
                           _('These are the users who have subscribed to '.
 | 
					                           _('These are the people who listen to '.
 | 
				
			||||||
                             'your notices.'));
 | 
					                             'your notices.'));
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            $this->element('p', null,
 | 
					            $this->element('p', null,
 | 
				
			||||||
                           sprintf(_('These are the users who '.
 | 
					                           sprintf(_('These are the people who '.
 | 
				
			||||||
                                     'have subscribed to %s\'s notices.'),
 | 
					                                     'listen to %s\'s notices.'),
 | 
				
			||||||
                                   $this->profile->nickname));
 | 
					                                   $this->profile->nickname));
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -105,7 +105,7 @@ class SubscribersAction extends GalleryAction
 | 
				
			|||||||
        if (common_logged_in()) {
 | 
					        if (common_logged_in()) {
 | 
				
			||||||
            $current_user = common_current_user();
 | 
					            $current_user = common_current_user();
 | 
				
			||||||
            if ($this->user->id === $current_user->id) {
 | 
					            if ($this->user->id === $current_user->id) {
 | 
				
			||||||
                $message = _('You have no subscribers. Try subscribing to users you know and they might return the favor');
 | 
					                $message = _('You have no subscribers. Try subscribing to people you know and they might return the favor');
 | 
				
			||||||
            } else {
 | 
					            } else {
 | 
				
			||||||
                $message = sprintf(_('%s has no subscribers. Want to be the first?'), $this->user->nickname);
 | 
					                $message = sprintf(_('%s has no subscribers. Want to be the first?'), $this->user->nickname);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -62,12 +62,12 @@ class SubscriptionsAction extends GalleryAction
 | 
				
			|||||||
        $user =& common_current_user();
 | 
					        $user =& common_current_user();
 | 
				
			||||||
        if ($user && ($user->id == $this->profile->id)) {
 | 
					        if ($user && ($user->id == $this->profile->id)) {
 | 
				
			||||||
            $this->element('p', null,
 | 
					            $this->element('p', null,
 | 
				
			||||||
                           _('These are the users whose notices '.
 | 
					                           _('These are the people whose notices '.
 | 
				
			||||||
                             'you have subscribed to.'));
 | 
					                             'you listen to.'));
 | 
				
			||||||
        } else {
 | 
					        } else {
 | 
				
			||||||
            $this->element('p', null,
 | 
					            $this->element('p', null,
 | 
				
			||||||
                           sprintf(_('These are the users whose '.
 | 
					                           sprintf(_('These are the people whose '.
 | 
				
			||||||
                                     'notices %s has subscribed to.'),
 | 
					                                     'notices %s listens to.'),
 | 
				
			||||||
                                   $this->profile->nickname));
 | 
					                                   $this->profile->nickname));
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -118,7 +118,7 @@ class SubscriptionsAction extends GalleryAction
 | 
				
			|||||||
        if (common_logged_in()) {
 | 
					        if (common_logged_in()) {
 | 
				
			||||||
            $current_user = common_current_user();
 | 
					            $current_user = common_current_user();
 | 
				
			||||||
            if ($this->user->id === $current_user->id) {
 | 
					            if ($this->user->id === $current_user->id) {
 | 
				
			||||||
                $message = _('You have not subscribed to anyone\'s notices right now. Try subscribing to users you know. Try [user search](%%action.peoplesearch%%), look for members in groups you\'re interested in and in our [featured users](%%action.featured%%). If you are a [Twitter user](%%action.twittersettings%%), you can automatically subscribe to users you already follow there.');
 | 
					                $message = _('You\'re not listening to anyone\'s notices right now, try subscribing to people you know. Try [people search](%%action.peoplesearch%%), look for members in groups you\'re interested in and in our [featured users](%%action.featured%%). If you\'re a [Twitter user](%%action.twittersettings%%), you can automatically subscribe to people you already follow there.');
 | 
				
			||||||
            } else {
 | 
					            } else {
 | 
				
			||||||
                $message = sprintf(_('%s is not listening to anyone.'), $this->user->nickname);
 | 
					                $message = sprintf(_('%s is not listening to anyone.'), $this->user->nickname);
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -190,7 +190,7 @@ class TagotherAction extends Action
 | 
				
			|||||||
            !Subscription::pkeyGet(array('subscriber' => $this->profile->id,
 | 
					            !Subscription::pkeyGet(array('subscriber' => $this->profile->id,
 | 
				
			||||||
                                         'subscribed' => $user->id)))
 | 
					                                         'subscribed' => $user->id)))
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            $this->clientError(_('You can only tag users you are subscribed to or who are subscribed to you.'));
 | 
					            $this->clientError(_('You can only tag people you are subscribed to or who are subscribed to you.'));
 | 
				
			||||||
            return;
 | 
					            return;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -456,7 +456,7 @@ class Action extends HTMLOutputter // lawsuit
 | 
				
			|||||||
                            _('Help'), _('Help me!'), false, 'nav_help');
 | 
					                            _('Help'), _('Help me!'), false, 'nav_help');
 | 
				
			||||||
            if ($user || !common_config('site', 'private')) {
 | 
					            if ($user || !common_config('site', 'private')) {
 | 
				
			||||||
                $this->menuItem(common_local_url('peoplesearch'),
 | 
					                $this->menuItem(common_local_url('peoplesearch'),
 | 
				
			||||||
                                _('Search'), _('Search for users or text'), false, 'nav_search');
 | 
					                                _('Search'), _('Search for people or text'), false, 'nav_search');
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
            Event::handle('EndPrimaryNav', array($this));
 | 
					            Event::handle('EndPrimaryNav', array($this));
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user