From f9c51c247839344f2a1b2015ae2725cd0308d64b Mon Sep 17 00:00:00 2001 From: aroquen Date: Sun, 7 Jun 2015 22:24:14 +0200 Subject: [PATCH] No corporate-only strings in code base anymore --- lib/invitebuttonsection.php | 2 +- lib/toselector.php | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) 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();