mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
MDL-22054 Fixed 'Edit' string in core strings
AMOS BEGIN CPY [edit,core],[edita,core] REM do not forget to drop placeholder from [edit,core] in all languages AMOS END
This commit is contained in:
parent
6c2e2008bd
commit
0831fd7841
3 changed files with 6 additions and 5 deletions
|
@ -47,7 +47,7 @@ $tabs = $row = $inactive = $activated = array();
|
|||
$attemptscount = $DB->count_records('lesson_grades', array('lessonid'=>$lesson->id));
|
||||
|
||||
$row[] = new tabobject('view', "$CFG->wwwroot/mod/lesson/view.php?id=$cm->id", get_string('preview', 'lesson'), get_string('previewlesson', 'lesson', format_string($lesson->name)));
|
||||
$row[] = new tabobject('edit', "$CFG->wwwroot/mod/lesson/edit.php?id=$cm->id", get_string('edit', 'lesson'), get_string('edit', 'moodle', format_string($lesson->name)));
|
||||
$row[] = new tabobject('edit', "$CFG->wwwroot/mod/lesson/edit.php?id=$cm->id", get_string('edit', 'lesson'), get_string('edita', 'moodle', format_string($lesson->name)));
|
||||
$row[] = new tabobject('reports', "$CFG->wwwroot/mod/lesson/report.php?id=$cm->id", get_string('reports', 'lesson'), get_string('viewreports2', 'lesson', $attemptscount));
|
||||
if (has_capability('mod/lesson:edit', $context)) {
|
||||
$row[] = new tabobject('essay', "$CFG->wwwroot/mod/lesson/essay.php?id=$cm->id", get_string('manualgrading', 'lesson'));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue