MDL-16170 - Improve naming of the plugins category in the admin menu.
Yes, I know I changed an existing language string, which is supposed to be wrong, but I changed it so that the string 'plugin' is now 'Plugin'. I just cannot see that as a wrong change.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
if ($hassiteconfig) {
|
||||
|
||||
$ADMIN->add('modules', new admin_category('modsettings', get_string('activities')));
|
||||
$ADMIN->add('modules', new admin_category('modsettings', get_string('activitymodules')));
|
||||
$ADMIN->add('modsettings', new admin_page_managemods());
|
||||
if ($modules = $DB->get_records('modules')) {
|
||||
$modulebyname = array();
|
||||
|
||||
@@ -23,9 +23,7 @@ $ADMIN->add('root', new admin_category('courses', get_string('courses','admin'))
|
||||
$ADMIN->add('root', new admin_category('grades', get_string('grades')));
|
||||
$ADMIN->add('root', new admin_category('location', get_string('location','admin')));
|
||||
$ADMIN->add('root', new admin_category('language', get_string('language')));
|
||||
|
||||
$ADMIN->add('root', new admin_category('modules', get_string('plugins', 'admin')));
|
||||
|
||||
$ADMIN->add('root', new admin_category('security', get_string('security','admin')));
|
||||
$ADMIN->add('root', new admin_category('appearance', get_string('appearance','admin')));
|
||||
$ADMIN->add('root', new admin_category('frontpage', get_string('frontpage','admin')));
|
||||
|
||||
@@ -556,7 +556,7 @@ $string['pgclusterdescription'] = 'PostgreSQL version/cluster parameter for comm
|
||||
$string['php50restricted'] = 'PHP 5.0.x has a number of known problems, please upgrade to 5.1.x or downgrade to 4.3.x or 4.4.x';
|
||||
$string['pleaseregister'] = 'Please register your site to remove this button';
|
||||
$string['pleaserefreshregistration'] = 'Your site has been registered with moodle.org, please consider updating the registration if significant changes happened since your last update, on $a';
|
||||
$string['plugins'] = 'Modules';
|
||||
$string['plugins'] = 'Plugins';
|
||||
$string['profilecategory'] = 'Category';
|
||||
$string['profilecategoryname'] = 'Category name (must be unique)';
|
||||
$string['profilecategorynamenotunique'] = 'This category name is already in use';
|
||||
|
||||
@@ -12,6 +12,7 @@ $string['activity'] = 'Activity';
|
||||
$string['activityclipboard'] = 'Moving this activity: <b>$a</b>';
|
||||
$string['activityiscurrentlyhidden'] = 'Sorry, this activity is currently hidden';
|
||||
$string['activitymodule'] = 'Activity module';
|
||||
$string['activitymodules'] = 'Activity modules';
|
||||
$string['activityreport'] = 'Activity report';
|
||||
$string['activityreports'] = 'Activity reports';
|
||||
$string['activityselect'] = 'Select this activity to be moved elsewhere';
|
||||
|
||||
Reference in New Issue
Block a user