summaryrefslogtreecommitdiff
path: root/modules/system/system.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-11-09 01:22:40 +0000
committerDries Buytaert <dries@buytaert.net>2003-11-09 01:22:40 +0000
commit5bed42e8ef00736d5658cdf83e67ed68205089da (patch)
tree22e1737c2e28796a830b8dcb391a211897a11c10 /modules/system/system.module
parent1f273dac01429237ada147633138266a490ec378 (diff)
downloadbrdo-5bed42e8ef00736d5658cdf83e67ed68205089da.tar.gz
brdo-5bed42e8ef00736d5658cdf83e67ed68205089da.tar.bz2
- Translation fix: the date in the calendar block could not be translated. Patch by Goba.
- Translation fix: made the word 'permission' translatable in the system module' help text. Patch by Goba. - Translation fix: the ping module's help text was translated twice. Patch by Goba.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r--modules/system/system.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module
index 706710231..2b920d501 100644
--- a/modules/system/system.module
+++ b/modules/system/system.module
@@ -13,7 +13,7 @@ function system_help($section = "admin/help#system") {
$output = t("Select which themes are available to your users and specify the default theme.");
break;
case 'admin/system/modules':
- $output = t("Modules are plugins for Drupal that extend its core functionality. Here you can select which modules are enabled. On the left hand side click on the name of the module for their individual configurations. Once a module is enabled, you will need to grant %permissions to users.", array("%permissions" => l("permissions", "admin/user/permission")));
+ $output = t("Modules are plugins for Drupal that extend its core functionality. Here you can select which modules are enabled. On the left hand side click on the name of the module for their individual configurations. Once a module is enabled, you will need to grant %permissions to users.", array("%permissions" => l(t("permissions"), "admin/user/permission")));
break;
case 'admin/system/filters':
$output = t("Filters fit between the raw text in a node and the HTML output. They allow you to replace text selectively. Uses include automatic conversion of emoticons into graphics and filtering HTML content from users' submissions.");