Fix #1282 - Text for AutoManaged changed to 'On/Off' and localized
This commit is contained in:
parent
417a9f6e63
commit
9f3ac37f25
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue