. /** * Strings for component 'license', language 'en', branch 'MOODLE_20_STABLE' * * @package core * @copyright 1999 onwards Martin Dougiamas {@link http://moodle.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ // Core licenses. $string['allrightsreserved'] = 'All rights reserved'; $string['public'] = 'Public domain'; $string['unknown'] = 'Licence not specified'; // Old cc-* 3.0 licenses that should be disabled and replaces by the 4.0 licenses from above. $string['cc'] = 'Creative Commons - 3.0 International'; $string['cc-nc'] = 'Creative Commons - NonCommercial 3.0 International'; $string['cc-nc-nd'] = 'Creative Commons - NonCommercial-NoDerivatives 3.0 International'; $string['cc-nc-sa'] = 'Creative Commons - NonCommercial-ShareAlike 3.0 International'; $string['cc-nd'] = 'Creative Commons - NoDerivatives 3.0 International'; $string['cc-sa'] = 'Creative Commons - ShareAlike 3.0 International'; // The new 4.0 licenses. $string['cc-4.0'] = 'Creative Commons - 4.0 International'; $string['cc-nc-4.0'] = 'Creative Commons - NonCommercial 4.0 International'; $string['cc-nc-nd-4.0'] = 'Creative Commons - NonCommercial-NoDerivatives 4.0 International'; $string['cc-nc-sa-4.0'] = 'Creative Commons - NonCommercial-ShareAlike 4.0 International'; $string['cc-nd-4.0'] = 'Creative Commons - NoDerivatives 4.0 International'; $string['cc-sa-4.0'] = 'Creative Commons - ShareAlike 4.0 International'; // Error messages. $string['cannotdeletecore'] = 'Cannot delete a standard licence'; $string['cannotdeletelicenseinuse'] = 'Cannot delete a licence which is currently assigned to one or more files'; $string['licensenotfoundshortname'] = 'Cannot find a licence with the short name \'{$a}\''; $string['missinglicensesortorder'] = 'Cannot set licence order, one or more installed licences is missing from new order';