1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 01:35:56 +00:00

more translation work

This commit is contained in:
Andrew Dolgov
2007-08-10 17:16:43 +01:00
parent 2fbffcd984
commit 89cb787edd
17 changed files with 559 additions and 260 deletions

View 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>";