mirror of
https://github.com/moodle/moodle.git
synced 2025-01-17 13:38:32 +01:00
aafbdf7a6b
The short name of the cc licenses are trailed with a suffix containing the version number (current 3.0 and 4.0). The old cc* licenses become the new cc-*-3.0 licenses and are disables, because the new cc*-4.0 licenses are the current ones.
50 lines
2.5 KiB
PHP
50 lines
2.5 KiB
PHP
<?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 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';
|