mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-12 11:20:09 +00:00
Fix gtk sidebar text for translation
This commit is contained in:
parent
217087a2fe
commit
a2a45f1a0b
1 changed files with 2 additions and 2 deletions
|
@ -162,7 +162,7 @@ class FilterTreeView(component.Component):
|
|||
self.filters = {}
|
||||
|
||||
#initial order of state filter:
|
||||
self.cat_nodes["state"] = self.treestore.append(None, ["cat", "state", _t("State"), 0, None, False])
|
||||
self.cat_nodes["state"] = self.treestore.append(None, ["cat", "state", _t("state"), 0, None, False])
|
||||
self.update_row("state", "All" , 0)
|
||||
self.update_row("state", "Downloading" , 0)
|
||||
self.update_row("state", "Seeding" , 0)
|
||||
|
@ -170,7 +170,7 @@ class FilterTreeView(component.Component):
|
|||
self.update_row("state", "Paused" , 0)
|
||||
self.update_row("state", "Queued" , 0)
|
||||
|
||||
self.cat_nodes["tracker_host"] = self.treestore.append(None, ["cat", "tracker_host", _t("Trackers"), 0, None, False])
|
||||
self.cat_nodes["tracker_host"] = self.treestore.append(None, ["cat", "tracker_host", _t("tracker_host"), 0, None, False])
|
||||
self.update_row("tracker_host", "All" , 0)
|
||||
self.update_row("tracker_host", "Error" , 0)
|
||||
self.update_row("tracker_host", "" , 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue