Commit | Line | Data |
---|---|---|
3a37efa8 MN |
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 | * Lang strings for the My overview block. | |
19 | * | |
20 | * @package block_myoverview | |
21 | * @copyright Mark Nelson <markn@moodle.com> | |
22 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
23 | */ | |
24 | ||
e4b4b9e7 BB |
25 | $string['all'] = 'All'; |
26 | $string['aria:allcourses'] = 'All courses'; | |
27 | $string['aria:card'] = 'Switch to card view'; | |
28 | $string['aria:controls'] = 'Course overview controls'; | |
29 | $string['aria:courseimage'] = 'Course image:'; | |
30 | $string['aria:coursename'] = 'Course name:'; | |
31 | $string['aria:coursesummary'] = 'Course summary text:'; | |
32 | $string['aria:courseprogress'] = 'Course progress:'; | |
33 | $string['aria:displaydropdown'] = 'Display dropdown'; | |
34 | $string['aria:future'] = 'Show future courses'; | |
35 | $string['aria:groupingdropdown'] = 'Grouping dropdown'; | |
36 | $string['aria:inprogress'] = 'Show in courses in progress'; | |
37 | $string['aria:lastaccessed'] = 'Sort courses by last accessed date'; | |
38 | $string['aria:list'] = 'Switch to list view'; | |
39 | $string['aria:title'] = 'Sort courses by title'; | |
40 | $string['aria:past'] = 'Show past courses'; | |
41 | $string['aria:summary'] = 'Switch to summary view'; | |
42 | $string['aria:sortingdropdown'] = 'Sorting dropdown'; | |
43 | $string['card'] = 'Card'; | |
44 | $string['courseprogress'] = 'Course progress:'; | |
45 | $string['complete'] = 'Complete'; | |
0c19b2c8 | 46 | $string['favorite'] = 'Favourite'; |
992c6304 | 47 | $string['future'] = 'Future'; |
e4b4b9e7 BB |
48 | $string['future:aria'] = 'View future courses'; |
49 | $string['hidden'] = 'Hidden'; | |
992c6304 | 50 | $string['inprogress'] = 'In progress'; |
e4b4b9e7 BB |
51 | $string['inprogress:aria'] = 'View in progress courses'; |
52 | $string['lastaccessed'] = 'Last accessed'; | |
53 | $string['lastaccessed:aria'] = 'Sort course by lastaccessed'; | |
54 | $string['list'] = 'List'; | |
b9ce916a | 55 | $string['morecourses'] = 'More courses'; |
4671ae63 RW |
56 | $string['myoverview:addinstance'] = 'Add a new course overview block'; |
57 | $string['myoverview:myaddinstance'] = 'Add a new course overview block to Dashboard'; | |
cbd3c4fe | 58 | $string['nocoursesfuture'] = 'No future courses'; |
e4b4b9e7 BB |
59 | $string['nocoursesinprogress'] = 'No in progress courses'; |
60 | $string['nocourses'] = 'No courses'; | |
cbd3c4fe | 61 | $string['nocoursespast'] = 'No past courses'; |
992c6304 | 62 | $string['past'] = 'Past'; |
4671ae63 | 63 | $string['pluginname'] = 'Course overview'; |
0c19b2c8 | 64 | $string['privacy:metadata'] = 'The Course overview block does not store any personal data.'; |
e4b4b9e7 BB |
65 | $string['summary'] = 'Summary'; |
66 | $string['title'] = 'Title'; | |
67 | $string['viewcoursename'] = 'View course {$a}'; | |
68 | $string['viewcourse'] = 'View course'; | |
69 |