Fix #1282 - Text for AutoManaged changed to 'On/Off' and localized

This commit is contained in:
Calum Lind 2011-01-30 18:51:00 +00:00
parent 39bbe76436
commit 8346b4bb77
1 changed files with 5 additions and 0 deletions

View File

@ -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: