From 9cf26d08901316b36aa5466636c19c3ccb1dc644 Mon Sep 17 00:00:00 2001 From: Frederic Massart Date: Fri, 26 Apr 2013 14:13:30 +0800 Subject: [PATCH] MDL-39368 url: Renaming sections of the settings form --- mod/url/lang/en/url.php | 3 +-- mod/url/mod_form.php | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/mod/url/lang/en/url.php b/mod/url/lang/en/url.php index 26602966942..c005d199365 100644 --- a/mod/url/lang/en/url.php +++ b/mod/url/lang/en/url.php @@ -57,10 +57,9 @@ Note that URLs can also be added to any other resource or activity type through $string['modulename_link'] = 'mod/url/view'; $string['modulenameplural'] = 'URLs'; $string['neverseen'] = 'Never seen'; -$string['optionsheader'] = 'Options'; $string['page-mod-url-x'] = 'Any URL module page'; $string['parameterinfo'] = '&parameter=variable'; -$string['parametersheader'] = 'Parameters'; +$string['parametersheader'] = 'URL variables'; $string['parametersheader_help'] = 'Some internal Moodle variables may be automatically appended to the URL. Type your name for the parameter into each text box(es) and then select the required matching variable.'; $string['pluginadministration'] = 'URL module administration'; $string['pluginname'] = 'URL'; diff --git a/mod/url/mod_form.php b/mod/url/mod_form.php index 072e318c25d..768eebd3a45 100644 --- a/mod/url/mod_form.php +++ b/mod/url/mod_form.php @@ -55,7 +55,7 @@ class mod_url_mod_form extends moodleform_mod { $mform->setExpanded('content'); //------------------------------------------------------- - $mform->addElement('header', 'optionssection', get_string('optionsheader', 'url')); + $mform->addElement('header', 'optionssection', get_string('appearance')); if ($this->current->instance) { $options = resourcelib_get_displayoptions(explode(',', $config->displayoptions), $this->current->display);