Skip to content

Commit

Permalink
Merged MDL-12294 Fixed some strings
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Feb 26, 2008
1 parent 0de80bc commit c8fbaa7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/settings/grades.php
Expand Up @@ -161,7 +161,7 @@
}

// Imports
$ADMIN->add('grades', new admin_category('gradeimports', get_string('imports')));
$ADMIN->add('grades', new admin_category('gradeimports', get_string('importsettings', 'grades')));
foreach (get_list_of_plugins('grade/import') as $plugin) {

// Include all the settings commands for this plugin if there are any
Expand All @@ -176,7 +176,7 @@


// Exports
$ADMIN->add('grades', new admin_category('gradeexports', get_string('exports')));
$ADMIN->add('grades', new admin_category('gradeexports', get_string('exportsettings', 'grades')));
foreach (get_list_of_plugins('grade/export') as $plugin) {
// Include all the settings commands for this plugin if there are any
if (file_exists($CFG->dirroot.'/grade/export/'.$plugin.'/settings.php')) {
Expand Down
2 changes: 2 additions & 0 deletions lang/en_utf8/grades.php
Expand Up @@ -163,6 +163,7 @@
$string['exportfeedback'] = 'Include feedback in export';
$string['exportplugins'] = 'Export plugins';
$string['exportselectedoutcomes'] = 'Export selected outcomes';
$string['exportsettings'] = 'Export settings';
$string['exportto'] = 'Export to';
$string['extracredit'] = 'Extra Credit';
$string['extracreditwarning'] = 'Note: Setting all items for a category to extra credit will effectively remove them from the grade calculation. Since there will be no point total';
Expand Down Expand Up @@ -272,6 +273,7 @@
$string['importoutcomesuccess'] = 'Imported outcome \"$a->name\" with ID #$a->id';
$string['importplugins'] = 'Import plugins';
$string['importpreview'] = 'Import preview';
$string['importsettings'] = 'Import settings';
$string['importstandard'] = 'Import as standard outcomes';
$string['importskippednomanagescale'] = 'You don\'t have permission to add a new scale, so outcome "$a" was skipped as it required creating a new scale';
$string['importskippedoutcome'] = 'An outcome with shortname \"$a\" already exists in this context, the one in the imported file was skipped.';
Expand Down

0 comments on commit c8fbaa7

Please sign in to comment.