mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 15:38:43 +00:00
Fix Label Plugin text 'All' for translation in sidebar
This commit is contained in:
parent
7f88f59272
commit
d98eb06f69
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ class FilterTreeView(component.Component):
|
||||||
label = _t("none")
|
label = _t("none")
|
||||||
elif cat == "label":
|
elif cat == "label":
|
||||||
label = _t("no_label")
|
label = _t("no_label")
|
||||||
elif cat == "state" or cat == "tracker_host":
|
elif cat in ["state", "tracker_host", "label"]:
|
||||||
label = _t(value)
|
label = _t(value)
|
||||||
|
|
||||||
row = self.treestore.append(self.cat_nodes[cat],[cat, value, label, count , pix, True])
|
row = self.treestore.append(self.cat_nodes[cat],[cat, value, label, count , pix, True])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue