]> git.wh0rd.org - tt-rss.git/commitdiff
opml.php: I18N
authorAndrew Dolgov <fox@madoka.spb.ru>
Tue, 26 Dec 2006 05:20:02 +0000 (06:20 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Tue, 26 Dec 2006 05:20:02 +0000 (06:20 +0100)
opml.php

index 10220d43d9febd2d1c21a7beff3063554483fda5..be7c1816dffd48766583fbda209a1df37e09a8dd 100644 (file)
--- a/opml.php
+++ b/opml.php
                        <body>
                        <h1><img src=\"images/ttrss_logo.png\"></h1>
                        <div class=\"opmlBody\">
-                       <h2>Importing OPML...</h2>";
-
-               if (WEB_DEMO_MODE) {
-                       print "OPML import is disabled in demo-mode.";
-                       print "<p><a class=\"button\" href=\"prefs.php\">
-                       Return to preferences</a></div></body></html>";
-
-                       return;
-               }
+                       <h2>"._('Importing OPML...')."</h2>";
 
                if (is_file($_FILES['opml_file']['tmp_name'])) {
                        $dom = domxml_open_file($_FILES['opml_file']['tmp_name']);
 
                                                        if (db_num_rows($result) == 0) {
 
-                                                               print "Adding category <b>$cat_title</b>...<br>";
+                                                               printf(_("Adding category <b>%s</b>..."), $cat_title);
+                                                               print "<br>";
 
                                                                db_query($link, "INSERT INTO ttrss_feed_categories
                                                                        (title,owner_uid) 
                                                        (<a href=\"$feed_url\">rss</a>)</td>";
 
                                                if (db_num_rows($result) > 0) {
-                                                       print "<td>Already imported.</td>";
+                                                       print "<td>"._("Already imported.")."</td>";
                                                } else {
 
                                                        if ($cat_id) {
 
                                                        db_query($link, $add_query);
                                                        
-                                                       print "<td><b>Done.</b></td>";
+                                                       print "<td><b>"._('Done.')."</b></td>";
                                                }
 
                                                print "</tr>";
                                        print "</table>";
 
                                } else {
-                                       print "<div class=\"error\">Error: can't find body element.</div>";
+                                       print "<div class=\"error\">"._("Error: can't find body element.")."</div>";
                                }
                        } else {
-                               print "<div class=\"error\">Error while parsing document.</div>";
+                               print "<div class=\"error\">"._("Error while parsing document.")."</div>";
                        }
 
                } else {
-                       print "<div class=\"error\">Error: please upload OPML file.</div>";
+                       print "<div class=\"error\">"._("Error: please upload OPML file.")."</div>";
                }
 
                print "<p><a class=\"button\" href=\"prefs.php\">
-                       Return to preferences</a>";
+                       "._("Return to preferences")."</a>";
 
                print "</div></body></html>";