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 417a9f6e63
commit 9f3ac37f25
1 changed files with 5 additions and 0 deletions

View File

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