summaryrefslogtreecommitdiff
path: root/modules/pref-filters.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-08-10 17:16:43 +0100
committerAndrew Dolgov <[email protected]>2007-08-10 17:16:43 +0100
commit89cb787edd1c9d3c2fa2616c98986b130fcaf930 (patch)
treebcae5e74fdbb138fe8546f4173dd06b269ebccab /modules/pref-filters.php
parent2fbffcd9841c0275e22c4cfd5c0cc8ef258147c9 (diff)
more translation work
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>";