mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
completion MDL-24512 Fix hard coded string "More details"
This commit is contained in:
parent
5da8e7d5eb
commit
6d35a09b0b
@ -195,7 +195,7 @@ class block_completionstatus extends block_base {
|
||||
$this->content->text .= $shtml.'</tbody></table>';
|
||||
|
||||
// Display link to detailed view
|
||||
$this->content->footer = '<br><a href="'.$CFG->wwwroot.'/blocks/completionstatus/details.php?course='.$COURSE->id.'">More details</a>';
|
||||
$this->content->footer = '<br><a href="'.$CFG->wwwroot.'/blocks/completionstatus/details.php?course='.$COURSE->id.'">'.get_string('moredetails', 'completion').'</a>';
|
||||
|
||||
return $this->content;
|
||||
}
|
||||
|
@ -123,6 +123,7 @@ $string['manualselfcompletion']='Manual self completion';
|
||||
$string['markcomplete']='Mark complete';
|
||||
$string['markedcompleteby']='Marked complete by {$a}';
|
||||
$string['markingyourselfcomplete']='Marking yourself complete';
|
||||
$string['moredetails']='More details';
|
||||
$string['notenroled']='You are not enroled as a student in this course';
|
||||
$string['notyetstarted']='Not yet started';
|
||||
$string['overallcriteriaaggregation']='Overall criteria type aggregation';
|
||||
|
Loading…
x
Reference in New Issue
Block a user