From: Siebrand Mazeland Date: Sun, 3 Apr 2011 13:06:52 +0000 (+0200) Subject: L10n/i18n tweaks. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=527151c5ef2e6d7ebf4b4377e06bf50d3eec4e5c;p=quix0rs-gnu-social.git L10n/i18n tweaks. --- diff --git a/plugins/QnA/QnAPlugin.php b/plugins/QnA/QnAPlugin.php index 9a05eeb0b2..c62eefa671 100644 --- a/plugins/QnA/QnAPlugin.php +++ b/plugins/QnA/QnAPlugin.php @@ -335,7 +335,7 @@ class QnAPlugin extends MicroAppPlugin $form->show(); } } else { - $out->text(_m('Question data is missing')); + $out->text(_m('Question data is missing.')); } $out->elementEnd('div'); diff --git a/plugins/QnA/actions/qnashowanswer.php b/plugins/QnA/actions/qnashowanswer.php index 826172c099..94a757960e 100644 --- a/plugins/QnA/actions/qnashowanswer.php +++ b/plugins/QnA/actions/qnashowanswer.php @@ -109,7 +109,9 @@ class QnashowanswerAction extends ShownoticeAction $question = $this->answer->getQuestion(); return sprintf( - _m('%s\'s answer to "%s"'), + // TRANS: Page title. + // TRANS: %1$s is the user who answered a question, %2$s is the question. + _m('1$%s\'s answer to "%2$s"'), $this->user->nickname, $question->title );