diff options
author | Matt Lee <mattl@cnuk.org> | 2010-08-09 18:40:04 -0400 |
---|---|---|
committer | Matt Lee <mattl@cnuk.org> | 2010-08-09 18:40:04 -0400 |
commit | 988cb46fa388d404414093cd569050342664508a (patch) | |
tree | e24ffa52ec727e76333005b63faee829aae577b0 /lib | |
parent | f07cf26b00e905d88bf8016d0634933b74a8df09 (diff) |
remove microblogging messages
Diffstat (limited to 'lib')
-rw-r--r-- | lib/action.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/action.php b/lib/action.php index 2b3b707c5..0be9c59bd 100644 --- a/lib/action.php +++ b/lib/action.php @@ -824,14 +824,14 @@ class Action extends HTMLOutputter // lawsuit $this->elementStart('dd', null); if (common_config('site', 'broughtby')) { // TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is set. - $instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%).'); + $instr = _('**%%site.name%%** is a social network, courtesy of [%%site.broughtby%%](%%site.broughtbyurl%%).'); } else { // TRANS: First sentence of the StatusNet site license. Used if 'broughtby' is not set. - $instr = _('**%%site.name%%** is a microblogging service.'); + $instr = _('**%%site.name%%** is a social network.'); } $instr .= ' '; // TRANS: Second sentence of the StatusNet site license. Mentions the StatusNet source code license. - $instr .= sprintf(_('It runs the [StatusNet](http://status.net/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html).'), STATUSNET_VERSION); + $instr .= sprintf(_('It runs the [GNU social](http://www.gnu.org/software/social/) microblogging software, version %s, available under the [GNU Affero General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html).'), STATUSNET_VERSION); $output = common_markup_to_html($instr); $this->raw($output); $this->elementEnd('dd'); @@ -878,7 +878,7 @@ class Action extends HTMLOutputter // lawsuit 'height' => '15')); $this->text(' '); // TRANS: license message in footer. %1$s is the site name, %2$s is a link to the license URL, with a licence name set in configuration. - $notice = _('All %1$s content and data are available under the %2$s license.'); + $notice = _('All content and data are available under the %2$s license.'); $link = "<a class=\"license\" rel=\"external license\" href=\"" . htmlspecialchars(common_config('license', 'url')) . "\">" . |