summaryrefslogtreecommitdiff
path: root/modules/help.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-05 10:37:40 +0100
committerAndrew Dolgov <[email protected]>2007-03-05 10:37:40 +0100
commit31cc42f602d569e3dd0592ea574767e73cd21f8b (patch)
treefa031d3ab1a8ec50d5390a982bac8c7e1ab95f56 /modules/help.php
parentcc17c20574dbc0d2756bd6f75ca68588867eac25 (diff)
more I18N work
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>";