summaryrefslogtreecommitdiff
path: root/opml.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-03-05 10:04:55 +0100
committerAndrew Dolgov <[email protected]>2007-03-05 10:04:55 +0100
commit1025ad87633f30d00a3c283b3e8ad2bafa384a5c (patch)
tree4991677b859501c3a2b5161ebaa92cec0d37e696 /opml.php
parentd1db26aa1c18130accf6e536a063efadbab65a1d (diff)
more I18N work
Diffstat (limited to 'opml.php')
-rw-r--r--opml.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/opml.php b/opml.php
index 0113fe9e0..0b1f4915b 100644
--- a/opml.php
+++ b/opml.php
@@ -100,24 +100,24 @@
print "<html>
<head>
<link rel=\"stylesheet\" href=\"utility.css\" type=\"text/css\">
- <title>OPML Utility</title>
+ <title>".__("OPML Utility")."</title>
</head>
<body>
<div class=\"floatingLogo\"><img src=\"images/ttrss_logo.png\"></div>
<h1>".__('OPML Utility')."</h1>";
if (function_exists('domxml_open_file')) {
- print "<p>Importing OPML (using DOMXML extension)...</p>";
+ print __("<p>Importing OPML (using DOMXML extension)...</p>");
require_once "modules/opml_domxml.php";
opml_import_domxml($link, $owner_uid);
} else {
- print "<p>Importing OPML (using DOMDocument extension)...</p>";
+ print __("<p>Importing OPML (using DOMDocument extension)...</p>");
require_once "modules/opml_domdoc.php";
opml_import_domdoc($link, $owner_uid);
}
print "<br><form method=\"GET\" action=\"prefs.php\">
- <input type=\"submit\" value=\"Return to preferences\">
+ <input type=\"submit\" value=\"".__("Return to preferences")."\">
</form>";
print "</body></html>";