mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
Merged MDL-12294 Fixed some strings
This commit is contained in:
parent
0de80bcfe6
commit
c8fbaa75b4
@ -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')) {
|
||||
|
@ -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.';
|
||||
|
Loading…
x
Reference in New Issue
Block a user