mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-30 16:51:29 +00:00
several translation fixes, update translations
This commit is contained in:
@@ -533,9 +533,11 @@ class Dlg extends Handler_Protected {
|
||||
print "<content><![CDATA[";
|
||||
|
||||
print __("Match:"). " " .
|
||||
"<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" checked value=\"any\" name=\"tag_mode\"> Any ";
|
||||
print "<input class=\"noborder\" dojoType=\"dijit.form.RadioButton\" type=\"radio\" value=\"all\" name=\"tag_mode\"> All ";
|
||||
print " 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 " ";
|
||||
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']."
|
||||
|
||||
@@ -139,7 +139,7 @@ class Pref_Filters extends Handler_Protected {
|
||||
|
||||
$folder = array();
|
||||
$folder['id'] = $line["action_id"];
|
||||
$folder['name'] = $line["action_name"];
|
||||
$folder['name'] = __($line["action_name"]);
|
||||
$folder['items'] = array();
|
||||
$action_id = $line["action_id"];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user