]> git.wh0rd.org - tt-rss.git/blobdiff - modules/pref-filters.php
more translation work
[tt-rss.git] / modules / pref-filters.php
index 3c0f6129c648b0e6fd4cff24098bd0cbf6eea1fe..e043323e03f05cb0e63ee269e443a0982b4eda91 100644 (file)
@@ -37,7 +37,7 @@
        
                        while ($line = db_fetch_assoc($result)) {
                                //array_push($filter_types, $line["description"]);
-                               $filter_types[$line["id"]] = $line["description"];
+                               $filter_types[$line["id"]] = __($line["description"]);
                        }
 
                        print "<table width='100%'>";
@@ -69,7 +69,7 @@
 
                        while ($line = db_fetch_assoc($result)) {
                                $is_sel = ($line["id"] == $action_id) ? "selected" : "";                        
-                               printf("<option value='%d' $is_sel>%s</option>", $line["id"], $line["description"]);
+                               printf("<option value='%d' $is_sel>%s</option>", $line["id"], __($line["description"]));
                        }
        
                        print "</select>";