diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareMinimalUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareMinimalUpgradePathTest.php index 595639429b34fde52902a7335622e7579ec7bacb..9aefbe885761f86141d13f2fddb34361d2ecdb0d 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareMinimalUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareMinimalUpgradePathTest.php @@ -78,7 +78,7 @@ public function testBasicMinimalUpgrade() { $this->assertText(t('Configuration')); $this->assertText(t('Reports')); $this->assertText(t('Structure')); - $this->assertText(t('Modules')); + $this->assertText(t('Extend')); // Confirm that no {menu_links} entry exists for user/autocomplete. $result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField(); diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareStandardUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareStandardUpgradePathTest.php index 1ac554c5e68b3792e2cddabc5c8924a771f77989..5de864a04e7e0a2eb533059e5a5de2e892bf4348 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareStandardUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/BareStandardUpgradePathTest.php @@ -79,7 +79,7 @@ public function testBasicStandardUpgrade() { $this->assertText(t('Configuration')); $this->assertText(t('Reports')); $this->assertText(t('Structure')); - $this->assertText(t('Modules')); + $this->assertText(t('Extend')); // Confirm that no {menu_links} entry exists for user/autocomplete. $result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField(); diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledMinimalUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledMinimalUpgradePathTest.php index bd74caab5e76183f96e4eadf8dce38f05b2db695..7f47a810d810f41d6631c260f02700950e31f35b 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledMinimalUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledMinimalUpgradePathTest.php @@ -78,7 +78,7 @@ public function testFilledMinimalUpgrade() { $this->assertText(t('Configuration')); $this->assertText(t('Reports')); $this->assertText(t('Structure')); - $this->assertText(t('Modules')); + $this->assertText(t('Extend')); // Confirm that no {menu_links} entry exists for user/autocomplete. $result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField(); diff --git a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php index 02428305e2cb16c25c2ca8b95660f57754ab1ecd..5f007859784ecd1c79f82b212153e78e58025fbb 100644 --- a/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php +++ b/core/modules/system/lib/Drupal/system/Tests/Upgrade/FilledStandardUpgradePathTest.php @@ -79,7 +79,7 @@ public function testFilledStandardUpgrade() { $this->assertText(t('Configuration')); $this->assertText(t('Reports')); $this->assertText(t('Structure')); - $this->assertText(t('Modules')); + $this->assertText(t('Extend')); // Confirm that no {menu_links} entry exists for user/autocomplete. $result = db_query('SELECT COUNT(*) FROM {menu_links} WHERE link_path = :user_autocomplete', array(':user_autocomplete' => 'user/autocomplete'))->fetchField(); diff --git a/core/modules/system/system.module b/core/modules/system/system.module index 922b8a7de5435cbb8a58ec804d3c6d353dd893fb..80ba5ad0afd5402026ad890e44bdd67a0d980115 100644 --- a/core/modules/system/system.module +++ b/core/modules/system/system.module @@ -718,8 +718,8 @@ function system_menu() { // Modules. $items['admin/modules'] = array( - 'title' => 'Modules', - 'description' => 'Extend site functionality.', + 'title' => 'Extend', + 'description' => 'Add and enable modules to extend site functionality.', 'page callback' => 'drupal_get_form', 'page arguments' => array('system_modules'), 'access arguments' => array('administer modules'),