You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
2.3 KiB
39 lines
2.3 KiB
<?php
|
|
// This file is part of Moodle - http://moodle.org/
|
|
//
|
|
// Moodle is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// Moodle is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
/**
|
|
* Strings for plugin 'fileconverter_unoconv'
|
|
*
|
|
* @package fileconverter_unoconv
|
|
* @copyright 2017 Damyon Wiese
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$string['pathtounoconv'] = 'Path to unoconv document converter';
|
|
$string['pathtounoconv_help'] = 'Path to unoconv document converter. This is an executable that is capable of converting between document formats supported by LibreOffice. This is optional, but if specified, Moodle will use it to automatically convert between document formats. This is used to support a wider range of input files for the assignment annotate PDF feature.';
|
|
$string['pluginname'] = 'Unoconv';
|
|
$string['privacy:metadata'] = 'The Unoconv document converter plugin does not store any personal data.';
|
|
$string['test_unoconv'] = 'Test unoconv path';
|
|
$string['test_unoconvdoesnotexist'] = 'The unoconv path does not point to the unoconv program. Please review your path settings.';
|
|
$string['test_unoconvdownload'] = 'Download the converted pdf test file.';
|
|
$string['test_unoconvempty'] = 'The unoconv path is not set. Please review your path settings.';
|
|
$string['test_unoconvisdir'] = 'The unoconv path points to a folder, please include the unoconv program in the path you specify';
|
|
$string['test_unoconvnotestfile'] = 'The test document to be converted to PDF is missing.';
|
|
$string['test_unoconvnotexecutable'] = 'The unoconv path points to a file that is not executable';
|
|
$string['test_unoconvok'] = 'The unoconv path appears to be properly configured.';
|
|
$string['test_unoconvversionnotsupported'] = 'The version of unoconv you have installed is not supported.';
|
|
|