summaryrefslogtreecommitdiff
path: root/modules/path
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-07-07 09:43:34 +0000
committerDries Buytaert <dries@buytaert.net>2009-07-07 09:43:34 +0000
commitd3c9cbfc3a49cf269a943fef220b60a107fef363 (patch)
treebd508d8e7eeacb4570774cb6fb68e98f0e31e6df /modules/path
parent16ab61287495c11e815dec353fdaaa240c087ee5 (diff)
downloadbrdo-d3c9cbfc3a49cf269a943fef220b60a107fef363.tar.gz
brdo-d3c9cbfc3a49cf269a943fef220b60a107fef363.tar.bz2
- Patch #504098 by eigenator, Xano, Keith.smith et al: better help text for path administration page.
Diffstat (limited to 'modules/path')
-rw-r--r--modules/path/path.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/path/path.module b/modules/path/path.module
index 8608a34d2..ce18747e9 100644
--- a/modules/path/path.module
+++ b/modules/path/path.module
@@ -23,7 +23,7 @@ function path_help($path, $arg) {
$output .= '<p>' . t('For more information, see the online handbook entry for <a href="@path">Path module</a>.', array('@path' => 'http://drupal.org/handbook/modules/path/')) . '</p>';
return $output;
case 'admin/settings/path':
- return '<p>' . t("Drupal provides complete control over URLs through aliasing, which is often used to make URLs more readable or easy to remember. For example, the alias 'about' may be mapped onto the post at the system path 'node/1', creating a more meaningful URL. Each system path can have multiple aliases.") . '</p>';
+ return '<p>' . t("An alias defines a different name for an existing URL path - for example, the alias 'about' for the URL path 'node/1'. A URL path can have multiple aliases.") . '</p>';
case 'admin/settings/path/add':
return '<p>' . t('Enter the path you wish to create the alias for, followed by the name of the new alias.') . '</p>';
}