Crowdin: Path string fixes

This commit is contained in:
luz.paz
2018-04-20 09:57:24 -04:00
committed by wmayer
parent dac72f25f1
commit 0720c5e233
13 changed files with 23 additions and 23 deletions

View File

@@ -70,7 +70,7 @@ class ObjectSurface(PathOp.ObjectOp):
'''initPocketOp(obj) ... create facing specific properties'''
obj.addProperty("App::PropertyEnumeration", "Algorithm", "Algorithm", QtCore.QT_TRANSLATE_NOOP("App::Property", "The library to use to generate the path"))
obj.Algorithm = ['OCL Dropcutter', 'OCL Waterline']
obj.addProperty("App::PropertyFloatConstraint", "SampleInterval", "Surface", QtCore.QT_TRANSLATE_NOOP("App::Property", "The Sample Interval. Small values cause long wait"))
obj.addProperty("App::PropertyFloatConstraint", "SampleInterval", "Surface", QtCore.QT_TRANSLATE_NOOP("App::Property", "The Sample Interval. Small values cause long wait times"))
obj.SampleInterval = (0.04, 0.01, 1.0, 0.01)
def opExecute(self, obj):
@@ -97,7 +97,7 @@ class ObjectSurface(PathOp.ObjectOp):
import ocl
except:
FreeCAD.Console.PrintError(
translate("Path_Surface", "This operation requires OpenCamLib to be installed.\n"))
translate("Path_Surface", "This operation requires OpenCamLib to be installed.")+"\n")
return
if self.baseobject.TypeId.startswith('Mesh'):