Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 50 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
| ManualTranslations | |
0.00% |
0 / 50 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
| getManualTranslations | |
0.00% |
0 / 50 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * This program is free software; you can redistribute it and/or |
| 5 | * modify it under the terms of the GNU General Public License |
| 6 | * as published by the Free Software Foundation; under version 2 |
| 7 | * of the License (non-upgradable). |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
| 17 | * |
| 18 | * Copyright (c) 2018 (original work) Open Assessment Technologies SA (under the project TAO-PRODUCT); |
| 19 | * |
| 20 | */ |
| 21 | |
| 22 | namespace oat\taoQtiTest\models\translation; |
| 23 | |
| 24 | /** |
| 25 | * Class ManualTranslations |
| 26 | * |
| 27 | * File to handle manually created translations |
| 28 | * |
| 29 | * @package oat\taoQtiTest\models\translation |
| 30 | */ |
| 31 | class ManualTranslations |
| 32 | { |
| 33 | public function getManualTranslations() |
| 34 | { |
| 35 | return [ |
| 36 | __('Click to speak'), |
| 37 | __('network'), |
| 38 | __('Pause'), |
| 39 | __('Play'), |
| 40 | __('Settings'), |
| 41 | __('Speech speed'), |
| 42 | __('Stop'), |
| 43 | __('technical'), |
| 44 | __('Text to Speech'), |
| 45 | __('The assessment has been created but is not already running.'), |
| 46 | // phpcs:disable Generic.Files.LineLength |
| 47 | __('The assessment has been suspended by an authorized proctor. If you wish to resume your assessment, please relaunch it and contact your proctor if required.'), |
| 48 | // phpcs:enable Generic.Files.LineLength |
| 49 | __('The assessment has been suspended. To resume your assessment, please relaunch it.'), |
| 50 | __('The assessment has been terminated.'), |
| 51 | __('The assessment has been terminated. You cannot interact with it anymore.'), |
| 52 | __('The assessment is still running.'), |
| 53 | __('The IMS QTI Item referenced as \"%s\" in the IMS Manifest file was already stored in the Item Bank.'), |
| 54 | __('This test has been terminated'), |
| 55 | __('Volume'), |
| 56 | __('Time Remaining'), |
| 57 | __('Tests'), |
| 58 | __('Use Ctrl/Meta key or Lasso for multiple selection'), |
| 59 | __('There is not outcomes!'), |
| 60 | __('Manage tests'), |
| 61 | __('Filter'), |
| 62 | __('Export metadata'), |
| 63 | __('Scratchpad'), |
| 64 | __('Scratch pad'), |
| 65 | __('Scratch Pad'), |
| 66 | __('Black on Cream'), |
| 67 | __('Black on Light Blue'), |
| 68 | __('Black on Light Magenta'), |
| 69 | __('Black on White'), |
| 70 | __('Gray on Green'), |
| 71 | __('White on Black'), |
| 72 | __('White on Blue (TAO standard theme)'), |
| 73 | __('Yellow on Blue'), |
| 74 | __('You answered all %s question(s) in this section'), |
| 75 | __('You answered all %s question(s) in this test'), |
| 76 | __('You answered only %s of the %s question(s) in this section'), |
| 77 | __('and flagged %s of them'), |
| 78 | __('Once you close this section, you cannot return to it or change your answers.'), |
| 79 | __('Review my Answers'), |
| 80 | __('Close this Section'), |
| 81 | __('You have %s unanswered question(s)'), |
| 82 | __('and you flagged %s item(s) that you can review now'), |
| 83 | __('Connected to server'), |
| 84 | __('Disconnected from server'), |
| 85 | __('A response to every question in this item is required.'), |
| 86 | ]; |
| 87 | } |
| 88 | } |