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

@@ -109,11 +109,11 @@ class CommandPathHop:
selection = FreeCADGui.Selection.getSelection()
if len(selection) != 1:
FreeCAD.Console.PrintError(
translate("Path_Hop", "Please select one path object\n"))
translate("Path_Hop", "Please select one path object")+"\n")
return
if not selection[0].isDerivedFrom("Path::Feature"):
FreeCAD.Console.PrintError(
translate("Path_Hop", "The selected object is not a path\n"))
translate("Path_Hop", "The selected object is not a path")+"\n")
return
FreeCAD.ActiveDocument.openTransaction(