summaryrefslogtreecommitdiff
path: root/modules/pref-filters.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/pref-filters.php')
-rw-r--r--modules/pref-filters.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/pref-filters.php b/modules/pref-filters.php
index 3c0f6129c..e043323e0 100644
--- a/modules/pref-filters.php
+++ b/modules/pref-filters.php
@@ -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>";