summaryrefslogtreecommitdiff
path: root/modules/help.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/help.php')
-rw-r--r--modules/help.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/help.php b/modules/help.php
index 90c63cfb8..751d6082e 100644
--- a/modules/help.php
+++ b/modules/help.php
@@ -13,21 +13,21 @@
$tid = sprintf("%d", $_GET["tid"]);
- print "<div id=\"infoBoxTitle\">Help</div>";
+ print "<div id=\"infoBoxTitle\">".__('Help')."</div>";
print "<div class='infoBoxContents'>";
if (file_exists("help/$tid.php")) {
include("help/$tid.php");
} else {
- print "<p>Help topic not found.</p>";
+ print "<p>".__("Help topic not found.")."</p>";
}
print "</div>";
print "<div align='center'>
<input type='submit' class='button'
- onclick=\"closeInfoBox()\" value=\"Close this window\"></div>";
+ onclick=\"closeInfoBox()\" value=\"".__('Close this window')."\"></div>";
if (!$_GET["noheaders"]) {
print "</body></html>";