removed translation from property descriptions (wrong to do it there anyway) - issue #2524

This commit is contained in:
Yorik van Havre
2016-05-18 16:59:15 -03:00
parent ec16290be2
commit f40758eba9
33 changed files with 243 additions and 244 deletions

View File

@@ -38,9 +38,9 @@ except AttributeError:
class Plane:
def __init__(self,obj):
obj.addProperty("App::PropertyEnumeration", "SelectionPlane","Plane", translate( "Selection Plane", "Orientation plane of CNC path"))
obj.addProperty("App::PropertyEnumeration", "SelectionPlane","Plane","Orientation plane of CNC path")
obj.SelectionPlane=['XY', 'XZ', 'YZ']
obj.addProperty("App::PropertyBool","Active","Sequence Parameters",translate("Active","Make False, to prevent operation from generating code"))
obj.addProperty("App::PropertyBool","Active","Sequence Parameters","Make False, to prevent operation from generating code")
obj.Proxy = self
def execute(self,obj):