Merge branch 'MDL-30198-master' of git://github.com/ankitagarwal/moodle

This commit is contained in:
Sam Hemelryk 2011-12-12 13:54:48 +13:00
commit d35fc666d6

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');