Merged MDL-12294 Fixed some strings

This commit is contained in:
moodler 2008-02-26 08:34:53 +00:00
parent 0de80bcfe6
commit c8fbaa75b4
2 changed files with 4 additions and 2 deletions

View File

@ -161,7 +161,7 @@ if (has_capability('moodle/grade:manage', $systemcontext)
}
// 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
@ -176,7 +176,7 @@ if (has_capability('moodle/grade:manage', $systemcontext)
// 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')) {

View File

@ -163,6 +163,7 @@ $string['export'] = 'Export';
$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';
@ -272,6 +273,7 @@ $string['importoutcomes'] = 'Import outcomes';
$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.';