No corporate-only strings in code base anymore

This commit is contained in:
aroquen 2015-06-07 22:24:14 +02:00
parent 8a002e98bc
commit f9c51c2478
2 changed files with 2 additions and 3 deletions

View File

@ -53,7 +53,7 @@ class InviteButtonSection extends Section
$this->out = $out; $this->out = $out;
if (empty($buttonText)) { if (empty($buttonText)) {
// TRANS: Default button text for inviting more users to the StatusNet instance. // 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 { } else {
$this->buttonText = $buttonText; $this->buttonText = $buttonText;
} }

View File

@ -87,10 +87,9 @@ class ToSelector extends Widget
$choices['public:everyone'] = _m('SENDTO','Everyone'); $choices['public:everyone'] = _m('SENDTO','Everyone');
$default = 'public:everyone'; $default = 'public:everyone';
} }
// XXX: better name...?
// TRANS: Option in drop-down of potential addressees. // TRANS: Option in drop-down of potential addressees.
// TRANS: %s is a StatusNet sitename. // 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(); $groups = $this->user->getGroups();