X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=plugins%2FQnA%2Flib%2Fqnashowquestionform.php;h=0ac1c823775721f875b86ac9ce895ac54e9e9e21;hb=9758134d1afb44be2376efb8a560d3ce02d89fd3;hp=9ef7a9e4c9b7a81d8336b24bd537b5cb675eb7b4;hpb=bc66211565035ed5986390fdecd089cbbb8db959;p=quix0rs-gnu-social.git diff --git a/plugins/QnA/lib/qnashowquestionform.php b/plugins/QnA/lib/qnashowquestionform.php index 9ef7a9e4c9..0ac1c82377 100644 --- a/plugins/QnA/lib/qnashowquestionform.php +++ b/plugins/QnA/lib/qnashowquestionform.php @@ -103,7 +103,7 @@ class QnashowquestionForm extends Form function formLegend() { // TRANS: Form legend for revising the answer. - $this->out->element('legend', null, _('Question')); + $this->out->element('legend', null, _m('LEGEND','Question')); } /** @@ -114,7 +114,7 @@ class QnashowquestionForm extends Form function formData() { $this->out->hidden( - 'qna-quesiton-id', + 'qna-question-id', 'question-' . $this->question->id, 'id' ); @@ -147,14 +147,14 @@ class QnashowquestionForm extends Form if ($user->id == $this->question->profile_id) { $this->out->submit( 'qna-question-close', - // TRANS: Button text for closing a question + // TRANS: Button text for closing a question. _m('BUTTON', 'Close'), 'submit', 'submit', - // TRANS: Title for button text for closing a question - _('Close the question') + // TRANS: Title for button text for closing a question. + _m('Close the question to no one can answer it anymore.') ); - } + } } }