]> git.wh0rd.org - tt-rss.git/commitdiff
change _() to __() (use php-gettext)
authorAndrew Dolgov <fox@madoka.spb.ru>
Mon, 5 Mar 2007 08:45:38 +0000 (09:45 +0100)
committerAndrew Dolgov <fox@madoka.spb.ru>
Mon, 5 Mar 2007 08:45:38 +0000 (09:45 +0100)
backend.php
errors.php
functions.php
opml.php
prefs.php
sanity_check.php
tt-rss.php
update-translations.sh

index d2f3d356b991ad7767c8b26d50b058a71699237a..1f0cf2e811f7395b0ad65bd5f9c7beeb78bd68f1 100644 (file)
        }
 
        $purge_intervals = array(
-               0  => _("Use default"),
-               -1 => _("Never purge"),
-               5  => _("1 week old"),
-               14 => _("2 weeks old"),
-               31 => _("1 month old"),
-               60 => _("2 months old"),
-               90 => _("3 months old"));
+               0  => __("Use default"),
+               -1 => __("Never purge"),
+               5  => __("1 week old"),
+               14 => __("2 weeks old"),
+               31 => __("1 month old"),
+               60 => __("2 months old"),
+               90 => __("3 months old"));
 
        $update_intervals = array(
-               0   => _("Use default"),
-               -1  => _("Disable updates"),
-               30  => _("Each 30 minutes"),
-               60  => _("Hourly"),
-               240 => _("Each 4 hours"),
-               720 => _("Each 12 hours"),
-               1440 => _("Daily"),
-               10080 => _("Weekly"));
+               0   => __("Use default"),
+               -1  => __("Disable updates"),
+               30  => __("Each 30 minutes"),
+               60  => __("Hourly"),
+               240 => __("Each 4 hours"),
+               720 => __("Each 12 hours"),
+               1440 => __("Daily"),
+               10080 => __("Weekly"));
 
 
        $access_level_names = array(
-               0 => _("User"), 
-               10 => _("Administrator"));
+               0 => __("User"), 
+               10 => __("Administrator"));
 
        require_once "modules/pref-prefs.php";
        require_once "modules/popup-dialog.php";
                        $entry_author = $line["author"];
 
                        if ($entry_author) {
-                               $entry_author = _(" - by ") . $entry_author;
+                               $entry_author = __(" - by ") . $entry_author;
                        }
 
                        $parsed_updated = date(get_pref($link, 'LONG_DATE_FORMAT'), 
 
                        if (!$entry_comments) $entry_comments = "&nbsp;"; # placeholder
 
-                       if (!$tags_str) $tags_str = '<span class="tagList">'._('no tags').'</span>';
+                       if (!$tags_str) $tags_str = '<span class="tagList">'.__('no tags').'</span>';
 
                        print "<div style='float : right'>$tags_str 
                                <a title=\"Edit tags for this article\" 
                        print "<div class=\"postContent\">";
                        
                        if (db_num_rows($tmp_result) > 0) {
-                               print "<div id=\"allEntryTags\">"._('Tags:')."$f_tags_str</div>";
+                               print "<div id=\"allEntryTags\">".__('Tags:')."$f_tags_str</div>";
                        }
 
                        if (get_pref($link, 'OPEN_LINKS_IN_NEW_WINDOW')) {
                                "SELECT id FROM ttrss_feeds WHERE id = '$feed' LIMIT 1");
                
                        if (db_num_rows($result) == 0) {
-                               print "<div align='center'>"._('Feed not found.')."</div>";
+                               print "<div align='center'>".__('Feed not found.')."</div>";
                                return;
                        }
                }
                print "<div id=\"headlinesContainer\" $rtl_tag>";
 
                if (!$result) {
-                       print "<div align='center'>"._("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
+                       print "<div align='center'>".__("Could not display feed (query failed). Please check label match syntax or local configuration.")."</div>";
                        return;
                }
 
 
 
                } else {
-                       print "<div class='whiteBox'>"._('No articles found.')."</div>";
+                       print "<div class='whiteBox'>".__('No articles found.')."</div>";
                }
 
                print "</div>";
index bab8647d098fe1e17658b76d0c0b9b5460a94d07..16efd09a9e0bfff6eaa1ad41b229cb223b15eeb7 100644 (file)
@@ -1,28 +1,28 @@
 <?php
-       $ERRORS[0] = _("Unknown error");
+       $ERRORS[0] = __("Unknown error");
 
-       $ERRORS[1] = _("This program requires XmlHttpRequest " .
+       $ERRORS[1] = __("This program requires XmlHttpRequest " .
                        "to function properly. Your browser doesn't seem to support it.");
 
-       $ERRORS[2] = _("This program requires cookies " .
+       $ERRORS[2] = __("This program requires cookies " .
                        "to function properly. Your browser doesn't seem to support them.");
 
-       $ERRORS[3] = _("Backend sanity check failed");
+       $ERRORS[3] = __("Backend sanity check failed");
 
-       $ERRORS[4] = _("Frontend sanity check failed.");
+       $ERRORS[4] = __("Frontend sanity check failed.");
 
-       $ERRORS[5] = _("Incorrect database schema version. &lt;a href='update.php'&gt;Please update&lt;/a&gt;.");
+       $ERRORS[5] = __("Incorrect database schema version. &lt;a href='update.php'&gt;Please update&lt;/a&gt;.");
 
-       $ERRORS[6] = _("Request not authorized.");
+       $ERRORS[6] = __("Request not authorized.");
 
-       $ERRORS[7] = _("No operation to perform.");
+       $ERRORS[7] = __("No operation to perform.");
 
-       $ERRORS[8] = _("Could not display feed: query failed. Please check label match syntax or local configuration.");
+       $ERRORS[8] = __("Could not display feed: query failed. Please check label match syntax or local configuration.");
 
-       $ERRORS[8] = _("Denied. Your access level is insufficient to access this page.");
+       $ERRORS[8] = __("Denied. Your access level is insufficient to access this page.");
 
-       $ERRORS[9] = _("Configuration check failed");
+       $ERRORS[9] = __("Configuration check failed");
 
-       $ERRORS[10] = _("Your version of MySQL is not currently supported. Please see 
+       $ERRORS[10] = __("Your version of MySQL is not currently supported. Please see 
                official site for more information.");
 ?>
index 2e97ddb2c129656efe898d832f71eb281a2fdf81..a90eed1858ad9ffa1c009fc2e91d2e7aebe3512a 100644 (file)
                print "<select id=\"$id\" name=\"$id\" $attributes>";
 
                if ($include_all_cats) {
-                       print "<option value=\"0\">"._('Uncategorized')."</option>";
+                       print "<option value=\"0\">".__('Uncategorized')."</option>";
                }
 
                $result = db_query($link, "SELECT id,title FROM ttrss_feed_categories
 
        function getFeedCatTitle($link, $id) {
                if ($id == -1) {
-                       return _("Special");
+                       return __("Special");
                } else if ($id < -10) {
-                       return _("Labels");
+                       return __("Labels");
                } else if ($id > 0) {
                        $result = db_query($link, "SELECT ttrss_feed_categories.title 
                                FROM ttrss_feeds, ttrss_feed_categories WHERE ttrss_feeds.id = '$id' AND
                        if (db_num_rows($result) == 1) {
                                return db_fetch_result($result, 0, "title");
                        } else {
-                               return _("Uncategorized");
+                               return __("Uncategorized");
                        }
                } else {
                        return "getFeedCatTitle($id) failed";
 
        function getFeedTitle($link, $id) {
                if ($id == -1) {
-                       return _("Starred articles");
+                       return __("Starred articles");
                } else if ($id < -10) {
                        $label_id = -10 - $id;
                        $result = db_query($link, "SELECT description FROM ttrss_labels WHERE id = '$label_id'");
                        $feed_title = "";
 
                        if ($search && $search_mode == "all_feeds") {
-                               $feed_title = _("Global search results")." ($search)";
+                               $feed_title = __("Global search results")." ($search)";
                        } else if ($search && preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
-                               $feed_title = _("Tag search results")." ($search, $feed)";
+                               $feed_title = __("Tag search results")." ($search, $feed)";
                        } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) == false) {
                                $feed_title = $feed;
                        } else if (preg_match('/^-?[0-9][0-9]*$/', $feed) != false && $feed >= 0) {
                                                        WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]);
                                                $feed_title = db_fetch_result($result, 0, "title");
                                        } else {
-                                               $feed_title = _("Uncategorized");
+                                               $feed_title = __("Uncategorized");
                                        }
 
                                        if ($search) {
-                                               $feed_title = _("Category search results")." ($search, $feed_title)";
+                                               $feed_title = __("Category search results")." ($search, $feed_title)";
                                        }
 
                                } else {
                                        $last_error = db_fetch_result($result, 0, "last_error");
 
                                        if ($search) {
-                                               $feed_title = _("Feed search results") . " ($search, $feed_title)";
+                                               $feed_title = __("Feed search results") . " ($search, $feed_title)";
                                        }
                                }
        
                        } else if ($feed == -1) {
-                               $feed_title = _("Starred articles");
+                               $feed_title = __("Starred articles");
                        } else if ($feed < -10) {
                                $label_id = -$feed - 11;
                                $result = db_query($link, "SELECT description FROM ttrss_labels
                                $feed_title = db_fetch_result($result, 0, "description");
 
                                if ($search) {
-                                       $feed_title = _("Label search results") . " ($search, $feed_title)";
+                                       $feed_title = __("Label search results") . " ($search, $feed_title)";
                                }
                        } else {
                                $feed_title = "?";
        }
 
        function prepare_headlines_digest($link, $user_id, $days = 1, $limit = 100) {
-               $tmp =  _("New headlines for last 24 hours, as of ") . date("Y/m/d H:m") . "\n";        
+               $tmp =  __("New headlines for last 24 hours, as of ") . date("Y/m/d H:m") . "\n";       
                $tmp .= "=======================================================\n\n";
 
                if (DB_TYPE == "pgsql") {
                }
 
                $tmp .= "--- \n";
-               $tmp .= _("You have been sent this email because you have enabled daily digests in Tiny Tiny RSS at ") . 
+               $tmp .= __("You have been sent this email because you have enabled daily digests in Tiny Tiny RSS at ") . 
                        DIGEST_HOSTNAME . "\n".
-                       _("To unsubscribe, visit your configuration options or contact instance owner.\n");
+                       __("To unsubscribe, visit your configuration options or contact instance owner.\n");
                        
 
                return array($tmp, $headlines_count);
                        // old style subtoolbar:
 
                                print "<td class=\"headlineActions$rtl_cpart\">".
-                                       _('Select:')."
+                                       __('Select:')."
                                                                <a href=\"$sel_all_link\">All</a>,
                                                                <a href=\"$sel_unread_link\">Unread</a>,
                                                                <a href=\"$sel_none_link\">None</a>
                                                &nbsp;&nbsp;".
-                                               _('Toggle:')." <a href=\"$tog_unread_link\">Unread</a>,
+                                               __('Toggle:')." <a href=\"$tog_unread_link\">Unread</a>,
                                                        <a href=\"$tog_marked_link\">Starred</a>
                                                &nbsp;&nbsp;".
-                                               _('Mark as read:')."
+                                               __('Mark as read:')."
                                                        <a href=\"#\" onclick=\"$catchup_page_link\">Page</a>,
                                                        <a href=\"#\" onclick=\"$catchup_feed_link\">Feed</a>";
                                print "</td>";  
                                print "<td class=\"headlineActions$rtl_cpart\">
                                        <a href=\"javascript:labelFromSearch('$search', '$search_mode',
                                                        '$match_on', '$feed_id', '$is_cat');\">
-                                               "._('Convert to Label')."</a></td>";
+                                               ".__('Convert to Label')."</a></td>";
                        }
 
                        print "<td class=\"headlineTitle$rtl_cpart\">";
                /* virtual feeds */
 
                if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                       print "<li class=\"feedCat\">"._('Special')."</li>";
+                       print "<li class=\"feedCat\">".__('Special')."</li>";
                        print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
                }
 
 
                if ($num_starred > 0) $class .= "Unread";
 
-               printFeedEntry(-1, $class, _("Starred articles"), $num_starred, 
+               printFeedEntry(-1, $class, __("Starred articles"), $num_starred, 
                        "images/mark_set.png", $link);
 
                if (get_pref($link, 'ENABLE_FEED_CATS')) {
                
                                if (db_num_rows($result) > 0) {
                                        if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                                               print "<li class=\"feedCat\">"._('Labels')."</li>";
+                                               print "<li class=\"feedCat\">".__('Labels')."</li>";
                                                print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
                                        } else {
                                                print "<li><hr></li>";
                                $tmp_category = $line["category"];
 
                                if (!$tmp_category) {
-                                       $tmp_category = _("Uncategorized");
+                                       $tmp_category = __("Uncategorized");
                                }
                                
        //                      $class = ($lnum % 2) ? "even" : "odd";
                                        $collapsed = $line["collapsed"];
 
                                        // workaround for NULL category
-                                       if ($category == _("Uncategorized")) {
+                                       if ($category == __("Uncategorized")) {
                                                if ($_COOKIE["ttrss_vf_uclps"] == 1) {
                                                        $collapsed = "t";
                                                }
                        }
 
                        if (db_num_rows($result) == 0) {
-                               print "<li>"._('No feeds to display.')."</li>";
+                               print "<li>".__('No feeds to display.')."</li>";
                        }
 
                } else {
                        ORDER BY tag_name"); */
 
                        if (get_pref($link, 'ENABLE_FEED_CATS')) {
-                               print "<li class=\"feedCat\">"._('Tags')."</li>";
+                               print "<li class=\"feedCat\">".__('Tags')."</li>";
                                print "<li id=\"feedCatHolder\"><ul class=\"feedCatList\">";
                        }
 
index fd93acd2d208840eb9e5a63754a62fab3a3baa28..0113fe9e0463413024c13596b09ebec0617c3501 100644 (file)
--- a/opml.php
+++ b/opml.php
                        </head>
                        <body>
                        <div class=\"floatingLogo\"><img src=\"images/ttrss_logo.png\"></div>
-                       <h1>"._('OPML Utility')."</h1>";
+                       <h1>".__('OPML Utility')."</h1>";
 
                if (function_exists('domxml_open_file')) {
                        print "<p>Importing OPML (using DOMXML extension)...</p>";
index eca4e9468c4ce59733c02d66b2b5b8c0f64c0377..337b7b690c76fc396ceeb020e46464a7f7dfd64e 100644 (file)
--- a/prefs.php
+++ b/prefs.php
@@ -83,13 +83,13 @@ window.onload = init;
 
 <div id="fatal_error"><div id="fatal_error_inner">
        <h1>Fatal Error</h1>
-       <div id="fatal_error_msg"><?php echo _('Unknown Error') ?></div>
+       <div id="fatal_error_msg"><?php echo __('Unknown Error') ?></div>
 </div></div>
 
 <div id="prefHeader">
        <?php if (!SINGLE_USER_MODE) { ?>
                <div style="float : right">
-                       <?php echo _('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b>
+                       <?php echo __('Hello,') ?> <b><?php echo $_SESSION["name"] ?></b>
                        (<a href="logout.php">Logout</a>)
                </div>
        <?php } ?>
@@ -103,29 +103,29 @@ window.onload = init;
                <div class="firstTab">&nbsp;</div>
 
                <div id="genConfigTab" class="prefsTab" 
-                       onclick="selectTab('genConfig')"><?php echo _('Preferences') ?></div>
+                       onclick="selectTab('genConfig')"><?php echo __('Preferences') ?></div>
                <div id="feedConfigTab" class="prefsTab" 
-                       onclick="selectTab('feedConfig')"><?php echo _('My Feeds') ?></div>
+                       onclick="selectTab('feedConfig')"><?php echo __('My Feeds') ?></div>
                <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
                <div id="feedBrowserTab" class="prefsTab" 
-                       onclick="selectTab('feedBrowser')"><?php echo _('Other Feeds') ?></div>
+                       onclick="selectTab('feedBrowser')"><?php echo __('Other Feeds') ?></div>
                <?php } ?>
                <div id="filterConfigTab" class="prefsTab" 
-                       onclick="selectTab('filterConfig')"><?php echo _('Content Filtering') ?></div>
+                       onclick="selectTab('filterConfig')"><?php echo __('Content Filtering') ?></div>
                <?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
                <div id="labelConfigTab" class="prefsTab" 
-                       onclick="selectTab('labelConfig')"><?php echo _('Label Editor') ?></div>
+                       onclick="selectTab('labelConfig')"><?php echo __('Label Editor') ?></div>
                <?php } ?>
                <?php if ($_SESSION["access_level"] >= 10) { ?>
                <div id="userConfigTab" class="prefsTab" 
-                       onclick="selectTab('userConfig')"><?php echo _('User Manager') ?></div>
+                       onclick="selectTab('userConfig')"><?php echo __('User Manager') ?></div>
                <?php } ?>              
 
 <div id="prefContent">
-       <p><?php echo _('Loading, please wait...') ?></p>
+       <p><?php echo __('Loading, please wait...') ?></p>
        <noscript>
                <div class="error">
-               <?php echo _("Your browser doesn't support Javascript, which is required
+               <?php echo __("Your browser doesn't support Javascript, which is required
                for this application to function properly. Please check your
                browser settings.") ?></div>
        </noscript>
index b77c9797ea80d731d4ac35d0e542e4a1bb7b1dbd..f7514b65cd1de304dda019647aa9ed49e504d0df 100644 (file)
@@ -2,7 +2,7 @@
        define('EXPECTED_CONFIG_VERSION', 5);
 
        if (!file_exists("config.php")) {
-               print _("<b>Fatal Error</b>: You forgot to copy 
+               print __("<b>Fatal Error</b>: You forgot to copy 
                <b>config.php-dist</b> to <b>config.php</b> and edit it.\n");
                exit;
        }
        require_once "config.php";
 
        if (CONFIG_VERSION != EXPECTED_CONFIG_VERSION) {
-               return _("config: your config file version is incorrect. See config.php-dist.\n");
+               return __("config: your config file version is incorrect. See config.php-dist.\n");
        }
 
        if (defined('RSS_BACKEND_TYPE')) {
-               print _("<b>Fatal error</b>: RSS_BACKEND_TYPE is deprecated. Please remove this
+               print __("<b>Fatal error</b>: RSS_BACKEND_TYPE is deprecated. Please remove this
                        option from config.php\n");
                exit;
        }
 
        if (file_exists("xml-export.php") || file_exists("xml-import.php")) {
-               print _("<b>Fatal Error</b>: XML Import/Export tools (<b>xml-export.php</b>
+               print __("<b>Fatal Error</b>: XML Import/Export tools (<b>xml-export.php</b>
                and <b>xml-import.php</b>) could be used maliciously. Please remove them 
                from your TT-RSS instance.\n");
                exit;
        }
 
        if (SINGLE_USER_MODE && DAEMON_UPDATE_LOGIN_LIMIT > 0) {
-               print _("<b>Fatal Error</b>: Please set DAEMON_UPDATE_LOGIN_LIMIT
+               print __("<b>Fatal Error</b>: Please set DAEMON_UPDATE_LOGIN_LIMIT
                        to 0 in single user mode.\n");
                exit;
        }
 
        if (USE_CURL_FOR_ICONS && ! function_exists("curl_init")) {
-               print _("<b>Fatal Error</b>: You have enabled USE_CURL_FOR_ICONS, but your PHP 
+               print __("<b>Fatal Error</b>: You have enabled USE_CURL_FOR_ICONS, but your PHP 
                        doesn't seem to support CURL functions.");
                exit;
        } 
 
        if (!defined('SESSION_EXPIRE_TIME')) {
-               $err_msg = _("config: SESSION_EXPIRE_TIME is undefined");
+               $err_msg = __("config: SESSION_EXPIRE_TIME is undefined");
        }
 
        if (SESSION_EXPIRE_TIME < 60) {
-               $err_msg = _("config: SESSION_EXPIRE_TIME is too low (less than 60)");
+               $err_msg = __("config: SESSION_EXPIRE_TIME is too low (less than 60)");
        }
 
        if (SESSION_EXPIRE_TIME < SESSION_COOKIE_LIFETIME) {
-               $err_msg = _("config: SESSION_EXPIRE_TIME should be greater or equal to" .
+               $err_msg = __("config: SESSION_EXPIRE_TIME should be greater or equal to" .
                        "SESSION_COOKIE_LIFETIME");
        }
 
 } */
 
        if (DATABASE_BACKED_SESSIONS && SINGLE_USER_MODE) {
-               $err_msg = _("config: DATABASE_BACKED_SESSIONS is incompatible with SINGLE_USER_MODE");
+               $err_msg = __("config: DATABASE_BACKED_SESSIONS is incompatible with SINGLE_USER_MODE");
        }
 
        if (DATABASE_BACKED_SESSIONS && DB_TYPE == "mysql") {
-               $err_msg = _("config: DATABASE_BACKED_SESSIONS are currently broken with MySQL");
+               $err_msg = __("config: DATABASE_BACKED_SESSIONS are currently broken with MySQL");
        }
 
        if ($err_msg) {
-               print "<b>"._("Fatal Error")."</b>: $err_msg\n";
+               print "<b>".__("Fatal Error")."</b>: $err_msg\n";
                exit;
        }
 
index 052a525236d057821fa1ef716e53c7e4801250fe..d93531375334221f58612f57fedeee3adf133b2f 100644 (file)
 
 <div id="overlay">
        <div id="overlay_inner">
-       <p><?php echo _("Loading, please wait...") ?></p>
+       <p><?php echo __("Loading, please wait...") ?></p>
        <noscript>
                <div class="error"><?php echo
-               _("Your browser doesn't support Javascript, which is required
+               __("Your browser doesn't support Javascript, which is required
                for this application to function properly. Please check your
                browser settings.") ?></div>
        </noscript>
@@ -128,44 +128,44 @@ window.onload = init;
 
                <div style="float : right">
                        <select id="quickMenuChooser" onchange="quickMenuChange()">
-                                       <option value="qmcDefault" selected><?php echo _('Actions...') ?></option>
-                                       <option value="qmcSearch"><?php echo _('Search') ?></option>
-                                       <option value="qmcPrefs"><?php echo _('Preferences') ?></option>
+                                       <option value="qmcDefault" selected><?php echo __('Actions...') ?></option>
+                                       <option value="qmcSearch"><?php echo __('Search') ?></option>
+                                       <option value="qmcPrefs"><?php echo __('Preferences') ?></option>
                                        <option disabled>--------</option>
-                                       <option style="color : #5050aa" disabled><?php echo _('Feed actions:') ?></option>
-                                       <option value="qmcAddFeed"><?php echo _('&nbsp;&nbsp;Subscribe to feed') ?></option>
-                                       <option value="qmcEditFeed"><?php echo _('&nbsp;&nbsp;Edit this feed') ?></option>
-                                       <option value="qmcRemoveFeed"><?php echo _('&nbsp;&nbsp;Unsubscribe') ?></option>
+                                       <option style="color : #5050aa" disabled><?php echo __('Feed actions:') ?></option>
+                                       <option value="qmcAddFeed"><?php echo __('&nbsp;&nbsp;Subscribe to feed') ?></option>
+                                       <option value="qmcEditFeed"><?php echo __('&nbsp;&nbsp;Edit this feed') ?></option>
+                                       <option value="qmcRemoveFeed"><?php echo __('&nbsp;&nbsp;Unsubscribe') ?></option>
                                        <!-- <option>Edit this feed</option> -->
                                        <option disabled>--------</option>
-                                       <option style="color : #5050aa" disabled><?php echo _('All feeds:') ?></option>
+                                       <option style="color : #5050aa" disabled><?php echo __('All feeds:') ?></option>
                                        <?php if (!ENABLE_UPDATE_DAEMON && !DAEMON_REFRESH_ONLY) { ?>
-                                       <option value="qmcUpdateFeeds"><?php echo _('&nbsp;&nbsp;Update') ?></option>
+                                       <option value="qmcUpdateFeeds"><?php echo __('&nbsp;&nbsp;Update') ?></option>
                                        <?php } ?>
-                                       <option value="qmcCatchupAll"><?php echo _('&nbsp;&nbsp;Mark as read') ?></option>
-                                       <option value="qmcShowOnlyUnread"><?php echo _('&nbsp;&nbsp;(Un)hide read feeds') ?></option>
+                                       <option value="qmcCatchupAll"><?php echo __('&nbsp;&nbsp;Mark as read') ?></option>
+                                       <option value="qmcShowOnlyUnread"><?php echo __('&nbsp;&nbsp;(Un)hide read feeds') ?></option>
                                        <option disabled>--------</option>
-                                       <option style="color : #5050aa" disabled><?php echo _('Other actions:') ?></option>                             
-                                       <option value="qmcAddFilter"><?php echo _('&nbsp;&nbsp;Create filter') ?></option>
+                                       <option style="color : #5050aa" disabled><?php echo __('Other actions:') ?></option>                            
+                                       <option value="qmcAddFilter"><?php echo __('&nbsp;&nbsp;Create filter') ?></option>
                        </select>
                </div>
 
                <form id="main_toolbar_form" onsubmit='return false'>
 
-               <?php echo _('Search:') ?>
+               <?php echo __('Search:') ?>
                <input name="query"
                        onKeyPress="return filterCR(event, viewCurrentFeed)"
                        onblur="javascript:enableHotkeys();" onfocus="javascript:disableHotkeys();">
 
-               <?php echo _('View:') ?>
+               <?php echo __('View:') ?>
                <select name="view_mode" onchange="viewCurrentFeed(0, '')">
-                       <option selected value="adaptive"><?php echo _('Adaptive') ?></option>
-                       <option value="all_articles"><?php echo _('All Articles') ?></option>
-                       <option value="marked"><?php echo _('Starred') ?></option>
-                       <option value="unread"><?php echo _('Unread') ?></option>
+                       <option selected value="adaptive"><?php echo __('Adaptive') ?></option>
+                       <option value="all_articles"><?php echo __('All Articles') ?></option>
+                       <option value="marked"><?php echo __('Starred') ?></option>
+                       <option value="unread"><?php echo __('Unread') ?></option>
                </select>
                
-               <?php echo _('Limit:') ?>
+               <?php echo __('Limit:') ?>
                <?php
                $limits = array(15 => 15, 30 => 30, 60 => 60, 0 => "All");
                        
@@ -190,7 +190,7 @@ window.onload = init;
 
                <input class="button" type="submit"
                        onclick="return viewCurrentFeed('ForceUpdate')" 
-                       value="<?php echo _('Update') ?>">
+                       value="<?php echo __('Update') ?>">
 
                </form>
 
@@ -204,11 +204,11 @@ window.onload = init;
 
 <?php if (!get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
        <div id="headlines-frame" class="headlines_normal">
-               <div class="whiteBox"><?php echo _('No feed selected.') ?></div></div>
+               <div class="whiteBox"><?php echo __('No feed selected.') ?></div></div>
        <div id="content-frame"><div class="whiteBox">&nbsp;</div></div>
 <?php } else { ?>
        <div id="headlines-frame" class="headlines_cdm">
-               <div class="whiteBox"><?php echo _('No feed selected.') ?></div></div>
+               <div class="whiteBox"><?php echo __('No feed selected.') ?></div></div>
 <?php } ?>
 
 <div id="footer">
index 53f0493bd836fe57c02ec2b40a058bc2dc9c1b72..860d6c29456b8b34c90408078dfdcdbdf61b406d 100644 (file)
@@ -1,7 +1,7 @@
 #!/bin/sh
 TEMPLATE=messages.pot
 
-xgettext -kT_ngettext:1,2 -kT_ -k_ -L PHP -o $TEMPLATE *.php modules/*.php
+xgettext -kT_ngettext:1,2 -kT_ -k_ -k__ -L PHP -o $TEMPLATE *.php modules/*.php
 
 if [ "$1" = "-p" ]; then
        msgfmt --statistics $TEMPLATE