Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.
   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_licensemanager', language 'en'
  19   *
  20   * @package   tool_licensemanager
  21   * @copyright 2019 Tom Dickman <tomdickman@catalyst-au.net>
  22   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  $string['pluginname'] = 'Licence manager';
  25  $string['createlicense'] = 'Create custom licence';
  26  $string['createlicensebuttontext'] = 'Create licence';
  27  $string['deletelicense'] = 'Delete licence';
  28  $string['deletelicenseconfirmmessage'] = 'Are you sure you want to delete this licence?';
  29  $string['deletelicensename'] = 'Delete licence \'{$a}\'';
  30  $string['disablelicensename'] = 'Disable licence \'{$a}\'';
  31  $string['duplicatelicenseshortname'] = 'The licence short name must be unique.';
  32  $string['editlicense'] = 'Edit licence';
  33  $string['editlicensename'] = 'Edit licence \'{$a}\'';
  34  $string['enablelicensename'] = 'Enable licence \'{$a}\'';
  35  $string['fullname'] = 'Licence full name';
  36  $string['fullnamerequirederror'] = 'You must enter a full name for the licence.';
  37  $string['invalidurl'] = 'Invalid source URL';
  38  $string['license'] = 'Licence';
  39  $string['licensemanager'] = 'Licence manager';
  40  $string['movelicensedownname'] = 'Move \'{$a}\' licence down';
  41  $string['movelicenseupname'] = 'Move \'{$a}\' licence up';
  42  $string['privacy:metadata'] = 'The tool_licensemanager plugin stores no personal data.';
  43  $string['shortname'] = 'Licence short name';
  44  $string['sitedefaultlicenselock'] = 'This is the site default licence. It cannot be disabled.';
  45  $string['shortnamerequirederror'] = 'You must enter a short name for the licence.';
  46  $string['source'] = 'Licence source';
  47  $string['source_help'] = 'The URL (with http:// or https:// prefix) where the licence terms and conditions can be found.';
  48  $string['sourcerequirederror'] = 'You must enter a valid URL for licence source.';
  49  $string['version'] = 'Licence version';
  50  $string['versioncannotbefuture'] = 'Licence version cannot be set to a future date.';
  51  $string['version_help'] = 'Publication date of the licence version being utilised.';
  52