diff --git a/lib/invitebuttonsection.php b/lib/invitebuttonsection.php index 57e204cf86..37bbfe92a2 100644 --- a/lib/invitebuttonsection.php +++ b/lib/invitebuttonsection.php @@ -53,7 +53,7 @@ class InviteButtonSection extends Section $this->out = $out; if (empty($buttonText)) { // TRANS: Default button text for inviting more users to the StatusNet instance. - $this->buttonText = _m('BUTTON', 'Invite more colleagues'); + $this->buttonText = _m('BUTTON', 'Invite more people'); } else { $this->buttonText = $buttonText; } diff --git a/lib/toselector.php b/lib/toselector.php index 566b6a0f29..153d9001b5 100644 --- a/lib/toselector.php +++ b/lib/toselector.php @@ -87,10 +87,9 @@ class ToSelector extends Widget $choices['public:everyone'] = _m('SENDTO','Everyone'); $default = 'public:everyone'; } - // XXX: better name...? // TRANS: Option in drop-down of potential addressees. // TRANS: %s is a StatusNet sitename. - $choices['public:site'] = sprintf(_('My colleagues at %s'), common_config('site', 'name')); + $choices['public:site'] = sprintf(_('Everyone at %s'), common_config('site', 'name')); $groups = $this->user->getGroups();