mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
f2a9bb6edb
Or when a course category is moved/deleted
61 lines
3.4 KiB
PHP
61 lines
3.4 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 'contentbank', language 'en'
|
|
*
|
|
* @package core_contentbank
|
|
* @copyright 2020 Amaia Anabitarte <amaia@moodle.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
$string['author'] = 'Author';
|
|
$string['contentbank'] = 'Content bank';
|
|
$string['contentdeleted'] = 'The content has been deleted.';
|
|
$string['contentname'] = 'Content name';
|
|
$string['contentnotdeleted'] = 'An error was encountered while trying to delete the content.';
|
|
$string['contentnotrenamed'] = 'An error was encountered while trying to rename the content.';
|
|
$string['contentrenamed'] = 'The content has been renamed.';
|
|
$string['contentsmoved'] = 'Content bank contents moved to {$a}.';
|
|
$string['eventcontentcreated'] = 'Content created';
|
|
$string['eventcontentdeleted'] = 'Content deleted';
|
|
$string['eventcontentupdated'] = 'Content updated';
|
|
$string['eventcontentuploaded'] = 'Content uploaded';
|
|
$string['eventcontentviewed'] = 'Content viewed';
|
|
$string['errordeletingcontentfromcategory'] = 'Error deleting content from category {$a}.';
|
|
$string['deletecontent'] = 'Delete content';
|
|
$string['deletecontentconfirm'] = 'Are you sure you want to delete the content <em>\'{$a->name}\'</em> and all associated files? This action cannot be undone.';
|
|
$string['file'] = 'Upload content';
|
|
$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.';
|
|
$string['itemsfound'] = '{$a} items found';
|
|
$string['name'] = 'Content';
|
|
$string['nopermissiontodelete'] = 'You do not have permission to delete content.';
|
|
$string['nopermissiontomanage'] = 'You do not have permission to manage content.';
|
|
$string['privacy:metadata:content:contenttype'] = 'The contenttype plugin of the content in the content bank.';
|
|
$string['privacy:metadata:content:name'] = 'Name of the content in the content bank.';
|
|
$string['privacy:metadata:content:timecreated'] = 'The time when the content was created.';
|
|
$string['privacy:metadata:content:timemodified'] = 'The time when the content was modified.';
|
|
$string['privacy:metadata:content:usercreated'] = 'The user has created the content.';
|
|
$string['privacy:metadata:content:usermodified'] = 'The last user who modified the content.';
|
|
$string['privacy:metadata:contentbankcontent'] = 'Stores the content of the content bank.';
|
|
$string['privacy:metadata:userid'] = 'The ID of the user creating or modifying content bank content.';
|
|
$string['rename'] = 'Rename';
|
|
$string['renamecontent'] = 'Rename content';
|
|
$string['searchcontentbankbyname'] = 'Search for content by name';
|
|
$string['timecreated'] = 'Time created';
|
|
$string['unsupported'] = 'This content type is not supported.';
|
|
$string['upload'] = 'Upload';
|