Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.2.x will end 22 April 2024 (12 months).
  • Bug fixes for security issues in 4.2.x will end 7 October 2024 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.1.x is supported too.

Differences Between: [Versions 400 and 402] [Versions 401 and 402] [Versions 402 and 403]

   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 'course', language 'en', branch 'MOODLE_20_STABLE'
  19   *
  20   * @package   core_courseformat
  21   * @copyright 2021 Ferran Recio <ferran@moodle.com>
  22   * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['availability_show'] = 'Show on course page';
  26  $string['availability_show_help'] = 'Available to students (subject to any access restrictions which may be set).';
  27  $string['availability_hide'] = 'Hide on course page';
  28  $string['availability_hide_help'] = 'Not available to students.';
  29  $string['availability_stealth'] = 'Make available but don\'t show on course page';
  30  $string['availability_stealth_help'] = 'Available to students if you provide a link. Activities will still appear in the gradebook and other reports.';
  31  $string['bulkedit'] = 'Bulk edit';
  32  $string['bulkeditingcourse'] = 'Bulk edit course: {$a}';
  33  $string['bulkcancel'] = 'Close bulk edit';
  34  $string['bulkselection'] = '{$a} selected';
  35  $string['bulkselection_plural'] = '{$a} selected';
  36  $string['cm_delete_feedback'] = '{$a->name} has been deleted.';
  37  $string['cm_delete_feedback_batch'] = 'The selected {$a->count} activities have been deleted.';
  38  $string['cm_duplicate_feedback'] = '{$a->name} has been duplicated.';
  39  $string['cm_duplicate_feedback_batch'] = 'The selected {$a->count} activities have been duplicated.';
  40  $string['cm_hide_feedback'] = '{$a->name} is now hidden.';
  41  $string['cm_hide_feedback_batch'] = 'The selected {$a->count} activities are now hidden.';
  42  $string['cm_moveleft_feedback'] = '{$a->name} has been moved to the left.';
  43  $string['cm_moveright_feedback'] = '{$a->name} has been moved to the right.';
  44  $string['cm_show_feedback'] = '{$a->name} is now shown.';
  45  $string['cm_show_feedback_batch'] = 'The selected {$a->count} activities are now shown.';
  46  $string['cm_stealth_feedback'] = '{$a->name} is now available but not shown on the course page.';
  47  $string['cmavailability'] = 'Activity availability';
  48  $string['cmdelete_info'] = 'This will delete {$a->name} and any user data it contains.';
  49  $string['cmdelete_title'] = 'Delete activity?';
  50  $string['cmsdelete'] = 'Delete activities';
  51  $string['cmsdelete_info'] = 'This will delete {$a->count} activities and any user data they contain.';
  52  $string['cmsdelete_title'] = 'Delete selected activities?';
  53  $string['cmsduplicate'] = 'Duplicate activities';
  54  $string['cmsmove'] = 'Move activities';
  55  $string['cmmove_title'] = 'Move activity';
  56  $string['cmmove_info'] = 'Move {$a} after';
  57  $string['cmsmove_title'] = 'Move selected activities';
  58  $string['cmsmove_info'] = 'Move {$a} activities after';
  59  $string['courseindex'] = 'Course index';
  60  $string['nobulkaction'] = 'No bulk actions available';
  61  $string['preference:coursesectionspreferences'] = 'Section user preferences for course {$a}';
  62  $string['privacy:metadata:preference:coursesectionspreferences'] = 'Section user preferences like collapsed and expanded.';
  63  $string['section_hide_feedback'] = 'The course section {$a->name} has been hidden.';
  64  $string['section_hide_feedback_batch'] = 'The selected {$a->count} course sections have been hidden.';
  65  $string['section_show_feedback'] = 'The course section {$a->name} has been shown.';
  66  $string['section_show_feedback_batch'] = 'The selected {$a->count} course sections have been shown.';
  67  $string['section_delete_feedback'] = 'The course section {$a->name} has been deleted';
  68  $string['section_delete_feedback_batch'] = 'The selected {$a->count} course sections have been deleted';
  69  $string['sectionavailability_title'] = 'Section availability';
  70  $string['sectiondelete_info'] = 'This will delete {$a->name} and all the activities it contains.';
  71  $string['sectiondelete_title'] = 'Delete section?';
  72  $string['sectionsavailability'] = 'Sections availability';
  73  $string['sectionsavailability_title'] = 'Sections availability';
  74  $string['sectionsdelete'] = 'Delete sections';
  75  $string['sectionmove_info'] = 'Move {$a} after';
  76  $string['sectionmove_title'] = 'Move section';
  77  $string['sectionsdelete_info'] = 'This will delete {$a->count} sections and all the activities they contain.';
  78  $string['sectionsdelete_title'] = 'Delete selected sections?';
  79  $string['sectionsmove'] = 'Move sections';
  80  $string['sectionsmove_info'] = 'Move {$a} sections after';
  81  $string['sectionsmove_title'] = 'Move selected sections';
  82  $string['selectcm'] = 'Select activity {$a}';
  83  $string['selectsection'] = 'Select section {$a}';