summaryrefslogtreecommitdiff
path: root/modules/page/page.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-10-03 14:55:27 +0000
committerDries Buytaert <dries@buytaert.net>2003-10-03 14:55:27 +0000
commit058971c33b8dca63fd33b188328fc3e3ec9fb372 (patch)
treede80494d6eca73119a1ff2d3a9fe448ea0c13497 /modules/page/page.module
parent35f3bcd0426ea207e40c4a2dd6cae8a1d26c794e (diff)
downloadbrdo-058971c33b8dca63fd33b188328fc3e3ec9fb372.tar.gz
brdo-058971c33b8dca63fd33b188328fc3e3ec9fb372.tar.bz2
- Help improvements and translation improvements from Michael. Thanks!
Diffstat (limited to 'modules/page/page.module')
-rw-r--r--modules/page/page.module5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/page/page.module b/modules/page/page.module
index 204d7b8f1..5826402ac 100644
--- a/modules/page/page.module
+++ b/modules/page/page.module
@@ -9,14 +9,15 @@ function page_help($section = "admin/page/help") {
case 'admin/page/help':
$output .= "<p>The page module is used to create a <i>static page</i>. Unlike a story, a static page is a persistent web page on your site which usually shortcuts the typical lifecycle of user generated content (i.e. submit -&gt; moderate -&gt; post -&gt; comment). A static page is usually linked from the main navigation bar, using whatever text the author wishes. To create a static page without this navigation link, simply skip the link text field.</p>";
$output .= "<p>Site pages, unlike many other forms of Drupal content, may be made of PHP code in addition to HTML and text. All Drupal objects and functions are available to a site administrator.</p>";
+ $output = t($output);
break;
case 'admin/system/modules':
- $output = "Enables the creation of a static pages that can be added to the navigation system.";
+ $output = t("Enables the creation of a static pages that can be added to the navigation system.");
break;
}
- return t($output);
+ return $output;
}
function page_system($field) {