]> git.wh0rd.org - tt-rss.git/blobdiff - modules/popup-dialog.php
check update daemon timestamp
[tt-rss.git] / modules / popup-dialog.php
index 240b09ba4b3a987774508857d6b8aeac73d79387..562093d9d6d5788ac2deb6b5928b5ef3c1d8fa16 100644 (file)
@@ -5,11 +5,11 @@
 
                if ($id == "explainError") {
 
-                       print "<div id=\"infoBoxTitle\">Notice</div>";
+                       print "<div id=\"infoBoxTitle\">".__('Notice')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
                        if ($param == 1) {
-                               print _("Update daemon is enabled in configuration, but daemon
+                               print __("Update daemon is enabled in configuration, but daemon
                                        process is not running, which prevents all feeds from updating. Please
                                        start the daemon process or contact instance owner.");
                        }
@@ -18,7 +18,7 @@
                                $msg = check_for_update($link, false);
 
                                if (!$msg) {
-                                       print _("You are running the latest version of Tiny Tiny RSS. The
+                                       print __("You are running the latest version of Tiny Tiny RSS. The
                                                fact that you are seeing this dialog is probably a bug.");
                                } else {
                                        print $msg;
 
                        }
 
+                       if ($param == 3) {
+                               print __("TT-RSS has detected that update daemon is taking too long to
+                                       perform a feed update. This could indicate a problem like crash
+                                       or a hang. Please check the daemon process or contact instance
+                                       owner.");
+                       }
+
                        print "</div>";
 
                        print "<div align='center'>";
 
                        print "<input class=\"button\"
                                type=\"submit\" onclick=\"return closeInfoBox()\" 
-                               value=\"Close this window\">";
+                               value=\"".__('Close this window')."\">";
 
                        print "</div>";
 
+                       return;
                }
 
                if ($id == "quickAddFeed") {
 
-                       print "<div id=\"infoBoxTitle\">Subscribe to feed</div>";
+                       print "<div id=\"infoBoxTitle\">".__('Subscribe to feed')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
-                       print "<form id='feed_add_form'>";
+                       print "<form id='feed_add_form' onsubmit='return false'>";
 
                        print "<input type=\"hidden\" name=\"op\" value=\"pref-feeds\">";
-                       print "<input type=\"hidden\" name=\"quiet\" value=\"1\">";
+                       /* print "<input type=\"hidden\" name=\"quiet\" value=\"1\">"; */
                        print "<input type=\"hidden\" name=\"subop\" value=\"add\">"; 
+                       print "<input type=\"hidden\" name=\"from\" value=\"tt-rss\">"; 
 
                        print "<table width='100%'>
                        <tr><td>Feed URL:</td><td>
                                <input class=\"iedit\" onblur=\"javascript:enableHotkeys()\" 
-                                       onkeypress=\"return filterCR(event, qafAdd)\"
+                                       onkeypress=\"return filterCR(event, qaddFeed)\"
                                        onkeyup=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
+                                       onchange=\"toggleSubmitNotEmpty(this, 'fadd_submit_btn')\"
                                        onfocus=\"javascript:disableHotkeys()\" name=\"feed_url\"></td></tr>";
                
                        if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                               print "<tr><td>Category:</td><td>";
+                               print "<tr><td>".__('Category:')."</td><td>";
                                print_feed_cat_select($link, "cat_id");                 
                                print "</td></tr>";
                        }
 
+/*                     print "<tr><td colspan='2'><div class='insensitive'>";
+
+                       print __("Some feeds require authentication. If you subscribe to such
+                               feed, you will have to enter your login and password in Feed Editor");
+
+                       print "</div></td></tr>"; */
+
                        print "</table>";
+
+                       print "<div id='fadd_login_prompt'><br/>
+                               <a href='javascript:showBlockElement(\"fadd_login_container\", 
+                                       \"fadd_login_prompt\")'>Click here if this feed requires authentication.</a></div>";
+
+                       print "<div id='fadd_login_container'>
+                               <table width='100%'>
+                                       <tr><td>Login:</td><td><input name='auth_login' class='iedit'></td></tr>
+                                       <tr><td>Password:</td><td><input type='password'
+                                               name='auth_pass' class='iedit'></td></tr>
+                               </table>
+                               </div>";
+
                        print "</form>";
 
                        print "<div align='right'>
                                <input class=\"button\"
                                        id=\"fadd_submit_btn\" disabled=\"true\"
-                                       type=\"submit\" onclick=\"return qafAdd()\" value=\"Subscribe\">
+                                       type=\"submit\" onclick=\"return qaddFeed()\" value=\"".__('Subscribe')."\">
                                <input class=\"button\"
                                        type=\"submit\" onclick=\"return closeInfoBox()\" 
-                                       value=\"Cancel\"></div>";
+                                       value=\"".__('Cancel')."\"></div>";
+
+                       return;
                }
 
                if ($id == "search") {
 
-                       print "<div id=\"infoBoxTitle\">Search</div>";
+                       print "<div id=\"infoBoxTitle\">".__('Search')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
-                       print "<form id='search_form'>";
+                       print "<form id='search_form'  onsubmit='return false'>";
 
                        #$active_feed_id = db_escape_string($_GET["param"]);
 
                        $active_feed_id = sprintf("%d", $params[0]);
                        $is_cat = $params[1] == "true";
 
-                       print "<table width='100%'><tr><td>Search:</td><td>";
+                       print "<table width='100%'><tr><td>".__('Search:')."</td><td>";
                        
                        print "<input name=\"query\" class=\"iedit\" 
                                onkeypress=\"return filterCR(event, search)\"
+                               onchange=\"toggleSubmitNotEmpty(this, 'search_submit_btn')\"
                                onkeyup=\"toggleSubmitNotEmpty(this, 'search_submit_btn')\"
                                value=\"\">
                        </td></tr>";
                        
-                       print "<tr><td>Where:</td><td>";
+                       print "<tr><td>".__('Where:')."</td><td>";
                        
                        print "<select name=\"search_mode\">
-                               <option value=\"all_feeds\">All feeds</option>";
+                               <option value=\"all_feeds\">".__('All feeds')."</option>";
                        
                        $feed_title = getFeedTitle($link, $active_feed_id);
 
                        }
                        
                        if ($active_feed_id && !$is_cat) {                              
-                               print "<option selected value=\"this_feed\">This feed ($feed_title)</option>";
+                               print "<option selected value=\"this_feed\">$feed_title</option>";
                        } else {
-                               print "<option disabled>This feed</option>";
+                               print "<option disabled>".__('This feed')."</option>";
                        }
 
                        if ($is_cat) {
                        }
 
                        if (get_pref($link, 'ENABLE_FEED_CATS') && ($active_feed_id > 0 || $is_cat)) {
-                               print "<option $cat_preselected value=\"this_cat\">This category ($feed_cat_title)</option>";
+                               print "<option $cat_preselected value=\"this_cat\">$feed_cat_title</option>";
                        } else {
-                               print "<option disabled>This category</option>";
+                               //print "<option disabled>".__('This category')."</option>";
                        }
 
                        print "</select></td></tr>"; 
 
-                       print "<tr><td>Match on:</td><td>";
+                       print "<tr><td>".__('Match on:')."</td><td>";
 
                        $search_fields = array(
-                               "title" => "Title",
-                               "content" => "Content",
-                               "both" => "Title or content");
+                               "title" => __("Title"),
+                               "content" => __("Content"),
+                               "both" => __("Title or content"));
 
                        print_select_hash("match_on", 3, $search_fields); 
                                
                        <input type=\"submit\" 
                                class=\"button\" onclick=\"javascript:search()\" 
                                id=\"search_submit_btn\" disabled=\"true\"
-                               value=\"Search\">
+                               value=\"".__('Search')."\">
                        <input class=\"button\"
                                type=\"submit\" onclick=\"javascript:searchCancel()\" 
-                               value=\"Cancel\"></div>";
+                               value=\"".__('Cancel')."\"></div>";
 
                        print "</div>";
 
+                       return;
+
                }
 
                if ($id == "quickAddLabel") {
-                       print "<div id=\"infoBoxTitle\">Create label</div>";
+                       print "<div id=\"infoBoxTitle\">".__('Create label')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
-                       print "<form id=\"label_edit_form\">";
+                       print "<form id=\"label_edit_form\" onsubmit='return false'>";
 
                        print "<input type=\"hidden\" name=\"op\" value=\"pref-labels\">";
                        print "<input type=\"hidden\" name=\"subop\" value=\"add\">"; 
 
                        print "<table width='100%'>";
 
-                       print "<tr><td>Caption:</td>
+                       print "<tr><td>".__('Caption:')."</td>
                                <td><input onkeypress=\"return filterCR(event, addLabel)\"
-                                        onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
-                                        name=\"description\" class=\"iedit\">";
+                                       onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
+                                       onchange=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
+                                       name=\"description\" class=\"iedit\">";
 
                        print "</td></tr>";
 
                        print "<tr><td colspan=\"2\">
-                               <p>SQL Expression:</p>";
+                               <p>".__('SQL Expression:')."</p>";
 
                        print "<textarea onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
                                         rows=\"4\" name=\"sql_exp\" class=\"iedit\"></textarea>";
 
                        print "<div align='right'>";
 
-                       print "<input type=\"submit\" onclick=\"labelTest()\" value=\"Test\">
+                       print "<input type=\"submit\" onclick=\"labelTest()\" value=\"".__('Test')."\">
                                ";
 
                        print "<input type=\"submit\" 
                                id=\"infobox_submit\"
                                disabled=\"true\"
                                class=\"button\" onclick=\"return addLabel()\" 
-                               value=\"Create\"> ";
+                               value=\"".__('Create')."\"> ";
 
                        print "<input class=\"button\"
                                type=\"submit\" onclick=\"return labelEditCancel()\" 
-                               value=\"Cancel\">";
+                               value=\"".__('Cancel')."\">";
+
+                       return;
                }
 
                if ($id == "quickAddFilter") {
 
                        $active_feed_id = db_escape_string($_GET["param"]);
 
-                       print "<div id=\"infoBoxTitle\">Create filter</div>";
+                       print "<div id=\"infoBoxTitle\">".__('Create filter')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
-                       print "<form id=\"filter_add_form\">";
+                       print "<form id=\"filter_add_form\" onsubmit='return false'>";
 
                        print "<input type=\"hidden\" name=\"op\" value=\"pref-filters\">";
                        print "<input type=\"hidden\" name=\"quiet\" value=\"1\">";
 
                        print "<table width='100%'>";
 
-                       print "<tr><td>Match:</td>
+                       print "<tr><td>".__('Match:')."</td>
                                <td><input onkeypress=\"return filterCR(event, qaddFilter)\"
-                                        onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
+                                       onkeyup=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
+                                       onchange=\"toggleSubmitNotEmpty(this, 'infobox_submit')\"
                                         name=\"reg_exp\" class=\"iedit\">";            
 
-                       print "</td></tr><tr><td>On field:</td><td>";
+                       print "</td></tr><tr><td>".__('On field:')."</td><td>";
 
                        print_select_hash("filter_type", 1, $filter_types, "class=\"_iedit\""); 
        
                        print "</td></tr>";
-                       print "<tr><td>Feed:</td><td colspan='2'>";
+                       print "<tr><td>".__('Feed:')."</td><td colspan='2'>";
 
                        print_feed_select($link, "feed_id", $active_feed_id);
                        
                        print "</td></tr>";
        
-                       print "<tr><td>Action:</td>";
+                       print "<tr><td>".__('Action:')."</td>";
        
                        print "<td colspan='2'><select name=\"action_id\" 
                                onchange=\"filterDlgCheckAction(this)\">";
 
                        print "</td></tr>";
 
-                       print "<tr><td>Params:</td>";
+                       print "<tr><td>".__('Params:')."</td>";
 
                        print "<td><input disabled class='iedit' name='action_param'></td></tr>";
 
+                       print "<tr><td valign='top'>".__('Options:')."</td><td>";
+
+                       print "<input type=\"checkbox\" name=\"inverse\" id=\"inverse\">
+                               <label for=\"inverse\">".__('Inverse match')."</label></td></tr>";
+
                        print "</table>";
 
                        print "</form>";
 
                        print "<input type=\"submit\" 
                                id=\"infobox_submit\"
-                               class=\"button\" onclick=\"return qaddFilter()\" 
-                               disabled=\"true\" value=\"Create\"> ";
+                               class=\"button\" onclick=\"return addFilter()\" 
+                               disabled=\"true\" value=\"".__('Create')."\"> ";
 
                        print "<input class=\"button\"
                                type=\"submit\" onclick=\"return closeInfoBox()\" 
-                               value=\"Cancel\">";
+                               value=\"".__('Cancel')."\">";
 
                        print "</div>";
 
 //                     print "</td></tr></table>"; 
 
+                       return;
                }
 
                if ($id == "feedUpdateErrors") {
 
-                       print "<div id=\"infoBoxTitle\">Update Errors</div>";
+                       print "<div id=\"infoBoxTitle\">".__('Update Errors')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
-                       print "These feeds have not been updated because of errors:";
+                       print __("These feeds have not been updated because of errors:");
 
                        $result = db_query($link, "SELECT id,title,feed_url,last_error
                        FROM ttrss_feeds WHERE last_error != '' AND owner_uid = ".$_SESSION["uid"]);
 
                        print "<input class=\"button\"
                                type=\"submit\" onclick=\"return closeInfoBox()\" 
-                               value=\"Close\">";
+                               value=\"".__('Close')."\">";
 
                        print "</div>";
 
+                       return;
                }
 
                if ($id == "editArticleTags") {
 
-                       print "<div id=\"infoBoxTitle\">Edit Tags</div>";
+                       print "<div id=\"infoBoxTitle\">".__('Edit Tags')."</div>";
                        print "<div class=\"infoBoxContents\">";
 
-                       print "<form id=\"tag_edit_form\">";
+                       print "<form id=\"tag_edit_form\" onsubmit='return false'>";
 
-                       print "Tags for this article (separated by commas):<br>";
+                       print __("Tags for this article (separated by commas):")."<br>";
 
                        $tags = get_article_tags($link, $param);
 
 
                        print "<tr><td colspan='2'><textarea rows='4' class='iedit' name='tags_str'>$tags_str</textarea></td></tr>";
 
-                       print "<tr><td>Add existing tag:</td>";
+                       print "<tr><td>".__('Add existing tag:')."</td>";
 
                        $result = db_query($link, "SELECT DISTINCT tag_name FROM ttrss_tags 
                                WHERE owner_uid = '".$_SESSION["uid"]."' ORDER BY tag_name");
 
                        print "<input class=\"button\"
                                type=\"submit\" onclick=\"return editTagsSave()\" 
-                               value=\"Save\"> ";
+                               value=\"".__('Save')."\"> ";
 
                        print "<input class=\"button\"
                                type=\"submit\" onclick=\"return closeInfoBox()\" 
-                               value=\"Cancel\">";
+                               value=\"".__('Cancel')."\">";
 
 
                        print "</div>";
 
+                       return;
                }
 
-               print "</div>";
+               if ($id == "printTagCloud") {
+                       print "<div id=\"infoBoxTitle\">".__('Tag cloud')."</div>";
+                       print "<div class=\"infoBoxContents\">";
+
+                       print __("Showing most popular tags ")." (<a 
+                               href='javascript:toggleTags(true)'>".__('browse all')."</a>):<br/>";
+
+                       print "<div class=\"tagCloudContainer\">";
+
+                       printTagCloud($link);
+
+                       print "</div>";
+
+                       print "<div align='center'>";
+                       print "<input class=\"button\"
+                               type=\"submit\" onclick=\"return closeInfoBox()\" 
+                               value=\"".__('Close')."\">";
+                       print "</div>";
+
+                       print "</div>";
+
+                       return;
+               }
+
+               print "<div id='infoBoxTitle'>Internal Error</div>
+                       <div id='infoBoxContents'>
+                       <p>Unknown dialog <b>$id</b></p>
+                       </div></div>";
+       
        }
 ?>