diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-11-13 20:27:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-11-13 20:27:30 +0000 |
commit | bfc650573cd090d8c0b240e846d82f48153eafad (patch) | |
tree | 290d3cf9ef21d3ab3de29931991068ccbc06decb | |
parent | 939a1f01a14bb9d764a6379d84c0963f23586ad3 (diff) | |
download | brdo-bfc650573cd090d8c0b240e846d82f48153eafad.tar.gz brdo-bfc650573cd090d8c0b240e846d82f48153eafad.tar.bz2 |
- Patch #297225 by keith.smith: massaged the text on the modules page a bit.
-rw-r--r-- | modules/system/system.module | 7 | ||||
-rw-r--r-- | modules/update/update.module | 1 |
2 files changed, 3 insertions, 5 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index b4f796986..3b8d74500 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -73,10 +73,9 @@ function system_help($path, $arg) { case 'admin/build/themes/settings': return '<p>' . t('These options control the default display settings for your entire site, across all themes. Unless they have been overridden by a specific theme, these settings will be used.') . '</p>'; case 'admin/build/modules': - $output = '<p>' . t('Modules are plugins that extend Drupal\'s core functionality. Enable modules by selecting the <em>Enabled</em> checkboxes below and clicking the <em>Save configuration</em> button. Once a module is enabled, new <a href="@permissions">permissions</a> may be available.)', array('@permissions' => url('admin/user/permissions'))) . '</p>'; - $output .= '<p>' . t('It is important that <a href="@update-php">update.php</a> is run every time a module is updated to a newer version.', array('@update-php' => $base_url . '/update.php')) . '</p>'; - $output .= '<p>' . t('You can find all administration tasks belonging to a particular module on the <a href="@by-module">administration by module page</a>.', array('@by-module' => url('admin/by-module'))) . '</p>'; - $output .= '<p>' . t('To extend the functionality of your site, a number of <a href="@modules">contributed modules</a> are available.', array('@modules' => 'http://drupal.org/project/modules')) . '</p>'; + $output = '<p>' . t('Modules are plugins that extend Drupal\'s core functionality. To enable modules, select the <em>Enabled</em> checkboxes below and click the <em>Save configuration</em> button. To further extend your site\'s functionality, a number of <a href="@modules">contributed modules</a> are available for download.', array('@permissions' => url('admin/user/permissions'), '@modules' => 'http://drupal.org/project/modules')) . '</p>'; + $output .= '<p>' . t('Module-related tasks can be located on the <a href="@by-module">administration by module page</a>. New <a href="@permissions">module-related permissions</a> may also become available as new modules are enabled.', array('@by-module' => url('admin/by-module'), '@permissions' => url('admin/user/permissions'))) . '</p>'; + $output .= '<p>' . t('Each time a module is updated, it is important that <a href="@update-php">update.php</a> is run. To help manage the update process, the <em>Update status</em> module, if enabled, provides <a href="@updates">information on new versions of modules (and themes)</a> as they are released. Regular review of the <a href="@updates">available updates page</a> is essential to maintaining a secure and current site.', array('@update-php' => $base_url . '/update.php', '@updates' => url('admin/reports/updates'))) . '</p>'; return $output; case 'admin/build/modules/uninstall': return '<p>' . t('The uninstall process removes all data related to a module. To uninstall a module, you must first disable it. Not all modules support this feature.') . '</p>'; diff --git a/modules/update/update.module b/modules/update/update.module index f2489aab2..7ccf2bc5d 100644 --- a/modules/update/update.module +++ b/modules/update/update.module @@ -76,7 +76,6 @@ function update_help($path, $arg) { } } } - return '<p>' . t('See the <a href="@available_updates">available updates</a> page for information on installed modules and themes with new versions released.', array('@available_updates' => url('admin/reports/updates'))) . '</p>'; case 'admin/reports/updates/settings': case 'admin/reports/status': |