mirror of
https://github.com/moodle/moodle.git
synced 2025-08-10 11:26:41 +02:00
MDL-63058 block_myoverview: starring and storing preferences
This commit is contained in:
parent
b81722e22f
commit
3cfff88516
39 changed files with 1403 additions and 101 deletions
|
@ -23,14 +23,19 @@
|
|||
*/
|
||||
|
||||
$string['all'] = 'All';
|
||||
$string['addtofavourites'] = 'Star this course';
|
||||
$string['aria:addtofavourites'] = 'Star for';
|
||||
$string['aria:allcourses'] = 'All courses';
|
||||
$string['aria:card'] = 'Switch to card view';
|
||||
$string['aria:controls'] = 'Course overview controls';
|
||||
$string['aria:courseactions'] = 'Actions for current course';
|
||||
$string['aria:courseimage'] = 'Course image:';
|
||||
$string['aria:coursename'] = 'Course name:';
|
||||
$string['aria:coursesummary'] = 'Course summary text:';
|
||||
$string['aria:courseprogress'] = 'Course progress:';
|
||||
$string['aria:displaydropdown'] = 'Display dropdown';
|
||||
$string['aria:favourite'] = 'Course is starred';
|
||||
$string['aria:favourites'] = 'Show starred courses';
|
||||
$string['aria:future'] = 'Show future courses';
|
||||
$string['aria:groupingdropdown'] = 'Grouping dropdown';
|
||||
$string['aria:inprogress'] = 'Show in courses in progress';
|
||||
|
@ -38,32 +43,44 @@ $string['aria:lastaccessed'] = 'Sort courses by last accessed date';
|
|||
$string['aria:list'] = 'Switch to list view';
|
||||
$string['aria:title'] = 'Sort courses by title';
|
||||
$string['aria:past'] = 'Show past courses';
|
||||
$string['aria:removefromfavourites'] = 'Remove star for';
|
||||
$string['aria:summary'] = 'Switch to summary view';
|
||||
$string['aria:sortingdropdown'] = 'Sorting dropdown';
|
||||
$string['card'] = 'Card';
|
||||
$string['courseprogress'] = 'Course progress:';
|
||||
$string['complete'] = 'Complete';
|
||||
$string['favorite'] = 'Favorite';
|
||||
$string['favourite'] = 'Starred course';
|
||||
$string['favourites'] = 'Starred';
|
||||
$string['future'] = 'Future';
|
||||
$string['future:aria'] = 'View future courses';
|
||||
$string['hidden'] = 'Hidden';
|
||||
$string['inprogress'] = 'In progress';
|
||||
$string['inprogress:aria'] = 'View in progress courses';
|
||||
$string['notfavourite'] = 'Not starred';
|
||||
$string['lastaccessed'] = 'Last accessed';
|
||||
$string['lastaccessed:aria'] = 'Sort course by lastaccessed';
|
||||
$string['list'] = 'List';
|
||||
$string['morecourses'] = 'More courses';
|
||||
$string['myoverview:addinstance'] = 'Add a new course overview block';
|
||||
$string['myoverview:myaddinstance'] = 'Add a new course overview block to Dashboard';
|
||||
$string['nocoursesfuture'] = 'No future courses';
|
||||
$string['nocoursesinprogress'] = 'No in progress courses';
|
||||
$string['nocourses'] = 'No courses';
|
||||
$string['nocoursespast'] = 'No past courses';
|
||||
$string['past'] = 'Past';
|
||||
$string['pluginname'] = 'Course overview';
|
||||
$string['privacy:metadata'] = 'The myoverview block does not store any personal data.';
|
||||
$string['privacy:metadata:overviewsortpreference'] = 'The myoverview block sort preference.';
|
||||
$string['privacy:metadata:overviewviewpreference'] = 'The myoverview block view preference.';
|
||||
$string['privacy:metadata:overviewgroupingpreference'] = 'The myoverview block grouping preference.';
|
||||
$string['removefromfavourites'] = 'Unstar this course';
|
||||
$string['summary'] = 'Summary';
|
||||
$string['title'] = 'Title';
|
||||
$string['viewcoursename'] = 'View course {$a}';
|
||||
$string['viewcourse'] = 'View course';
|
||||
|
||||
// Deprecated since Moodle 3.6.
|
||||
$string['defaulttab'] = 'Default tab';
|
||||
$string['defaulttab_desc'] = 'The tab that will be displayed when a user first views their course overview. When returning to their course overview, the user\'s active tab is remembered.';
|
||||
$string['morecourses'] = 'More courses';
|
||||
$string['nocoursesinprogress'] = 'No in progress courses';
|
||||
$string['nocoursesfuture'] = 'No future courses';
|
||||
$string['nocoursespast'] = 'No past courses';
|
||||
$string['noevents'] = 'No upcoming activities due';
|
||||
$string['next30days'] = 'Next 30 days';
|
||||
$string['next7days'] = 'Next 7 days';
|
||||
$string['recentlyoverdue'] = 'Recently overdue';
|
||||
$string['sortbycourses'] = 'Sort by courses';
|
||||
$string['sortbydates'] = 'Sort by dates';
|
||||
$string['timeline'] = 'Timeline';
|
||||
$string['viewcoursename'] = 'View course {$a}';
|
||||
$string['privacy:metadata:overviewlasttab'] = 'This stores the last tab selected by the user on the overview block.';
|
||||
|
||||
|
|
15
blocks/myoverview/lang/en/deprecated.txt
Normal file
15
blocks/myoverview/lang/en/deprecated.txt
Normal file
|
@ -0,0 +1,15 @@
|
|||
defaulttab,block_myoverview
|
||||
defaulttab_desc,block_myoverview
|
||||
morecourses,block_myoverview
|
||||
nocoursesinprogress,block_myoverview
|
||||
nocoursesfuture,block_myoverview
|
||||
nocoursespast,block_myoverview
|
||||
noevents,block_myoverview
|
||||
next30days,block_myoverview
|
||||
next7days,block_myoverview
|
||||
recentlyoverdue,block_myoverview
|
||||
sortbycourses,block_myoverview
|
||||
sortbydates,block_myoverview
|
||||
timeline,block_myoverview
|
||||
viewcoursename,block_myoverview
|
||||
privacy:metadata:overviewlasttab,block_myoverview
|
Loading…
Add table
Add a link
Reference in a new issue