summaryrefslogtreecommitdiff
path: root/modules/path
diff options
context:
space:
mode:
authorNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 02:20:01 +0000
committerNeil Drumm <drumm@3064.no-reply.drupal.org>2006-11-26 02:20:01 +0000
commitb5bf8a8f476fe4214478fec9250e651164b0e76f (patch)
tree434eb5771bd9238d426be6c19d9c30730af1ab3e /modules/path
parentfb70944dc92345e3f62c5ff810c805ffdeacd4bb (diff)
downloadbrdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.gz
brdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.bz2
#97824 by Gurpartap. Move enclosing elements outside of their t().
Diffstat (limited to 'modules/path')
-rw-r--r--modules/path/path.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/path/path.module b/modules/path/path.module
index 1679e8e43..81a5ad28f 100644
--- a/modules/path/path.module
+++ b/modules/path/path.module
@@ -26,9 +26,9 @@ function path_help($section) {
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@path">Path page</a>.', array('@path' => 'http://drupal.org/handbook/modules/path/')) .'</p>';
return $output;
case 'admin/build/path':
- return t("<p>Drupal provides users complete control over URLs through aliasing. This feature is typically used to make URLs human-readable or easy to remember. For example, one could map the relative URL 'node/1' onto 'about'. Each system path can have multiple aliases.</p>");
+ return '<p>'. t("Drupal provides users complete control over URLs through aliasing. This feature is typically used to make URLs human-readable or easy to remember. For example, one could map the relative URL 'node/1' onto 'about'. Each system path can have multiple aliases.") .'</p>';
case 'admin/build/path/add':
- return t('<p>Enter the path you wish to create the alias for, followed by the name of the new alias.</p>');
+ return '<p>'. t('Enter the path you wish to create the alias for, followed by the name of the new alias.') .'</p>';
}
}