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.

Differences Between: [Versions 310 and 311] [Versions 311 and 400] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403] [Versions 39 and 311]

   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 'contentbank', language 'en'
  19   *
  20   * @package    core_contentbank
  21   * @copyright  2020 Amaia Anabitarte <amaia@moodle.com>
  22   * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  23   */
  24  
  25  $string['author'] = 'Author';
  26  $string['contentbank'] = 'Content bank';
  27  $string['close'] = 'Close';
  28  $string['contentbankpreferences'] = 'Content bank preferences';
  29  $string['contentdeleted'] = 'The content has been deleted.';
  30  $string['contentname'] = 'Content name';
  31  $string['contentnotdeleted'] = 'An error was encountered while trying to delete the content.';
  32  $string['contentnotrenamed'] = 'An error was encountered while trying to rename the content.';
  33  $string['contentrenamed'] = 'The content has been renamed.';
  34  $string['contentsmoved'] = 'Content bank contents moved to {$a}.';
  35  $string['contenttypenoaccess'] = 'You cannot view this {$a} instance.';
  36  $string['contenttypenoedit'] = 'You can not edit this content';
  37  $string['contentvisibilitychanged'] = 'The content has been made {$a}.';
  38  $string['contentvisibilitynotset'] = 'An error was encountered while trying to set the content visibility.';
  39  $string['contextnotallowed'] = 'You are not allowed to access the content bank in this context.';
  40  $string['emptynamenotallowed'] = 'Empty name is not allowed';
  41  $string['eventcontentcreated'] = 'Content created';
  42  $string['eventcontentdeleted'] = 'Content deleted';
  43  $string['eventcontentreplaced'] = 'Content replaced with file';
  44  $string['eventcontentupdated'] = 'Content updated';
  45  $string['eventcontentuploaded'] = 'Content uploaded';
  46  $string['eventcontentviewed'] = 'Content viewed';
  47  $string['errordeletingcontentfromcategory'] = 'Error deleting content from category {$a}.';
  48  $string['errornofile'] = 'A compatible file is needed to create content.';
  49  $string['deletecontent'] = 'Delete content';
  50  $string['deletecontentconfirm'] = 'Are you sure you want to delete the content <em>\'{$a->name}\'</em> and all associated files? This action cannot be undone.';
  51  $string['deletecontentconfirmlinked'] = 'The content will only be deleted from the content bank. Any places which currently link to it will be automatically updated to use a copy of the content instead.';
  52  $string['displaydetails'] = 'Display content bank with file details';
  53  $string['displayicons'] = 'Display content bank with icons';
  54  $string['file'] = 'Upload content';
  55  $string['file_help'] = 'Files may be stored in the content bank for use in courses. Only files used by content types enabled on the site may be uploaded.';
  56  $string['itemsfound'] = '{$a} items found';
  57  $string['lastmodified'] = 'Last modified';
  58  $string['name'] = 'Content';
  59  $string['nocontentavailable'] = 'No content available';
  60  $string['nocontenttypes'] = 'No content types available';
  61  $string['notavailable'] = 'Sorry, this content is not available.';
  62  $string['nopermissiontodelete'] = 'You do not have permission to delete content.';
  63  $string['nopermissiontomanage'] = 'You do not have permission to manage content.';
  64  $string['notvalidpackage'] = 'Sorry, this file is not valid.';
  65  $string['privacy:metadata:content:contenttype'] = 'The contenttype plugin of the content in the content bank.';
  66  $string['privacy:metadata:content:name'] = 'Name of the content in the content bank.';
  67  $string['privacy:metadata:content:timecreated'] = 'The time when the content was created.';
  68  $string['privacy:metadata:content:timemodified'] = 'The time when the content was modified.';
  69  $string['privacy:metadata:content:usercreated'] = 'The user has created the content.';
  70  $string['privacy:metadata:content:usermodified'] = 'The last user who modified the content.';
  71  $string['privacy:metadata:contentbankcontent'] = 'Stores the content of the content bank.';
  72  $string['privacy:metadata:userid'] = 'The ID of the user creating or modifying content bank content.';
  73  $string['privacy:request:preference:set'] = 'The value of the setting \'{$a->name}\' was \'{$a->value}\'';
  74  $string['rename'] = 'Rename';
  75  $string['renamecontent'] = 'Rename content';
  76  $string['replacecontent'] = 'Replace with file';
  77  $string['searchcontentbankbyname'] = 'Search for content by name';
  78  $string['size'] = 'Size';
  79  $string['timecreated'] = 'Time created';
  80  $string['type'] = 'Type';
  81  $string['unsupported'] = 'This content type is not supported.';
  82  $string['upload'] = 'Upload';
  83  $string['uses'] = 'Places linked';
  84  $string['visibilitychoicepublic'] = 'Public';
  85  $string['visibilitychoiceunlisted'] = 'Unlisted';
  86  $string['public'] = 'public';
  87  $string['unlisted'] = 'unlisted';
  88  $string['visibilitypref'] = 'Default content visibility';
  89  $string['visibilitypref_help'] = 'Content you create in the content bank will use this visibility setting by default.';
  90  $string['visibilitysetpublic'] = 'Make public';
  91  $string['visibilitysetunlisted'] = 'Make unlisted';
  92  $string['visibilitytitleunlisted'] = '{$a} (Unlisted)';