summaryrefslogtreecommitdiff
path: root/lib/action.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-03-10 09:55:14 -0800
committerBrion Vibber <brion@pobox.com>2010-03-10 09:55:14 -0800
commitddb656fcd2a3233b26e28987d2f3425944908d30 (patch)
treeee78cf1bbf7ab8b9713708420c7197634f7ca92a /lib/action.php
parent49f1b1e8b290de22381a0e25b2b612bd6ddaf79d (diff)
parent58fcb5ac6f91d30a25a4fa03ba87855923c35828 (diff)
Merge branch 'testing' into 0.9.x
Conflicts: actions/apistatusnetconfig.php
Diffstat (limited to 'lib/action.php')
-rw-r--r--lib/action.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/action.php b/lib/action.php
index 10394c789..491d7d481 100644
--- a/lib/action.php
+++ b/lib/action.php
@@ -798,11 +798,14 @@ class Action extends HTMLOutputter // lawsuit
{
$this->element('dt', array('id' => 'site_statusnet_license'), _('StatusNet software license'));
$this->elementStart('dd', null);
+ // @fixme drop the final spaces in the messages when at good spot
+ // to let translations get updated.
if (common_config('site', 'broughtby')) {
$instr = _('**%%site.name%%** is a microblogging service brought to you by [%%site.broughtby%%](%%site.broughtbyurl%%). ');
} else {
$instr = _('**%%site.name%%** is a microblogging service. ');
}
+ $instr .= ' ';
$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);
$output = common_markup_to_html($instr);
$this->raw($output);