Module: deluge Branch: 1.3-stable Commit: 8346b4bb7703952240555d5a5c762991d9066328
Author: Calum Lind <[email protected]> Date: Sun Jan 30 18:51:00 2011 +0000 Fix #1282 - Text for AutoManaged changed to 'On/Off' and localized --- deluge/ui/gtkui/status_tab.py | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/deluge/ui/gtkui/status_tab.py b/deluge/ui/gtkui/status_tab.py index 6feed8e..f4462a0 100644 --- a/deluge/ui/gtkui/status_tab.py +++ b/deluge/ui/gtkui/status_tab.py @@ -124,6 +124,11 @@ class StatusTab(Tab): if status is None: return + if status["is_auto_managed"]: + status["is_auto_managed"]=_("On") + else: + status["is_auto_managed"]=_("Off") + # Update all the label widgets for widget in self.label_widgets: if widget[1] != None: -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
