diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-09-15 14:58:31 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2018-09-15 14:58:31 +0200 |
commit | d0abc27c079f058c40a74b89e54bd21ba4aad53e (patch) | |
tree | 2d42f2a3c99d4a01930832c4e257bd550cbe9ac5 /includes/view/Questions_view.php | |
parent | 13d2786b7b51df927c8976dc767cc27e88bc8e84 (diff) | |
parent | 5456fea5031000a6325cdcae5f1e9d4c16b6ed50 (diff) |
Merge remote-tracking branch 'MyIgel/translations'
Diffstat (limited to 'includes/view/Questions_view.php')
-rw-r--r-- | includes/view/Questions_view.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/includes/view/Questions_view.php b/includes/view/Questions_view.php index a44a099d..4008b7cd 100644 --- a/includes/view/Questions_view.php +++ b/includes/view/Questions_view.php @@ -12,7 +12,7 @@ function Questions_view($open_questions, $answered_questions, $ask_action) $question['actions'] = '<a href="' . page_link_to('user_questions', ['action' => 'delete', 'id' => $question['QID']]) . '">' - . _('delete') + . __('delete') . '</a>'; $question['Question'] = str_replace("\n", '<br />', $question['Question']); } @@ -23,28 +23,28 @@ function Questions_view($open_questions, $answered_questions, $ask_action) $question['actions'] = '<a href="' . page_link_to('user_questions', ['action' => 'delete', 'id' => $question['QID']]) . '">' - . _('delete') + . __('delete') . '</a>'; } return page_with_title(questions_title(), [ msg(), - heading(_('Open questions'), 2), + heading(__('Open questions'), 2), table([ - 'Question' => _('Question'), + 'Question' => __('Question'), 'actions' => '' ], $open_questions), - heading(_('Answered questions'), 2), + heading(__('Answered questions'), 2), table([ - 'Question' => _('Question'), - 'answer_user' => _('Answered by'), - 'Answer' => _('Answer'), + 'Question' => __('Question'), + 'answer_user' => __('Answered by'), + 'Answer' => __('Answer'), 'actions' => '' ], $answered_questions), - heading(_('Ask the Heaven'), 2), + heading(__('Ask the Heaven'), 2), form([ - form_textarea('question', _('Your Question:'), ''), - form_submit('submit', _('Save')) + form_textarea('question', __('Your Question:'), ''), + form_submit('submit', __('Save')) ], $ask_action) ]); } |