1 |
efrain |
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 |
* English strings for tool_recyclebin.
|
|
|
19 |
*
|
|
|
20 |
* @package tool_recyclebin
|
|
|
21 |
* @copyright 2015 Skylar Kelty <S.Kelty@kent.ac.uk>
|
|
|
22 |
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
defined('MOODLE_INTERNAL') || die();
|
|
|
26 |
|
|
|
27 |
$string['alertdeleted'] = '\'{$a->name}\' has been deleted.';
|
|
|
28 |
$string['alertemptied'] = 'Recycle bin has been emptied.';
|
|
|
29 |
$string['alertrestored'] = '\'{$a->name}\' has been restored.';
|
|
|
30 |
$string['autohide'] = 'Auto hide';
|
|
|
31 |
$string['autohide_desc'] = 'Automatically hides the recycle bin link when the bin is empty.';
|
|
|
32 |
$string['categorybinenable'] = 'Enable category recycle bin';
|
|
|
33 |
$string['categorybinexpiry'] = 'Course lifetime';
|
|
|
34 |
$string['categorybinexpiry_desc'] = 'How long should a deleted course remain in the recycle bin?';
|
|
|
35 |
$string['coursebinenable'] = 'Enable course recycle bin';
|
|
|
36 |
$string['coursebinexpiry'] = 'Item lifetime';
|
|
|
37 |
$string['coursebinexpiry_desc'] = 'How long should a deleted item remain in the recycle bin?';
|
|
|
38 |
$string['datedeleted'] = 'Date deleted';
|
|
|
39 |
$string['deleteall'] = 'Delete all';
|
|
|
40 |
$string['deleteallconfirm'] = 'Are you sure you want to delete all items from the recycle bin?';
|
|
|
41 |
$string['deleteconfirm'] = 'Are you sure you want to delete the selected item from the recycle bin?';
|
|
|
42 |
$string['deleteexpirywarning'] = 'Contents will be permanently deleted after {$a}.';
|
|
|
43 |
$string['eventitemcreated'] = 'Item created';
|
|
|
44 |
$string['eventitemcreated_desc'] = 'Item created with ID {$a->objectid}.';
|
|
|
45 |
$string['eventitemdeleted'] = 'Item deleted';
|
|
|
46 |
$string['eventitemdeleted_desc'] = 'Item with ID {$a->objectid} deleted.';
|
|
|
47 |
$string['eventitemrestored'] = 'Item restored';
|
|
|
48 |
$string['eventitemrestored_desc'] = 'Item with ID {$a->objectid} restored.';
|
|
|
49 |
$string['invalidcontext'] = 'Invalid context supplied.';
|
|
|
50 |
$string['noitemsinbin'] = 'There are no items in the recycle bin.';
|
|
|
51 |
$string['notenabled'] = 'Sorry, but the recycle bin has been disabled by the administrator.';
|
|
|
52 |
$string['pluginname'] = 'Recycle bin';
|
|
|
53 |
$string['taskcleanupcategorybin'] = 'Cleanup category recycle bin';
|
|
|
54 |
$string['taskcleanupcoursebin'] = 'Cleanup course recycle bin';
|
|
|
55 |
$string['recyclebin:deleteitems'] = 'Delete recycle bin items';
|
|
|
56 |
$string['recyclebin:restoreitems'] = 'Restore recycle bin items';
|
|
|
57 |
$string['recyclebin:viewitems'] = 'View recycle bin items';
|
|
|
58 |
$string['privacy:metadata'] = 'The Recycle bin plugin does not store any personal data.';
|