summaryrefslogtreecommitdiff
path: root/includes/view/Questions_view.php
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2018-08-29 21:55:32 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-29 23:46:32 +0200
commite8f8fc7f5f5eba315290bc8d45348c3a4d4bee79 (patch)
treef882e29ee1ca436ee98a93a4f8a489630a71b9c1 /includes/view/Questions_view.php
parent3a1164164791edbe30c7247b98585474867dd968 (diff)
Replaced gettext translation `_()` with `__()` that uses the Translator class
Diffstat (limited to 'includes/view/Questions_view.php')
-rw-r--r--includes/view/Questions_view.php22
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)
]);
}