From 1025ad87633f30d00a3c283b3e8ad2bafa384a5c Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 5 Mar 2007 10:04:55 +0100 Subject: more I18N work --- opml.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'opml.php') diff --git a/opml.php b/opml.php index 0113fe9e0..0b1f4915b 100644 --- a/opml.php +++ b/opml.php @@ -100,24 +100,24 @@ print " - OPML Utility + ".__("OPML Utility")."

".__('OPML Utility')."

"; if (function_exists('domxml_open_file')) { - print "

Importing OPML (using DOMXML extension)...

"; + print __("

Importing OPML (using DOMXML extension)...

"); require_once "modules/opml_domxml.php"; opml_import_domxml($link, $owner_uid); } else { - print "

Importing OPML (using DOMDocument extension)...

"; + print __("

Importing OPML (using DOMDocument extension)...

"); require_once "modules/opml_domdoc.php"; opml_import_domdoc($link, $owner_uid); } print "
- +
"; print ""; -- cgit v1.2.3-54-g00ecf