summaryrefslogtreecommitdiff
path: root/modules/node
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-09-26 20:50:12 +0000
committerDries Buytaert <dries@buytaert.net>2001-09-26 20:50:12 +0000
commitf9a84cd216797f6a38eb3be5db3b1dff6670baf6 (patch)
tree0d206c9b7299ba528e6bf3ae6d8175c5f6aaf84c /modules/node
parentb0cf3a39294a79e69b0108e9d3f45338c80de4bb (diff)
downloadbrdo-f9a84cd216797f6a38eb3be5db3b1dff6670baf6.tar.gz
brdo-f9a84cd216797f6a38eb3be5db3b1dff6670baf6.tar.bz2
- Enhancement: added better help and translations to node.module.
(patch by Alex)
Diffstat (limited to 'modules/node')
-rw-r--r--modules/node/node.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/node/node.module b/modules/node/node.module
index e5ac89f7d..aae7afdaf 100644
--- a/modules/node/node.module
+++ b/modules/node/node.module
@@ -42,10 +42,10 @@ function node_conf_options() {
}
function node_conf_filters() {
- $output .= form_select("Enable HTML tags", "filter_html", variable_get("filter_html", 0), array("Disabled", "Enabled"), "Allow HTML and PHP tags in user-contributed content.");
- $output .= form_textfield("Allowed HTML tags", "allowed_html", variable_get("allowed_html", "<A><B><BLOCKQUOTE><DD><DL><DT><I><LI><OL><U><UL>"), 64, 128, "If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON' attributes and unclosed tags are always stripped.");
+ $output .= form_select(t("Enable HTML tags"), "filter_html", variable_get("filter_html", 0), array("Disabled", "Enabled"), t("Allow HTML and PHP tags in user-contributed content."));
+ $output .= form_textfield(t("Allowed HTML tags"), "allowed_html", variable_get("allowed_html", "<A><B><BLOCKQUOTE><DD><DL><DT><I><LI><OL><U><UL>"), 64, 128, t("If enabled, optionally specify tags which should not be stripped. 'STYLE' attributes, 'ON' attributes and unclosed tags are always stripped."));
$output .= "<hr />";
- $output .= form_select("Enable link tags", "filter_link", variable_get("filter_link", 0), array("Disabled", "Enabled"), "Substitute special [[link]] tags.");
+ $output .= form_select(t("Enable link tags"), "filter_link", variable_get("filter_link", 0), array("Disabled", "Enabled"), t("Substitute special [[nodesubject|text]] tags. Your browser will display 'text', and when you click on it your browser will open the node with the subject 'nodesubject'. Please be aware that you'll need to copy the subject of the target node exactly in order to use this feature."));
$output .= "<hr />";
return $output;
}