Module: deluge Branch: master Commit: 9f3ac37f25269348f91043760489b127113347ef
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 255c303..926957a 100644 --- a/deluge/ui/gtkui/status_tab.py +++ b/deluge/ui/gtkui/status_tab.py @@ -127,6 +127,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.
