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   * Language strings.
  19   *
  20   * @package    tool_lpmigrate
  21   * @copyright  2016 Frédéric Massart - FMCorz.net
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  defined('MOODLE_INTERNAL') || die();
  26  
  27  $string['allowedcourses'] = 'Courses allowed';
  28  $string['allowedcourses_help'] = 'Select courses to be migrated to the new framework. If no course is specified, then all courses will be migrated.';
  29  $string['continuetoframeworks'] = 'Continue to frameworks';
  30  $string['coursecompetencymigrations'] = 'Course competency migrations';
  31  $string['coursemodulecompetencymigrations'] = 'Course activity and resource competency migrations';
  32  $string['coursesfound'] = 'Courses found';
  33  $string['coursemodulesfound'] = 'Course activities or resources found';
  34  $string['coursestartdate'] = 'Courses start date';
  35  $string['coursestartdate_help'] = 'If enabled, courses with a start date prior to the date specified will not be migrated.';
  36  $string['disallowedcourses'] = 'Disallowed courses';
  37  $string['disallowedcourses_help'] = 'Select any courses which should NOT be migrated to the new framework.';
  38  $string['errorcannotmigratetosameframework'] = 'Cannot migrate from and to the same framework.';
  39  $string['errorcouldnotmapcompetenciesinframework'] = 'Could not map to any competency in this framework.';
  40  $string['errors'] = 'Errors';
  41  $string['errorwhilemigratingcoursecompetencywithexception'] = 'Error while migrating the course competency: {$a}';
  42  $string['errorwhilemigratingmodulecompetencywithexception'] = 'Error while migrating the activity or resource competency: {$a}';
  43  $string['excludethese'] = 'Exclude these';
  44  $string['explanation'] = 'This tool can be used to update a competency framework to a newer version. It searches for competencies in courses and activities using the older framework, and updates the links to point to the new framework.
  45  
  46  It is not recommended to edit the old set of competencies directly, as this would change all of the competencies that have already been awarded in users\' learning plans.
  47  
  48  Typically you would import the new version of a framework, hide the old framework, then use this tool to migrate new courses to the new framework.';
  49  $string['findingcoursecompetencies'] = 'Finding course competencies';
  50  $string['findingmodulecompetencies'] = 'Finding activity and resource competencies';
  51  $string['frameworks'] = 'Frameworks';
  52  $string['limittothese'] = 'Limit to these';
  53  $string['lpmigrate:frameworksmigrate'] = 'Migrate frameworks';
  54  $string['migrateframeworks'] = 'Migrate frameworks';
  55  $string['migratefrom'] = 'Migrate from';
  56  $string['migratefrom_help'] = 'Select the older framework currently in use.';
  57  $string['migratemore'] = 'Migrate more';
  58  $string['migrateto'] = 'Migrate to';
  59  $string['migrateto_help'] = 'Select the newer version of the framework. It is only possible to select a framework which is not hidden.';
  60  $string['migratingcourses'] = 'Migrating courses';
  61  $string['missingmappings'] = 'Missing mappings';
  62  $string['performmigration'] = 'Perform migration';
  63  $string['pluginname'] = 'Competencies migration tool';
  64  $string['results'] = 'Results';
  65  $string['startdatefrom'] = 'Start date from';
  66  $string['unmappedin'] = 'Unmapped in {$a}';
  67  $string['warningcouldnotremovecoursecompetency'] = 'The course competency could not be removed.';
  68  $string['warningcouldnotremovemodulecompetency'] = 'The activity or resource competency could not be removed.';
  69  $string['warningdestinationcoursecompetencyalreadyexists'] = 'The destination course competency already exists.';
  70  $string['warningdestinationmodulecompetencyalreadyexists'] = 'The destination activity or resource competency already exists.';
  71  $string['warnings'] = 'Warnings';
  72  $string['privacy:metadata'] = 'The Competencies migration tool plugin does not store any personal data.';