diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-02-01 21:04:42 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-02-01 21:04:42 +0000 |
commit | dc938c533bbf94f2ce2400cfc006d1f1ced8e96d (patch) | |
tree | f7a94dc4fa8079e30bb7b6f44c46c0249004e19d /modules/forum/forum.module | |
parent | 928435a565a58facca9c01d1fc186b5e3cfc0a2c (diff) | |
download | brdo-dc938c533bbf94f2ce2400cfc006d1f1ced8e96d.tar.gz brdo-dc938c533bbf94f2ce2400cfc006d1f1ced8e96d.tar.bz2 |
- Patch #5567 by Goba: fixed t() functions, cleanup of locale module's help,
fixed translation issues in taxonomy module, etc.
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 516da7df5..8e0f5c601 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -72,7 +72,7 @@ function forum_settings() { $group .= form_radios(t("Default order"), "forum_order", variable_get("forum_order", "1"), $forder, t("The default display order for topics.")); $output .= form_group(t('Forum viewing options'), $group); - $group = form_textfield(t("Number of topics in block"), "forum_block_num", variable_get("forum_block_num", "5"), 5, 5, t("The number of topics to show in the \"Forum topics\" block. To enable the block, click ". l("here", "admin/system/block") .".")); + $group = form_textfield(t("Number of topics in block"), "forum_block_num", variable_get("forum_block_num", "5"), 5, 5, t("The number of topics to show in the \"Forum topics\" block. To enable the block, go to the <a href=\"%block-administration\">block administration</a> page.", array("%block-administration" => url("admin/system/block")))); $output .= form_group(t('"Forum topic" block settings'), $group); } } |