From 8346b4bb7703952240555d5a5c762991d9066328 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sun, 30 Jan 2011 18:51:00 +0000 Subject: [PATCH] Fix #1282 - Text for AutoManaged changed to 'On/Off' and localized --- deluge/ui/gtkui/status_tab.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deluge/ui/gtkui/status_tab.py b/deluge/ui/gtkui/status_tab.py index 6feed8ed9..f4462a045 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: