Skip to content
Snippets Groups Projects
Commit d6b83978 authored by aaronkossler's avatar aaronkossler
Browse files

fixed string for empty remaining courses table.

parent 970932c4
Branches
Tags
No related merge requests found
......@@ -194,4 +194,18 @@ class interaction_remaining_table extends interaction_table {
return userdate($row->lastmodified, $dateformat);
}
/**
* This function is not part of the public api.
*/
public function print_nothing_to_display() {
global $OUTPUT;
// Render button to allow user to reset table preferences.
echo $this->render_reset_button();
$this->print_initials_bar();
echo $OUTPUT->box(get_string('noremainingcoursestodisplay', 'tool_lifecycle'));
}
}
......@@ -143,6 +143,7 @@ $string['nostepfound'] = 'Es konnte kein Schritt mit der gegeben Schrittid gefun
$string['noprocessfound'] = 'Es konnte kein Prozess mit der gegebenen Prozessid gefunden werden!';
$string['nocoursestodisplay'] = 'Es gibt derzeit keine Kurse, die Ihre Aufmerksamkeit erfordern!';
$string['noremainingcoursestodisplay'] = 'Es gibt derzeit keine verbleibenden Kurse!';
$string['course_backups_list_header'] = 'Kurssicherungen';
$string['backupcreated'] = 'Erstellt am';
......
......@@ -148,6 +148,7 @@ $string['nostepfound'] = 'A step with the given stepid could not be found!';
$string['noprocessfound'] = 'A process with the given processid could not be found!';
$string['nocoursestodisplay'] = 'There are currently no courses which require your attention!';
$string['noremainingcoursestodisplay'] = 'There are currently no remaining courses!';
$string['course_backups_list_header'] = 'Course backups';
$string['backupcreated'] = 'Created at';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment