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 --- modules/opml_domdoc.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'modules/opml_domdoc.php') diff --git a/modules/opml_domdoc.php b/modules/opml_domdoc.php index 156e46c7f..bd10284b2 100644 --- a/modules/opml_domdoc.php +++ b/modules/opml_domdoc.php @@ -41,7 +41,7 @@ if (db_num_rows($result) == 0) { - print "Adding category $cat_title...
"; + printf(__("Adding category %s...
"), $cat_title); db_query($link, "INSERT INTO ttrss_feed_categories (title,owner_uid) @@ -86,7 +86,7 @@ (rss)"; if (db_num_rows($result) > 0) { - print "Already imported."; + print "".__('Already imported.').""; } else { if ($cat_id) { @@ -104,7 +104,7 @@ db_query($link, $add_query); - print "Done."; + print "".__('Done.').""; } print ""; @@ -115,11 +115,11 @@ print ""; } else { - print "
Error while parsing document.
"; + print "
".__('Error while parsing document.')."
"; } } else { - print "
Error: please upload OPML file.
"; + print "
".__('Error: please upload OPML file.')."
"; } -- cgit v1.2.3