translation cleanup misc files
This commit is contained in:
@@ -25,28 +25,33 @@ import FreeCAD
|
||||
import PathScripts.PathOpGui as PathOpGui
|
||||
import PathScripts.PathProfile as PathProfile
|
||||
import PathScripts.PathProfileGui as PathProfileGui
|
||||
from PySide import QtCore
|
||||
|
||||
from PySide.QtCore import QT_TRANSLATE_NOOP
|
||||
|
||||
__title__ = "Path Profile Edges Operation UI (depreciated)"
|
||||
__author__ = "sliptonic (Brad Collette)"
|
||||
__url__ = "https://www.freecadweb.org"
|
||||
__doc__ = "Profile Edges operation page controller and command implementation (depreciated)."
|
||||
__doc__ = (
|
||||
"Profile Edges operation page controller and command implementation (deprecated)."
|
||||
)
|
||||
|
||||
|
||||
class TaskPanelOpPage(PathProfileGui.TaskPanelOpPage):
|
||||
'''Psuedo page controller class for Profile operation,
|
||||
allowing for backward compatibility with pre-existing "Profile Edges" operations.'''
|
||||
"""Psuedo page controller class for Profile operation,
|
||||
allowing for backward compatibility with pre-existing "Profile Edges" operations."""
|
||||
|
||||
pass
|
||||
# Eclass
|
||||
|
||||
|
||||
Command = PathOpGui.SetupOperation('Profile',
|
||||
PathProfile.Create,
|
||||
TaskPanelOpPage,
|
||||
'Path_Contour',
|
||||
QtCore.QT_TRANSLATE_NOOP("Path_Profile", "Profile"),
|
||||
QtCore.QT_TRANSLATE_NOOP("Path_Profile", "Profile entire model, selected face(s) or selected edge(s)"),
|
||||
PathProfile.SetupProperties)
|
||||
Command = PathOpGui.SetupOperation(
|
||||
"Profile",
|
||||
PathProfile.Create,
|
||||
TaskPanelOpPage,
|
||||
"Path_Contour",
|
||||
QT_TRANSLATE_NOOP("Path_Profile", "Profile"),
|
||||
QT_TRANSLATE_NOOP(
|
||||
"Path_Profile", "Profile entire model, selected face(s) or selected edge(s)"
|
||||
),
|
||||
PathProfile.SetupProperties,
|
||||
)
|
||||
|
||||
FreeCAD.Console.PrintLog("Loading PathProfileEdgesGui... done\n")
|
||||
|
||||
Reference in New Issue
Block a user