Skip to content

Commit

Permalink
MDL-42338 lti_mod: convert hardcoded string.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwijaya committed Oct 24, 2013
1 parent 34fb354 commit 45535d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mod/lti/grade.php
Expand Up @@ -153,7 +153,7 @@

$table = str_replace('<!--table body-->', $rows, $html);

$title = 'Submissions for ' . $lti->name;
$title = get_string('submissionsfor', 'lti', $lti->name);

$PAGE->set_title(format_string($title , true));
$PAGE->set_heading($course->fullname);
Expand Down
1 change: 1 addition & 0 deletions mod/lti/lang/en/lti.php
Expand Up @@ -396,6 +396,7 @@
For example, if all launches to the tool provider just take the user to a landing page instead of to a specific resource.';
$string['size'] = 'Size parameters';
$string['submission'] = 'Submission';
$string['submissionsfor'] = 'Submissions for {$a}';
$string['toggle_debug_data'] = 'Toggle Debug Data';
$string['tool_config_not_found'] = 'Tool configuration not found for this URL.';
$string['tool_settings'] = 'Tool Settings';
Expand Down

0 comments on commit 45535d9

Please sign in to comment.