Fix #1282 - Text for AutoManaged changed to 'On/Off' and localized
This commit is contained in:
parent
39bbe76436
commit
8346b4bb77
|
@ -124,6 +124,11 @@ class StatusTab(Tab):
|
||||||
if status is None:
|
if status is None:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if status["is_auto_managed"]:
|
||||||
|
status["is_auto_managed"]=_("On")
|
||||||
|
else:
|
||||||
|
status["is_auto_managed"]=_("Off")
|
||||||
|
|
||||||
# Update all the label widgets
|
# Update all the label widgets
|
||||||
for widget in self.label_widgets:
|
for widget in self.label_widgets:
|
||||||
if widget[1] != None:
|
if widget[1] != None:
|
||||||
|
|
Loading…
Reference in New Issue