Merge branch 'MDL-30198-m21' of git://github.com/ankitagarwal/moodle into MOODLE_21_STABLE

This commit is contained in:
Sam Hemelryk
2011-12-12 13:57:23 +13:00
+1 -1
View File
@@ -17,7 +17,7 @@ class mod_glossary_import_form extends moodleform {
$options = array();
$options['current'] = get_string('currentglossary', 'glossary');
$options['newglossary'] = get_string('newglossary', 'glossary');
$mform->addElement('select', 'dest', get_string('currentglossary', 'glossary'), $options);
$mform->addElement('select', 'dest', get_string('destination', 'glossary'), $options);
$mform->addHelpButton('dest', 'destination', 'glossary');
$mform->addElement('checkbox', 'catsincl', get_string('importcategories', 'glossary'));
$submit_string = get_string('submit');