1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle 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 Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* Strings for component 'tool_langimport', language 'en', branch 'MOODLE_22_STABLE'
|
|
|
19 |
*
|
|
|
20 |
* @package tool
|
|
|
21 |
* @subpackage langimport
|
|
|
22 |
* @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com}
|
|
|
23 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
24 |
*/
|
|
|
25 |
|
|
|
26 |
$string['downloadnotavailable'] = 'Unable to connect to the download server. It is not possible to install or update the language packs automatically. Please download the appropriate ZIP file(s) from <a href="{$a->src}">{$a->src}</a> and unzip them manually to your data directory <code>{$a->dest}</code>';
|
|
|
27 |
$string['install'] = 'Install selected language pack(s)';
|
|
|
28 |
$string['installfailed'] = 'Language packs installation failed!';
|
|
|
29 |
$string['installfinished'] = 'Language packs installation finished.';
|
|
|
30 |
$string['installpending'] = 'The following language packs will be installed soon: {$a}.';
|
|
|
31 |
$string['installscheduled'] = 'Language packs scheduled for installation.';
|
|
|
32 |
$string['installedlangs'] = 'Installed language packs';
|
|
|
33 |
$string['langimport'] = 'Language import utility';
|
|
|
34 |
$string['langimportdisabled'] = 'Language import feature has been disabled. You have to update your language packs manually at the file-system level. Do not forget to purge string caches after you do so.';
|
|
|
35 |
$string['langpackinstalled'] = 'Language pack \'{$a}\' was successfully installed';
|
|
|
36 |
$string['langpackinstalledevent'] = 'Language pack installed';
|
|
|
37 |
$string['langpackremoved'] = 'Language pack \'{$a}\' was uninstalled';
|
|
|
38 |
$string['langpacknotremoved'] = 'An error has occurred; language pack \'{$a}\' is not completely uninstalled. Please check file permissions.';
|
|
|
39 |
$string['langpackremovedevent'] = 'Language pack uninstalled';
|
|
|
40 |
$string['langpackupdateskipped'] = 'Update of \'{$a}\' language pack skipped';
|
|
|
41 |
$string['langpackuptodate'] = 'Language pack \'{$a}\' is up-to-date';
|
|
|
42 |
$string['langpackupdated'] = 'Language pack \'{$a}\' was successfully updated';
|
|
|
43 |
$string['langpackupdatedevent'] = 'Language pack updated';
|
|
|
44 |
$string['langunsupported'] = '<p>Your server does not seem to fully support the following languages:</p><ul>{$a->missinglocales}</ul><p>Instead, the global locale ({$a->globallocale}) will be used to format certain strings such as dates or numbers.</p>';
|
|
|
45 |
$string['langupdatecomplete'] = 'Language pack update completed';
|
|
|
46 |
$string['missingcfglangotherroot'] = 'Missing configuration value $CFG->langotherroot';
|
|
|
47 |
$string['missinglangparent'] = 'Missing parent language <em>{$a->parent}</em> of <em>{$a->lang}</em>.';
|
|
|
48 |
$string['noenglishuninstalltitle'] = 'Unable to uninstall';
|
|
|
49 |
$string['noenglishuninstall'] = 'The English language pack cannot be uninstalled.';
|
|
|
50 |
$string['nolangupdateneeded'] = 'All your language packs are up to date, no update is needed';
|
|
|
51 |
$string['pluginname'] = 'Language packs';
|
|
|
52 |
$string['purgestringcaches'] = 'Purge string caches';
|
|
|
53 |
$string['search'] = 'Search available language packs';
|
|
|
54 |
$string['selectlangs'] = 'Select languages to uninstall';
|
|
|
55 |
$string['uninstall'] = 'Uninstall selected language pack(s)';
|
|
|
56 |
$string['uninstallconfirm'] = 'You are about to completely uninstall these language packs: <strong>{$a}</strong>. Are you sure?';
|
|
|
57 |
$string['updatelangs'] = 'Update all installed language packs';
|
|
|
58 |
$string['updatelangsnote'] = 'Updating all installed language packs by clicking the button can take a long time and lead to timeouts. It is recommended instead to make use of the scheduled task \'{$a->taskname}\' (which runs by default every day).';
|
|
|
59 |
$string['privacy:metadata'] = 'The Language packs plugin does not store any personal data.';
|