summaryrefslogtreecommitdiff
path: root/classes/dlg.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-11-22 16:07:40 +0400
committerAndrew Dolgov <[email protected]>2012-11-22 16:07:40 +0400
commit7b28a986978e25fbc5ecdb468a48efbf158f641d (patch)
tree7a2f8c35e80f6322d18ac116f1508b44e206c6b0 /classes/dlg.php
parentafc3cf5522e27258fe725569e54c3c19a3f6dfed (diff)
several translation fixes, update translations
Diffstat (limited to 'classes/dlg.php')
-rw-r--r--classes/dlg.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/classes/dlg.php b/classes/dlg.php
index b3d8af349..10b6d580e 100644
--- a/classes/dlg.php
+++ b/classes/dlg.php
@@ -533,9 +533,11 @@ class Dlg extends Handler_Protected {
print "<content><![CDATA[";
print __("Match:"). "&nbsp;" .
- "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" checked value=\"any\" name=\"tag_mode\">&nbsp;Any&nbsp;";
- print "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" value=\"all\" name=\"tag_mode\">&nbsp;All&nbsp;";
- print "&nbsp;tags.";
+ "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" checked value=\"any\" name=\"tag_mode\" id=\"tag_mode_any\">";
+ print "<label for=\"tag_mode_any\">".__("Any")."</label>";
+ print "&nbsp;";
+ print "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" value=\"all\" name=\"tag_mode\" id=\"tag_mode_all\">";
+ print "<label for=\"tag_mode_all\">".__("All tags.")."</input>";
print "<select id=\"all_tags\" name=\"all_tags\" title=\"" . __('Which Tags?') . "\" multiple=\"multiple\" size=\"10\" style=\"width : 100%\">";
$result = db_query($this->link, "SELECT DISTINCT tag_name FROM ttrss_tags WHERE owner_uid = ".$_SESSION['uid']."