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;
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;
}

View File

@ -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();