diff --git a/src/Mod/Plot/CMakeLists.txt b/src/Mod/Plot/CMakeLists.txt index 3dfb371793..b3c584b5c7 100644 --- a/src/Mod/Plot/CMakeLists.txt +++ b/src/Mod/Plot/CMakeLists.txt @@ -1,122 +1,19 @@ -IF (BUILD_GUI) - PYSIDE_WRAP_RC(Plot_QRC_SRCS resources/Plot.qrc) -ENDIF (BUILD_GUI) - SET(PlotMain_SRCS Plot.py - InitGui.py - PlotGui.py ) SOURCE_GROUP("" FILES ${PlotMain_SRCS}) -SET(PlotAxes_SRCS - plotAxes/__init__.py - plotAxes/TaskPanel.py - plotAxes/TaskPanel.ui -) -SOURCE_GROUP("plotaxes" FILES ${PlotAxes_SRCS}) - -SET(PlotLabels_SRCS - plotLabels/__init__.py - plotLabels/TaskPanel.py - plotLabels/TaskPanel.ui -) -SOURCE_GROUP("plotlabels" FILES ${PlotLabels_SRCS}) - -SET(PlotPositions_SRCS - plotPositions/__init__.py - plotPositions/TaskPanel.py - plotPositions/TaskPanel.ui -) -SOURCE_GROUP("plotpositions" FILES ${PlotPositions_SRCS}) - -SET(PlotSave_SRCS - plotSave/__init__.py - plotSave/TaskPanel.py - plotSave/TaskPanel.ui -) -SOURCE_GROUP("plotsave" FILES ${PlotSave_SRCS}) - -SET(PlotSeries_SRCS - plotSeries/__init__.py - plotSeries/TaskPanel.py - plotSeries/TaskPanel.ui -) -SOURCE_GROUP("plotseries" FILES ${PlotSeries_SRCS}) - -SET(PlotUtils_SRCS - plotUtils/__init__.py - plotUtils/Paths.py -) -SOURCE_GROUP("plotutils" FILES ${PlotUtils_SRCS}) - -SET(all_files ${PlotMain_SRCS} ${PlotAxes_SRCS} ${PlotLabels_SRCS} ${PlotPositions_SRCS} ${PlotSave_SRCS} ${PlotSeries_SRCS} ${PlotUtils_SRCS}) - -SET(PlotGuiIcon_SVG - resources/icons/PlotWorkbench.svg -) +SET(all_files ${PlotMain_SRCS}) ADD_CUSTOM_TARGET(Plot ALL - SOURCES ${all_files} ${Plot_QRC_SRCS} ${PlotGuiIcon_SVG} + SOURCES ${all_files} ) fc_copy_sources(Plot "${CMAKE_BINARY_DIR}/Mod/Plot" ${all_files}) -fc_copy_sources(Plot "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_DATADIR}/Mod/Plot" ${PlotGuiIcon_SVG}) - -IF (BUILD_GUI) - fc_target_copy_resource(Plot - ${CMAKE_CURRENT_BINARY_DIR} - ${CMAKE_BINARY_DIR}/Mod/Plot - Plot_rc.py) -ENDIF (BUILD_GUI) - -INSTALL( - FILES - ${PlotAxes_SRCS} - DESTINATION - Mod/Plot/plotAxes -) -INSTALL( - FILES - ${PlotLabels_SRCS} - DESTINATION - Mod/Plot/plotLabels -) -INSTALL( - FILES - ${PlotPositions_SRCS} - DESTINATION - Mod/Plot/plotPositions -) -INSTALL( - FILES - ${PlotSave_SRCS} - DESTINATION - Mod/Plot/plotSave -) -INSTALL( - FILES - ${PlotSeries_SRCS} - DESTINATION - Mod/Plot/plotSeries -) -INSTALL( - FILES - ${PlotUtils_SRCS} - DESTINATION - Mod/Plot/plotUtils -) INSTALL( FILES ${PlotMain_SRCS} - ${Plot_QRC_SRCS} DESTINATION Mod/Plot ) -INSTALL( - FILES - ${PlotGuiIcon_SVG} - DESTINATION - "${CMAKE_INSTALL_DATADIR}/Mod/Plot/resources/icons" -) diff --git a/src/Mod/Plot/InitGui.py b/src/Mod/Plot/InitGui.py deleted file mode 100644 index 9eb2602edb..0000000000 --- a/src/Mod/Plot/InitGui.py +++ /dev/null @@ -1,61 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - - -class PlotWorkbench(Workbench): - """Workbench of Plot module.""" - def __init__(self): - self.__class__.Icon = FreeCAD.getResourceDir() + "Mod/Plot/resources/icons/PlotWorkbench.svg" - self.__class__.MenuText = "Plot" - self.__class__.ToolTip = "The Plot module is used to edit/save output plots performed by other tools" - - from plotUtils import Paths - import PlotGui - - def Initialize(self): - from PySide import QtCore, QtGui - cmdlst = ["Plot_SaveFig", - "Plot_Axes", - "Plot_Series", - "Plot_Grid", - "Plot_Legend", - "Plot_Labels", - "Plot_Positions"] - self.appendToolbar(str(QtCore.QT_TRANSLATE_NOOP( - "Plot", - "Plot edition tools")), cmdlst) - self.appendMenu(str(QtCore.QT_TRANSLATE_NOOP( - "Plot", - "Plot")), cmdlst) - try: - import matplotlib - except ImportError: - from PySide import QtCore, QtGui - msg = QtGui.QApplication.translate( - "plot_console", - "matplotlib not found, Plot module will be disabled", - None) - FreeCAD.Console.PrintMessage(msg + '\n') - - -Gui.addWorkbench(PlotWorkbench()) diff --git a/src/Mod/Plot/Plot.py b/src/Mod/Plot/Plot.py index 94a64a104f..6e9b400329 100644 --- a/src/Mod/Plot/Plot.py +++ b/src/Mod/Plot/Plot.py @@ -36,11 +36,7 @@ try: from matplotlib.figure import Figure except ImportError: - msg = PySide.QtGui.QApplication.translate( - "plot_console", - "matplotlib not found, so Plot module can not be loaded", - None) - FreeCAD.Console.PrintMessage(msg + '\n') + FreeCAD.Console.PrintWarning('matplotlib not found, so Plot module can not be loaded\n') raise ImportError("matplotlib not installed") diff --git a/src/Mod/Plot/PlotGui.py b/src/Mod/Plot/PlotGui.py deleted file mode 100644 index 8a55d62b1f..0000000000 --- a/src/Mod/Plot/PlotGui.py +++ /dev/null @@ -1,186 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import PySide -from PySide import QtCore, QtGui -import FreeCAD -import FreeCADGui -import os - -import Plot_rc - - -FreeCADGui.addLanguagePath(":/Plot/translations") -FreeCADGui.addIconPath(":/Plot/icons") - - -class Save: - def Activated(self): - import plotSave - plotSave.load() - - def GetResources(self): - # from plotUtils import Paths - # IconPath = Paths.iconsPath() + "/Save.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP( - "Plot_SaveFig", - "Save plot") - ToolTip = QtCore.QT_TRANSLATE_NOOP( - "Plot_SaveFig", - "Save the plot as an image file") - return {'Pixmap': 'Save', - 'MenuText': MenuText, - 'ToolTip': ToolTip} - - -class Axes: - def Activated(self): - import plotAxes - plotAxes.load() - - def GetResources(self): - MenuText = QtCore.QT_TRANSLATE_NOOP( - "Plot_Axes", - "Configure axes") - ToolTip = QtCore.QT_TRANSLATE_NOOP( - "Plot_Axes", - "Configure the axes parameters") - return {'Pixmap': 'Axes', - 'MenuText': MenuText, - 'ToolTip': ToolTip} - - -class Series: - def Activated(self): - import plotSeries - plotSeries.load() - - def GetResources(self): - # from plotUtils import Paths - # IconPath = Paths.iconsPath() + "/Series.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP( - "Plot_Series", - "Configure series") - ToolTip = QtCore.QT_TRANSLATE_NOOP( - "Plot_Series", - "Configure series drawing style and label") - return {'Pixmap': 'Series', - 'MenuText': MenuText, - 'ToolTip': ToolTip} - - -class Grid: - def Activated(self): - import Plot - plt = Plot.getPlot() - if not plt: - msg = QtGui.QApplication.translate( - "plot_console", - "The grid must be activated on top of a plot document", - None) - FreeCAD.Console.PrintError(msg + "\n") - return - flag = plt.isGrid() - Plot.grid(not flag) - - def GetResources(self): - # from plotUtils import Paths - # IconPath = Paths.iconsPath() + "/Grid.svg" - MenuText = QtCore.QT_TRANSLATE_NOOP( - "Plot_Grid", - "Show/Hide grid") - ToolTip = QtCore.QT_TRANSLATE_NOOP( - "Plot_Grid", - "Show/Hide grid on selected plot") - return {'Pixmap': 'Grid', - 'MenuText': MenuText, - 'ToolTip': ToolTip} - - -class Legend: - def Activated(self): - import Plot - plt = Plot.getPlot() - if not plt: - msg = QtGui.QApplication.translate( - "plot_console", - "The legend must be activated on top of a plot document", - None) - FreeCAD.Console.PrintError(msg + "\n") - return - flag = plt.isLegend() - Plot.legend(not flag) - - def GetResources(self): - MenuText = QtCore.QT_TRANSLATE_NOOP( - "Plot_Legend", - "Show/Hide legend") - ToolTip = QtCore.QT_TRANSLATE_NOOP( - "Plot_Legend", - "Show/Hide legend on selected plot") - return {'Pixmap': 'Legend', - 'MenuText': MenuText, - 'ToolTip': ToolTip} - - -class Labels: - def Activated(self): - import plotLabels - plotLabels.load() - - def GetResources(self): - MenuText = QtCore.QT_TRANSLATE_NOOP( - "Plot_Labels", - "Set labels") - ToolTip = QtCore.QT_TRANSLATE_NOOP( - "Plot_Labels", - "Set title and axes labels") - return {'Pixmap': 'Labels', - 'MenuText': MenuText, - 'ToolTip': ToolTip} - - -class Positions: - def Activated(self): - import plotPositions - plotPositions.load() - - def GetResources(self): - MenuText = QtCore.QT_TRANSLATE_NOOP( - "Plot_Positions", - "Set positions and sizes") - ToolTip = QtCore.QT_TRANSLATE_NOOP( - "Plot_Positions", - "Set labels and legend positions and sizes") - return {'Pixmap': 'Positions', - 'MenuText': MenuText, - 'ToolTip': ToolTip} - - -FreeCADGui.addCommand('Plot_SaveFig', Save()) -FreeCADGui.addCommand('Plot_Axes', Axes()) -FreeCADGui.addCommand('Plot_Series', Series()) -FreeCADGui.addCommand('Plot_Grid', Grid()) -FreeCADGui.addCommand('Plot_Legend', Legend()) -FreeCADGui.addCommand('Plot_Labels', Labels()) -FreeCADGui.addCommand('Plot_Positions', Positions()) diff --git a/src/Mod/Plot/README b/src/Mod/Plot/README index 5f82de5e9c..dad87e3d5d 100644 --- a/src/Mod/Plot/README +++ b/src/Mod/Plot/README @@ -6,5 +6,7 @@ Jose Luis Cercós Pita * Introduction -------------- -Plot is a module that provide an interface to perform plots. +Plot is a module that provide an interface to perform plots. From FreeCAD 0.20 +Plot workbench is split into an indepent addon +(https://github.com/FreeCAD/freecad.plot) diff --git a/src/Mod/Plot/plotAxes/TaskPanel.py b/src/Mod/Plot/plotAxes/TaskPanel.py deleted file mode 100644 index cd47a24365..0000000000 --- a/src/Mod/Plot/plotAxes/TaskPanel.py +++ /dev/null @@ -1,649 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import six - -import FreeCAD as App -import FreeCADGui as Gui - -from PySide import QtGui, QtCore - -import Plot -from plotUtils import Paths - - -class TaskPanel: - def __init__(self): - self.ui = Paths.modulePath() + "/plotAxes/TaskPanel.ui" - self.skip = False - - def accept(self): - return True - - def reject(self): - return True - - def clicked(self, index): - pass - - def open(self): - pass - - def needsFullSpace(self): - return True - - def isAllowedAlterSelection(self): - return False - - def isAllowedAlterView(self): - return True - - def isAllowedAlterDocument(self): - return False - - def helpRequested(self): - pass - - def setupUi(self): - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - self.form = form - form.axId = self.widget(QtGui.QSpinBox, "axesIndex") - form.new = self.widget(QtGui.QPushButton, "newAxesButton") - form.remove = self.widget(QtGui.QPushButton, "delAxesButton") - form.all = self.widget(QtGui.QCheckBox, "allAxes") - form.xMin = self.widget(QtGui.QSlider, "posXMin") - form.xMax = self.widget(QtGui.QSlider, "posXMax") - form.yMin = self.widget(QtGui.QSlider, "posYMin") - form.yMax = self.widget(QtGui.QSlider, "posYMax") - form.xAlign = self.widget(QtGui.QComboBox, "xAlign") - form.yAlign = self.widget(QtGui.QComboBox, "yAlign") - form.xOffset = self.widget(QtGui.QSpinBox, "xOffset") - form.yOffset = self.widget(QtGui.QSpinBox, "yOffset") - form.xAuto = self.widget(QtGui.QCheckBox, "xAuto") - form.yAuto = self.widget(QtGui.QCheckBox, "yAuto") - form.xSMin = self.widget(QtGui.QLineEdit, "xMin") - form.xSMax = self.widget(QtGui.QLineEdit, "xMax") - form.ySMin = self.widget(QtGui.QLineEdit, "yMin") - form.ySMax = self.widget(QtGui.QLineEdit, "yMax") - self.retranslateUi() - # Look for active axes if can - axId = 0 - plt = Plot.getPlot() - if plt: - while plt.axes != plt.axesList[axId]: - axId = axId + 1 - form.axId.setValue(axId) - self.updateUI() - QtCore.QObject.connect(form.axId, - QtCore.SIGNAL('valueChanged(int)'), - self.onAxesId) - QtCore.QObject.connect(form.new, - QtCore.SIGNAL("pressed()"), - self.onNew) - QtCore.QObject.connect(form.remove, - QtCore.SIGNAL("pressed()"), - self.onRemove) - QtCore.QObject.connect(form.xMin, - QtCore.SIGNAL("valueChanged(int)"), - self.onDims) - QtCore.QObject.connect(form.xMax, - QtCore.SIGNAL("valueChanged(int)"), - self.onDims) - QtCore.QObject.connect(form.yMin, - QtCore.SIGNAL("valueChanged(int)"), - self.onDims) - QtCore.QObject.connect(form.yMax, - QtCore.SIGNAL("valueChanged(int)"), - self.onDims) - QtCore.QObject.connect(form.xAlign, - QtCore.SIGNAL("currentIndexChanged(int)"), - self.onAlign) - QtCore.QObject.connect(form.yAlign, - QtCore.SIGNAL("currentIndexChanged(int)"), - self.onAlign) - QtCore.QObject.connect(form.xOffset, - QtCore.SIGNAL("valueChanged(int)"), - self.onOffset) - QtCore.QObject.connect(form.yOffset, - QtCore.SIGNAL("valueChanged(int)"), - self.onOffset) - QtCore.QObject.connect(form.xAuto, - QtCore.SIGNAL("stateChanged(int)"), - self.onScales) - QtCore.QObject.connect(form.yAuto, - QtCore.SIGNAL("stateChanged(int)"), - self.onScales) - QtCore.QObject.connect(form.xSMin, - QtCore.SIGNAL("editingFinished()"), - self.onScales) - QtCore.QObject.connect(form.xSMax, - QtCore.SIGNAL("editingFinished()"), - self.onScales) - QtCore.QObject.connect(form.ySMin, - QtCore.SIGNAL("editingFinished()"), - self.onScales) - QtCore.QObject.connect(form.ySMax, - QtCore.SIGNAL("editingFinished()"), - self.onScales) - QtCore.QObject.connect( - Plot.getMdiArea(), - QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"), - self.onMdiArea) - return False - - def getMainWindow(self): - toplevel = QtGui.QApplication.topLevelWidgets() - for i in toplevel: - if i.metaObject().className() == "Gui::MainWindow": - return i - raise RuntimeError("No main window found") - - def widget(self, class_id, name): - """Return the selected widget. - - Keyword arguments: - class_id -- Class identifier - name -- Name of the widget - """ - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - return form.findChild(class_id, name) - - def retranslateUi(self): - """Set the user interface locale strings. - """ - form = self.form - form.setWindowTitle(QtGui.QApplication.translate( - "plot_axes", - "Configure axes", - None)) - self.widget(QtGui.QLabel, "axesLabel").setText( - QtGui.QApplication.translate("plot_axes", - "Active axes", - None)) - self.widget(QtGui.QCheckBox, "allAxes").setText( - QtGui.QApplication.translate("plot_axes", - "Apply to all axes", - None)) - self.widget(QtGui.QLabel, "dimLabel").setText( - QtGui.QApplication.translate("plot_axes", - "Dimensions", - None)) - self.widget(QtGui.QLabel, "xPosLabel").setText( - QtGui.QApplication.translate("plot_axes", - "X axis position", - None)) - self.widget(QtGui.QLabel, "yPosLabel").setText( - QtGui.QApplication.translate("plot_axes", - "Y axis position", - None)) - self.widget(QtGui.QLabel, "scalesLabel").setText( - QtGui.QApplication.translate("plot_axes", - "Scales", - None)) - self.widget(QtGui.QCheckBox, "xAuto").setText( - QtGui.QApplication.translate("plot_axes", - "X auto", - None)) - self.widget(QtGui.QCheckBox, "yAuto").setText( - QtGui.QApplication.translate("plot_axes", - "Y auto", - None)) - self.widget(QtGui.QCheckBox, "allAxes").setText( - QtGui.QApplication.translate("plot_axes", - "Apply to all axes", - None)) - self.widget(QtGui.QLabel, "dimLabel").setText( - QtGui.QApplication.translate("plot_axes", - "Dimensions", - None)) - self.widget(QtGui.QLabel, "xPosLabel").setText( - QtGui.QApplication.translate("plot_axes", - "X axis position", - None)) - self.widget(QtGui.QLabel, "yPosLabel").setText( - QtGui.QApplication.translate("plot_axes", - "Y axis position", - None)) - self.widget(QtGui.QSpinBox, "axesIndex").setToolTip( - QtGui.QApplication.translate("plot_axes", - "Index of the active axes", - None)) - self.widget(QtGui.QPushButton, "newAxesButton").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Add new axes to the plot", - None)) - self.widget(QtGui.QPushButton, "delAxesButton").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Remove selected axes", - None)) - self.widget(QtGui.QCheckBox, "allAxes").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Check it to apply transformations to all axes", - None)) - self.widget(QtGui.QSlider, "posXMin").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Left bound of axes", - None)) - self.widget(QtGui.QSlider, "posXMax").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Right bound of axes", - None)) - self.widget(QtGui.QSlider, "posYMin").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Bottom bound of axes", - None)) - self.widget(QtGui.QSlider, "posYMax").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Top bound of axes", - None)) - self.widget(QtGui.QSpinBox, "xOffset").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Outward offset of X axis", - None)) - self.widget(QtGui.QSpinBox, "yOffset").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Outward offset of Y axis", - None)) - self.widget(QtGui.QCheckBox, "xAuto").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "X axis scale autoselection", - None)) - self.widget(QtGui.QCheckBox, "yAuto").setToolTip( - QtGui.QApplication.translate( - "plot_axes", - "Y axis scale autoselection", - None)) - - def onAxesId(self, value): - """Executed when axes index is modified.""" - if not self.skip: - self.skip = True - # No active plot case - plt = Plot.getPlot() - if not plt: - self.updateUI() - self.skip = False - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.axId = self.widget(QtGui.QSpinBox, "axesIndex") - - form.axId.setMaximum(len(plt.axesList)) - if form.axId.value() >= len(plt.axesList): - form.axId.setValue(len(plt.axesList) - 1) - # Send new control to Plot instance - plt.setActiveAxes(form.axId.value()) - self.updateUI() - self.skip = False - - def onNew(self): - """Executed when new axes must be created.""" - # Ensure that we can work - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.axId = self.widget(QtGui.QSpinBox, "axesIndex") - - Plot.addNewAxes() - form.axId.setValue(len(plt.axesList) - 1) - plt.update() - - def onRemove(self): - """Executed when axes must be deleted.""" - # Ensure that we can work - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.axId = self.widget(QtGui.QSpinBox, "axesIndex") - - # Don't remove first axes - if not form.axId.value(): - msg = QtGui.QApplication.translate( - "plot_console", - "Axes 0 can not be deleted", - None) - App.Console.PrintError(msg + "\n") - return - # Remove axes - ax = plt.axes - ax.set_axis_off() - plt.axesList.pop(form.axId.value()) - # Ensure that active axes is correct - index = min(form.axId.value(), len(plt.axesList) - 1) - form.axId.setValue(index) - plt.update() - - def onDims(self, value): - """Executed when axes dims have been modified.""" - # Ensure that we can work - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.all = self.widget(QtGui.QCheckBox, "allAxes") - form.xMin = self.widget(QtGui.QSlider, "posXMin") - form.xMax = self.widget(QtGui.QSlider, "posXMax") - form.yMin = self.widget(QtGui.QSlider, "posYMin") - form.yMax = self.widget(QtGui.QSlider, "posYMax") - - axesList = [plt.axes] - if form.all.isChecked(): - axesList = plt.axesList - # Set new dimensions - xmin = form.xMin.value() / 100.0 - xmax = form.xMax.value() / 100.0 - ymin = form.yMin.value() / 100.0 - ymax = form.yMax.value() / 100.0 - for axes in axesList: - axes.set_position([xmin, ymin, xmax - xmin, ymax - ymin]) - plt.update() - - def onAlign(self, value): - """Executed when axes align have been modified.""" - # Ensure that we can work - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.all = self.widget(QtGui.QCheckBox, "allAxes") - form.xAlign = self.widget(QtGui.QComboBox, "xAlign") - form.yAlign = self.widget(QtGui.QComboBox, "yAlign") - - axesList = [plt.axes] - if form.all.isChecked(): - axesList = plt.axesList - # Set new alignment - for axes in axesList: - if form.xAlign.currentIndex() == 0: - axes.xaxis.tick_bottom() - axes.spines['bottom'].set_color((0.0, 0.0, 0.0)) - axes.spines['top'].set_color('none') - axes.xaxis.set_ticks_position('bottom') - axes.xaxis.set_label_position('bottom') - else: - axes.xaxis.tick_top() - axes.spines['top'].set_color((0.0, 0.0, 0.0)) - axes.spines['bottom'].set_color('none') - axes.xaxis.set_ticks_position('top') - axes.xaxis.set_label_position('top') - if form.yAlign.currentIndex() == 0: - axes.yaxis.tick_left() - axes.spines['left'].set_color((0.0, 0.0, 0.0)) - axes.spines['right'].set_color('none') - axes.yaxis.set_ticks_position('left') - axes.yaxis.set_label_position('left') - else: - axes.yaxis.tick_right() - axes.spines['right'].set_color((0.0, 0.0, 0.0)) - axes.spines['left'].set_color('none') - axes.yaxis.set_ticks_position('right') - axes.yaxis.set_label_position('right') - plt.update() - - def onOffset(self, value): - """Executed when axes offsets have been modified.""" - # Ensure that we can work - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.all = self.widget(QtGui.QCheckBox, "allAxes") - form.xOffset = self.widget(QtGui.QSpinBox, "xOffset") - form.yOffset = self.widget(QtGui.QSpinBox, "yOffset") - - axesList = [plt.axes] - if form.all.isChecked(): - axesList = plt.axesList - # Set new offset - for axes in axesList: - # For some reason, modify spines offset erase axes labels, so we - # need store it in order to regenerate later - x = axes.get_xlabel() - y = axes.get_ylabel() - for loc, spine in axes.spines.items(): - if loc in ['bottom', 'top']: - spine.set_position(('outward', form.xOffset.value())) - if loc in ['left', 'right']: - spine.set_position(('outward', form.yOffset.value())) - # Now we can restore axes labels - Plot.xlabel(six.text_type(x)) - Plot.ylabel(six.text_type(y)) - plt.update() - - def onScales(self): - """Executed when axes scales have been modified.""" - # Ensure that we can work - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.all = self.widget(QtGui.QCheckBox, "allAxes") - form.xAuto = self.widget(QtGui.QCheckBox, "xAuto") - form.yAuto = self.widget(QtGui.QCheckBox, "yAuto") - form.xSMin = self.widget(QtGui.QLineEdit, "xMin") - form.xSMax = self.widget(QtGui.QLineEdit, "xMax") - form.ySMin = self.widget(QtGui.QLineEdit, "yMin") - form.ySMax = self.widget(QtGui.QLineEdit, "yMax") - - axesList = [plt.axes] - if form.all.isChecked(): - axesList = plt.axesList - if not self.skip: - self.skip = True - # X axis - if form.xAuto.isChecked(): - for ax in axesList: - ax.set_autoscalex_on(True) - form.xSMin.setEnabled(False) - form.xSMax.setEnabled(False) - lim = plt.axes.get_xlim() - form.xSMin.setText(str(lim[0])) - form.xSMax.setText(str(lim[1])) - else: - form.xSMin.setEnabled(True) - form.xSMax.setEnabled(True) - try: - xMin = float(form.xSMin.text()) - except: - xMin = plt.axes.get_xlim()[0] - form.xSMin.setText(str(xMin)) - try: - xMax = float(form.xSMax.text()) - except: - xMax = plt.axes.get_xlim()[1] - form.xSMax.setText(str(xMax)) - for ax in axesList: - ax.set_xlim((xMin, xMax)) - # Y axis - if form.yAuto.isChecked(): - for ax in axesList: - ax.set_autoscaley_on(True) - form.ySMin.setEnabled(False) - form.ySMax.setEnabled(False) - lim = plt.axes.get_ylim() - form.ySMin.setText(str(lim[0])) - form.ySMax.setText(str(lim[1])) - else: - form.ySMin.setEnabled(True) - form.ySMax.setEnabled(True) - try: - yMin = float(form.ySMin.text()) - except: - yMin = plt.axes.get_ylim()[0] - form.ySMin.setText(str(yMin)) - try: - yMax = float(form.ySMax.text()) - except: - yMax = plt.axes.get_ylim()[1] - form.ySMax.setText(str(yMax)) - for ax in axesList: - ax.set_ylim((yMin, yMax)) - plt.update() - self.skip = False - - def onMdiArea(self, subWin): - """Executed when window is selected on mdi area. - - Keyword arguments: - subWin -- Selected window. - """ - plt = Plot.getPlot() - if plt != subWin: - self.updateUI() - - def updateUI(self): - """Setup UI controls values if possible""" - plt = Plot.getPlot() - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.axId = self.widget(QtGui.QSpinBox, "axesIndex") - form.new = self.widget(QtGui.QPushButton, "newAxesButton") - form.remove = self.widget(QtGui.QPushButton, "delAxesButton") - form.all = self.widget(QtGui.QCheckBox, "allAxes") - form.xMin = self.widget(QtGui.QSlider, "posXMin") - form.xMax = self.widget(QtGui.QSlider, "posXMax") - form.yMin = self.widget(QtGui.QSlider, "posYMin") - form.yMax = self.widget(QtGui.QSlider, "posYMax") - form.xAlign = self.widget(QtGui.QComboBox, "xAlign") - form.yAlign = self.widget(QtGui.QComboBox, "yAlign") - form.xOffset = self.widget(QtGui.QSpinBox, "xOffset") - form.yOffset = self.widget(QtGui.QSpinBox, "yOffset") - form.xAuto = self.widget(QtGui.QCheckBox, "xAuto") - form.yAuto = self.widget(QtGui.QCheckBox, "yAuto") - form.xSMin = self.widget(QtGui.QLineEdit, "xMin") - form.xSMax = self.widget(QtGui.QLineEdit, "xMax") - form.ySMin = self.widget(QtGui.QLineEdit, "yMin") - form.ySMax = self.widget(QtGui.QLineEdit, "yMax") - # Enable/disable them - form.axId.setEnabled(bool(plt)) - form.new.setEnabled(bool(plt)) - form.remove.setEnabled(bool(plt)) - form.all.setEnabled(bool(plt)) - form.xMin.setEnabled(bool(plt)) - form.xMax.setEnabled(bool(plt)) - form.yMin.setEnabled(bool(plt)) - form.yMax.setEnabled(bool(plt)) - form.xAlign.setEnabled(bool(plt)) - form.yAlign.setEnabled(bool(plt)) - form.xOffset.setEnabled(bool(plt)) - form.yOffset.setEnabled(bool(plt)) - form.xAuto.setEnabled(bool(plt)) - form.yAuto.setEnabled(bool(plt)) - form.xSMin.setEnabled(bool(plt)) - form.xSMax.setEnabled(bool(plt)) - form.ySMin.setEnabled(bool(plt)) - form.ySMax.setEnabled(bool(plt)) - if not plt: - form.axId.setValue(0) - return - # Ensure that active axes is correct - index = min(form.axId.value(), len(plt.axesList) - 1) - form.axId.setValue(index) - # Set dimensions - ax = plt.axes - bb = ax.get_position() - form.xMin.setValue(int(100 * bb._get_xmin())) - form.xMax.setValue(int(100 * bb._get_xmax())) - form.yMin.setValue(int(100 * bb._get_ymin())) - form.yMax.setValue(int(100 * bb._get_ymax())) - # Set alignment and offset - xPos = ax.xaxis.get_ticks_position() - yPos = ax.yaxis.get_ticks_position() - xOffset = ax.spines['bottom'].get_position()[1] - yOffset = ax.spines['left'].get_position()[1] - if xPos == 'bottom' or xPos == 'default': - form.xAlign.setCurrentIndex(0) - else: - form.xAlign.setCurrentIndex(1) - form.xOffset.setValue(xOffset) - if yPos == 'left' or yPos == 'default': - form.yAlign.setCurrentIndex(0) - else: - form.yAlign.setCurrentIndex(1) - form.yOffset.setValue(yOffset) - # Set scales - if ax.get_autoscalex_on(): - form.xAuto.setChecked(True) - form.xSMin.setEnabled(False) - form.xSMax.setEnabled(False) - else: - form.xAuto.setChecked(False) - form.xSMin.setEnabled(True) - form.xSMax.setEnabled(True) - lim = ax.get_xlim() - form.xSMin.setText(str(lim[0])) - form.xSMax.setText(str(lim[1])) - if ax.get_autoscaley_on(): - form.yAuto.setChecked(True) - form.ySMin.setEnabled(False) - form.ySMax.setEnabled(False) - else: - form.yAuto.setChecked(False) - form.ySMin.setEnabled(True) - form.ySMax.setEnabled(True) - lim = ax.get_ylim() - form.ySMin.setText(str(lim[0])) - form.ySMax.setText(str(lim[1])) - - -def createTask(): - panel = TaskPanel() - Gui.Control.showDialog(panel) - if panel.setupUi(): - Gui.Control.closeDialog(panel) - return None - return panel diff --git a/src/Mod/Plot/plotAxes/TaskPanel.ui b/src/Mod/Plot/plotAxes/TaskPanel.ui deleted file mode 100644 index b75f96c5f1..0000000000 --- a/src/Mod/Plot/plotAxes/TaskPanel.ui +++ /dev/null @@ -1,332 +0,0 @@ - - - TaskPanel - - - - 0 - 0 - 276 - 416 - - - - - 0 - 416 - - - - Configure axes - - - - - - 0 - - - - - - - - 0 - 0 - - - - Active axes: - - - - - - - - 5 - 0 - - - - 1 - - - - - - - - 2 - 0 - - - - add - - - - - - - - 2 - 0 - - - - - 10 - 0 - - - - del - - - - - - - - - Apply to all axes - - - - - - - 0 - - - 6 - - - - - - 0 - 1 - - - - 100 - - - 90 - - - Qt::Vertical - - - - - - - 100 - - - 90 - - - Qt::Horizontal - - - - - - - 100 - - - 10 - - - Qt::Horizontal - - - - - - - - 0 - 1 - - - - 100 - - - 10 - - - Qt::Vertical - - - - - - - Dimensions: - - - Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop - - - - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - Y axis position - - - Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft - - - - - - - 0 - - - - y at Left - - - - - y at Right - - - - - - - - 99999 - - - - - - - - - - - X axis position - - - Qt::AlignBottom|Qt::AlignLeading|Qt::AlignLeft - - - - - - - 0 - - - - x at bottom - - - - - x at top - - - - - - - - 99999 - - - - - - - - - - - - - Scales - - - - - - - X auto - - - - - - - Y auto - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/plotAxes/__init__.py b/src/Mod/Plot/plotAxes/__init__.py deleted file mode 100644 index 6a97f58b26..0000000000 --- a/src/Mod/Plot/plotAxes/__init__.py +++ /dev/null @@ -1,29 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import TaskPanel - - -def load(): - """Load the tool""" - TaskPanel.createTask() diff --git a/src/Mod/Plot/plotLabels/TaskPanel.py b/src/Mod/Plot/plotLabels/TaskPanel.py deleted file mode 100644 index 8216a85c2a..0000000000 --- a/src/Mod/Plot/plotLabels/TaskPanel.py +++ /dev/null @@ -1,312 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import six - -import FreeCAD as App -import FreeCADGui as Gui - -from PySide import QtGui, QtCore - -import Plot -from plotUtils import Paths - - -class TaskPanel: - def __init__(self): - self.ui = Paths.modulePath() + "/plotLabels/TaskPanel.ui" - self.skip = False - - def accept(self): - return True - - def reject(self): - return True - - def clicked(self, index): - pass - - def open(self): - pass - - def needsFullSpace(self): - return True - - def isAllowedAlterSelection(self): - return False - - def isAllowedAlterView(self): - return True - - def isAllowedAlterDocument(self): - return False - - def helpRequested(self): - pass - - def setupUi(self): - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.axId = self.widget(QtGui.QSpinBox, "axesIndex") - form.title = self.widget(QtGui.QLineEdit, "title") - form.titleSize = self.widget(QtGui.QSpinBox, "titleSize") - form.xLabel = self.widget(QtGui.QLineEdit, "titleX") - form.xSize = self.widget(QtGui.QSpinBox, "xSize") - form.yLabel = self.widget(QtGui.QLineEdit, "titleY") - form.ySize = self.widget(QtGui.QSpinBox, "ySize") - self.form = form - self.retranslateUi() - # Look for active axes if can - axId = 0 - plt = Plot.getPlot() - if plt: - while plt.axes != plt.axesList[axId]: - axId = axId + 1 - form.axId.setValue(axId) - self.updateUI() - QtCore.QObject.connect(form.axId, - QtCore.SIGNAL('valueChanged(int)'), - self.onAxesId) - QtCore.QObject.connect(form.title, - QtCore.SIGNAL("editingFinished()"), - self.onLabels) - QtCore.QObject.connect(form.xLabel, - QtCore.SIGNAL("editingFinished()"), - self.onLabels) - QtCore.QObject.connect(form.yLabel, - QtCore.SIGNAL("editingFinished()"), - self.onLabels) - QtCore.QObject.connect(form.titleSize, - QtCore.SIGNAL("valueChanged(int)"), - self.onFontSizes) - QtCore.QObject.connect(form.xSize, - QtCore.SIGNAL("valueChanged(int)"), - self.onFontSizes) - QtCore.QObject.connect(form.ySize, - QtCore.SIGNAL("valueChanged(int)"), - self.onFontSizes) - QtCore.QObject.connect( - Plot.getMdiArea(), - QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"), - self.onMdiArea) - return False - - def getMainWindow(self): - toplevel = QtGui.QApplication.topLevelWidgets() - for i in toplevel: - if i.metaObject().className() == "Gui::MainWindow": - return i - raise RuntimeError("No main window found") - - def widget(self, class_id, name): - """Return the selected widget. - - Keyword arguments: - class_id -- Class identifier - name -- Name of the widget - """ - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - return form.findChild(class_id, name) - - def retranslateUi(self): - """ Set the user interface locale strings. - """ - self.form.setWindowTitle(QtGui.QApplication.translate( - "plot_labels", - "Set labels", - None)) - self.widget(QtGui.QLabel, "axesLabel").setText( - QtGui.QApplication.translate("plot_labels", - "Active axes", - None)) - self.widget(QtGui.QLabel, "titleLabel").setText( - QtGui.QApplication.translate("plot_labels", - "Title", - None)) - self.widget(QtGui.QLabel, "xLabel").setText( - QtGui.QApplication.translate("plot_labels", - "X label", - None)) - self.widget(QtGui.QLabel, "yLabel").setText( - QtGui.QApplication.translate("plot_labels", - "Y label", - None)) - self.widget(QtGui.QSpinBox, "axesIndex").setToolTip(QtGui.QApplication.translate( - "plot_labels", - "Index of the active axes", - None)) - self.widget(QtGui.QLineEdit, "title").setToolTip( - QtGui.QApplication.translate( - "plot_labels", - "Title (associated to active axes)", - None)) - self.widget(QtGui.QSpinBox, "titleSize").setToolTip( - QtGui.QApplication.translate( - "plot_labels", - "Title font size", - None)) - self.widget(QtGui.QLineEdit, "titleX").setToolTip( - QtGui.QApplication.translate( - "plot_labels", - "X axis title", - None)) - self.widget(QtGui.QSpinBox, "xSize").setToolTip( - QtGui.QApplication.translate( - "plot_labels", - "X axis title font size", - None)) - self.widget(QtGui.QLineEdit, "titleY").setToolTip( - QtGui.QApplication.translate( - "plot_labels", - "Y axis title", - None)) - self.widget(QtGui.QSpinBox, "ySize").setToolTip( - QtGui.QApplication.translate( - "plot_labels", - "Y axis title font size", - None)) - - def onAxesId(self, value): - """ Executed when axes index is modified. """ - if not self.skip: - self.skip = True - # No active plot case - plt = Plot.getPlot() - if not plt: - self.updateUI() - self.skip = False - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.axId = self.widget(QtGui.QSpinBox, "axesIndex") - - form.axId.setMaximum(len(plt.axesList)) - if form.axId.value() >= len(plt.axesList): - form.axId.setValue(len(plt.axesList) - 1) - # Send new control to Plot instance - plt.setActiveAxes(form.axId.value()) - self.updateUI() - self.skip = False - - def onLabels(self): - """ Executed when labels have been modified. """ - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.title = self.widget(QtGui.QLineEdit, "title") - form.xLabel = self.widget(QtGui.QLineEdit, "titleX") - form.yLabel = self.widget(QtGui.QLineEdit, "titleY") - - Plot.title(six.text_type(form.title.text())) - Plot.xlabel(six.text_type(form.xLabel.text())) - Plot.ylabel(six.text_type(form.yLabel.text())) - plt.update() - - def onFontSizes(self, value): - """ Executed when font sizes have been modified. """ - # Get apply environment - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.titleSize = self.widget(QtGui.QSpinBox, "titleSize") - form.xSize = self.widget(QtGui.QSpinBox, "xSize") - form.ySize = self.widget(QtGui.QSpinBox, "ySize") - - ax = plt.axes - ax.title.set_fontsize(form.titleSize.value()) - ax.xaxis.label.set_fontsize(form.xSize.value()) - ax.yaxis.label.set_fontsize(form.ySize.value()) - plt.update() - - def onMdiArea(self, subWin): - """ Executed when window is selected on mdi area. - - Keyword arguments: - subWin -- Selected window. - """ - plt = Plot.getPlot() - if plt != subWin: - self.updateUI() - - def updateUI(self): - """ Setup UI controls values if possible """ - # Get again all the subwidgets (to avoid PySide Pitfalls) - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.axId = self.widget(QtGui.QSpinBox, "axesIndex") - form.title = self.widget(QtGui.QLineEdit, "title") - form.titleSize = self.widget(QtGui.QSpinBox, "titleSize") - form.xLabel = self.widget(QtGui.QLineEdit, "titleX") - form.xSize = self.widget(QtGui.QSpinBox, "xSize") - form.yLabel = self.widget(QtGui.QLineEdit, "titleY") - form.ySize = self.widget(QtGui.QSpinBox, "ySize") - - plt = Plot.getPlot() - form.axId.setEnabled(bool(plt)) - form.title.setEnabled(bool(plt)) - form.titleSize.setEnabled(bool(plt)) - form.xLabel.setEnabled(bool(plt)) - form.xSize.setEnabled(bool(plt)) - form.yLabel.setEnabled(bool(plt)) - form.ySize.setEnabled(bool(plt)) - if not plt: - return - # Ensure that active axes is correct - index = min(form.axId.value(), len(plt.axesList) - 1) - form.axId.setValue(index) - # Store data before starting changing it. - - ax = plt.axes - t = ax.get_title() - x = ax.get_xlabel() - y = ax.get_ylabel() - tt = ax.title.get_fontsize() - xx = ax.xaxis.label.get_fontsize() - yy = ax.yaxis.label.get_fontsize() - # Set labels - form.title.setText(t) - form.xLabel.setText(x) - form.yLabel.setText(y) - # Set font sizes - form.titleSize.setValue(tt) - form.xSize.setValue(xx) - form.ySize.setValue(yy) - - -def createTask(): - panel = TaskPanel() - Gui.Control.showDialog(panel) - if panel.setupUi(): - Gui.Control.closeDialog(panel) - return None - return panel diff --git a/src/Mod/Plot/plotLabels/TaskPanel.ui b/src/Mod/Plot/plotLabels/TaskPanel.ui deleted file mode 100644 index 203816390f..0000000000 --- a/src/Mod/Plot/plotLabels/TaskPanel.ui +++ /dev/null @@ -1,134 +0,0 @@ - - - TaskPanel - - - - 0 - 0 - 276 - 228 - - - - - 0 - 0 - - - - Set labels - - - - - - 0 - - - - - - - - 0 - 0 - - - - Active axes: - - - - - - - - 5 - 0 - - - - 1 - - - - - - - - - 0 - - - 6 - - - - - - - - Title - - - - - - - 1 - - - 1024 - - - - - - - 1 - - - 1024 - - - - - - - X label - - - - - - - - - - Y label - - - - - - - - - - 1 - - - 1024 - - - - - - - - - - - - diff --git a/src/Mod/Plot/plotLabels/__init__.py b/src/Mod/Plot/plotLabels/__init__.py deleted file mode 100644 index 6a97f58b26..0000000000 --- a/src/Mod/Plot/plotLabels/__init__.py +++ /dev/null @@ -1,29 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import TaskPanel - - -def load(): - """Load the tool""" - TaskPanel.createTask() diff --git a/src/Mod/Plot/plotPositions/TaskPanel.py b/src/Mod/Plot/plotPositions/TaskPanel.py deleted file mode 100644 index 32ffc9b4d3..0000000000 --- a/src/Mod/Plot/plotPositions/TaskPanel.py +++ /dev/null @@ -1,294 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import FreeCAD as App -import FreeCADGui as Gui - -from PySide import QtGui, QtCore - -import Plot -from plotUtils import Paths - - -class TaskPanel: - def __init__(self): - self.ui = Paths.modulePath() + "/plotPositions/TaskPanel.ui" - self.skip = False - self.item = 0 - self.names = [] - self.objs = [] - self.plt = None - - def accept(self): - return True - - def reject(self): - return True - - def clicked(self, index): - pass - - def open(self): - pass - - def needsFullSpace(self): - return True - - def isAllowedAlterSelection(self): - return False - - def isAllowedAlterView(self): - return True - - def isAllowedAlterDocument(self): - return False - - def helpRequested(self): - pass - - def setupUi(self): - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.items = self.widget(QtGui.QListWidget, "items") - form.x = self.widget(QtGui.QDoubleSpinBox, "x") - form.y = self.widget(QtGui.QDoubleSpinBox, "y") - form.s = self.widget(QtGui.QDoubleSpinBox, "size") - self.form = form - self.retranslateUi() - self.updateUI() - QtCore.QObject.connect( - form.items, - QtCore.SIGNAL("currentRowChanged(int)"), - self.onItem) - QtCore.QObject.connect( - form.x, - QtCore.SIGNAL("valueChanged(double)"), - self.onData) - QtCore.QObject.connect( - form.y, - QtCore.SIGNAL("valueChanged(double)"), - self.onData) - QtCore.QObject.connect( - form.s, - QtCore.SIGNAL("valueChanged(double)"), - self.onData) - QtCore.QObject.connect( - Plot.getMdiArea(), - QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"), - self.onMdiArea) - return False - - def getMainWindow(self): - toplevel = QtGui.QApplication.topLevelWidgets() - for i in toplevel: - if i.metaObject().className() == "Gui::MainWindow": - return i - raise RuntimeError("No main window found") - - def widget(self, class_id, name): - """Return the selected widget. - - Keyword arguments: - class_id -- Class identifier - name -- Name of the widget - """ - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - return form.findChild(class_id, name) - - def retranslateUi(self): - """Set the user interface locale strings.""" - self.form.setWindowTitle(QtGui.QApplication.translate( - "plot_positions", - "Set positions and sizes", - None)) - self.widget(QtGui.QLabel, "posLabel").setText( - QtGui.QApplication.translate( - "plot_positions", - "Position", - None)) - self.widget(QtGui.QLabel, "sizeLabel").setText( - QtGui.QApplication.translate( - "plot_positions", - "Size", - None)) - self.widget(QtGui.QListWidget, "items").setToolTip( - QtGui.QApplication.translate( - "plot_positions", - "List of modifiable items", - None)) - self.widget(QtGui.QDoubleSpinBox, "x").setToolTip( - QtGui.QApplication.translate( - "plot_positions", - "X item position", - None)) - self.widget(QtGui.QDoubleSpinBox, "y").setToolTip( - QtGui.QApplication.translate( - "plot_positions", - "Y item position", - None)) - self.widget(QtGui.QDoubleSpinBox, "size").setToolTip( - QtGui.QApplication.translate( - "plot_positions", - "Item size", - None)) - - def onItem(self, row): - """ Executed when selected item is modified. """ - self.item = row - self.updateUI() - - def onData(self, value): - """ Executed when selected item data is modified. """ - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.items = self.widget(QtGui.QListWidget, "items") - form.x = self.widget(QtGui.QDoubleSpinBox, "x") - form.y = self.widget(QtGui.QDoubleSpinBox, "y") - form.s = self.widget(QtGui.QDoubleSpinBox, "size") - if not self.skip: - self.skip = True - name = self.names[self.item] - obj = self.objs[self.item] - x = form.x.value() - y = form.y.value() - s = form.s.value() - # x/y labels only have one position control - if name.find('x label') >= 0: - form.y.setValue(x) - elif name.find('y label') >= 0: - form.x.setValue(y) - # title and labels only have one size control - if name.find('title') >= 0 or name.find('label') >= 0: - obj.set_position((x, y)) - obj.set_size(s) - # legend have all controls - else: - Plot.legend(plt.legend, (x, y), s) - plt.update() - self.skip = False - - def onMdiArea(self, subWin): - """Executed when a new window is selected on the mdi area. - - Keyword arguments: - subWin -- Selected window. - """ - plt = Plot.getPlot() - if plt != subWin: - self.updateUI() - - def updateUI(self): - """Setup the UI control values if it is possible.""" - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.items = self.widget(QtGui.QListWidget, "items") - form.x = self.widget(QtGui.QDoubleSpinBox, "x") - form.y = self.widget(QtGui.QDoubleSpinBox, "y") - form.s = self.widget(QtGui.QDoubleSpinBox, "size") - plt = Plot.getPlot() - form.items.setEnabled(bool(plt)) - form.x.setEnabled(bool(plt)) - form.y.setEnabled(bool(plt)) - form.s.setEnabled(bool(plt)) - if not plt: - self.plt = plt - form.items.clear() - return - # Refill items list only if Plot instance have been changed - if self.plt != plt: - self.plt = plt - self.plt.update() - self.setList() - # Get data for controls - name = self.names[self.item] - obj = self.objs[self.item] - if name.find('title') >= 0 or name.find('label') >= 0: - p = obj.get_position() - x = p[0] - y = p[1] - s = obj.get_size() - if name.find('x label') >= 0: - form.y.setEnabled(False) - form.y.setValue(x) - elif name.find('y label') >= 0: - form.x.setEnabled(False) - form.x.setValue(y) - else: - x = plt.legPos[0] - y = plt.legPos[1] - s = obj.get_texts()[-1].get_fontsize() - # Send it to controls - form.x.setValue(x) - form.y.setValue(y) - form.s.setValue(s) - - def setList(self): - """ Setup UI controls values if possible """ - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.items = self.widget(QtGui.QListWidget, "items") - form.x = self.widget(QtGui.QDoubleSpinBox, "x") - form.y = self.widget(QtGui.QDoubleSpinBox, "y") - form.s = self.widget(QtGui.QDoubleSpinBox, "size") - # Clear lists - self.names = [] - self.objs = [] - # Fill lists with available objects - if self.plt: - # Axes data - for i in range(0, len(self.plt.axesList)): - ax = self.plt.axesList[i] - # Each axes have title, xaxis and yaxis - self.names.append('title (axes {})'.format(i)) - self.objs.append(ax.title) - self.names.append('x label (axes {})'.format(i)) - self.objs.append(ax.xaxis.get_label()) - self.names.append('y label (axes {})'.format(i)) - self.objs.append(ax.yaxis.get_label()) - # Legend if exist - ax = self.plt.axesList[-1] - if ax.legend_: - self.names.append('legend') - self.objs.append(ax.legend_) - # Send list to widget - form.items.clear() - for name in self.names: - form.items.addItem(name) - # Ensure that selected item is correct - if self.item >= len(self.names): - self.item = len(self.names) - 1 - form.items.setCurrentIndex(self.item) - - -def createTask(): - panel = TaskPanel() - Gui.Control.showDialog(panel) - if panel.setupUi(): - Gui.Control.closeDialog(panel) - return None - return panel diff --git a/src/Mod/Plot/plotPositions/TaskPanel.ui b/src/Mod/Plot/plotPositions/TaskPanel.ui deleted file mode 100644 index 18cc7ac038..0000000000 --- a/src/Mod/Plot/plotPositions/TaskPanel.ui +++ /dev/null @@ -1,107 +0,0 @@ - - - TaskPanel - - - - 0 - 0 - 296 - 336 - - - - - 0 - 336 - - - - Set positions and sizes - - - - - - 0 - - - - - QAbstractItemView::NoEditTriggers - - - true - - - - - - - - - Position - - - - - - - 3 - - - -99999.000000000000000 - - - 99999.000000000000000 - - - 0.010000000000000 - - - - - - - 3 - - - -99999.000000000000000 - - - 99999.000000000000000 - - - 0.010000000000000 - - - - - - - Size - - - - - - - 1 - - - 0.000000000000000 - - - 99999.000000000000000 - - - - - - - - - - - - diff --git a/src/Mod/Plot/plotPositions/__init__.py b/src/Mod/Plot/plotPositions/__init__.py deleted file mode 100644 index 6a97f58b26..0000000000 --- a/src/Mod/Plot/plotPositions/__init__.py +++ /dev/null @@ -1,29 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import TaskPanel - - -def load(): - """Load the tool""" - TaskPanel.createTask() diff --git a/src/Mod/Plot/plotSave/TaskPanel.py b/src/Mod/Plot/plotSave/TaskPanel.py deleted file mode 100644 index 5e8873fcdd..0000000000 --- a/src/Mod/Plot/plotSave/TaskPanel.py +++ /dev/null @@ -1,228 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import os - -import six - -import FreeCAD as App -import FreeCADGui as Gui - -from PySide import QtGui, QtCore - -import Plot -from plotUtils import Paths - - -class TaskPanel: - def __init__(self): - self.ui = Paths.modulePath() + "/plotSave/TaskPanel.ui" - - def accept(self): - plt = Plot.getPlot() - if not plt: - msg = QtGui.QApplication.translate( - "plot_console", - "Plot document must be selected in order to save it", - None) - App.Console.PrintError(msg + "\n") - return False - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.path = self.widget(QtGui.QLineEdit, "path") - form.sizeX = self.widget(QtGui.QDoubleSpinBox, "sizeX") - form.sizeY = self.widget(QtGui.QDoubleSpinBox, "sizeY") - form.dpi = self.widget(QtGui.QSpinBox, "dpi") - path = six.text_type(form.path.text()) - size = (form.sizeX.value(), form.sizeY.value()) - dpi = form.dpi.value() - Plot.save(path, size, dpi) - return True - - def reject(self): - return True - - def clicked(self, index): - pass - - def open(self): - pass - - def needsFullSpace(self): - return True - - def isAllowedAlterSelection(self): - return False - - def isAllowedAlterView(self): - return True - - def isAllowedAlterDocument(self): - return False - - def helpRequested(self): - pass - - def setupUi(self): - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.path = self.widget(QtGui.QLineEdit, "path") - form.pathButton = self.widget(QtGui.QPushButton, "pathButton") - form.sizeX = self.widget(QtGui.QDoubleSpinBox, "sizeX") - form.sizeY = self.widget(QtGui.QDoubleSpinBox, "sizeY") - form.dpi = self.widget(QtGui.QSpinBox, "dpi") - self.form = form - self.retranslateUi() - QtCore.QObject.connect( - form.pathButton, - QtCore.SIGNAL("pressed()"), - self.onPathButton) - QtCore.QObject.connect( - Plot.getMdiArea(), - QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"), - self.onMdiArea) - home = os.getenv('USERPROFILE') or os.getenv('HOME') - form.path.setText(os.path.join(home, "plot.png")) - self.updateUI() - return False - - def getMainWindow(self): - toplevel = QtGui.QApplication.topLevelWidgets() - for i in toplevel: - if i.metaObject().className() == "Gui::MainWindow": - return i - raise RuntimeError("No main window found") - - def widget(self, class_id, name): - """Return the selected widget. - - Keyword arguments: - class_id -- Class identifier - name -- Name of the widget - """ - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - return form.findChild(class_id, name) - - def retranslateUi(self): - """Set the user interface locale strings.""" - self.form.setWindowTitle(QtGui.QApplication.translate( - "plot_save", - "Save figure", - None)) - self.widget(QtGui.QLabel, "sizeLabel").setText( - QtGui.QApplication.translate( - "plot_save", - "Inches", - None)) - self.widget(QtGui.QLabel, "dpiLabel").setText( - QtGui.QApplication.translate( - "plot_save", - "Dots per Inch", - None)) - self.widget(QtGui.QLineEdit, "path").setToolTip( - QtGui.QApplication.translate( - "plot_save", - "Output image file path", - None)) - self.widget(QtGui.QPushButton, "pathButton").setToolTip( - QtGui.QApplication.translate( - "plot_save", - "Show a file selection dialog", - None)) - self.widget(QtGui.QDoubleSpinBox, "sizeX").setToolTip( - QtGui.QApplication.translate( - "plot_save", - "X image size", - None)) - self.widget(QtGui.QDoubleSpinBox, "sizeY").setToolTip( - QtGui.QApplication.translate( - "plot_save", - "Y image size", - None)) - self.widget(QtGui.QSpinBox, "dpi").setToolTip( - QtGui.QApplication.translate( - "plot_save", - "Dots per point, with size will define output image" - " resolution", - None)) - - def updateUI(self): - """ Setup UI controls values if possible """ - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.path = self.widget(QtGui.QLineEdit, "path") - form.pathButton = self.widget(QtGui.QPushButton, "pathButton") - form.sizeX = self.widget(QtGui.QDoubleSpinBox, "sizeX") - form.sizeY = self.widget(QtGui.QDoubleSpinBox, "sizeY") - form.dpi = self.widget(QtGui.QSpinBox, "dpi") - plt = Plot.getPlot() - form.path.setEnabled(bool(plt)) - form.pathButton.setEnabled(bool(plt)) - form.sizeX.setEnabled(bool(plt)) - form.sizeY.setEnabled(bool(plt)) - form.dpi.setEnabled(bool(plt)) - if not plt: - return - fig = plt.fig - size = fig.get_size_inches() - dpi = fig.get_dpi() - form.sizeX.setValue(size[0]) - form.sizeY.setValue(size[1]) - form.dpi.setValue(dpi) - - def onPathButton(self): - """Executed when the path selection button is pressed.""" - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.path = self.widget(QtGui.QLineEdit, "path") - path = form.path.text() - file_choices = ("Portable Network Graphics (*.png)|*.png;;" - "Portable Document Format (*.pdf)|*.pdf;;" - "PostScript (*.ps)|*.ps;;" - "Encapsulated PostScript (*.eps)|*.eps") - path = QtGui.QFileDialog.getSaveFileName(None, - 'Save figure', - path, - file_choices) - if path: - form.path.setText(path) - - def onMdiArea(self, subWin): - """Executed when a new window is selected on the mdi area. - - Keyword arguments: - subWin -- Selected window. - """ - plt = Plot.getPlot() - if plt != subWin: - self.updateUI() - - -def createTask(): - panel = TaskPanel() - Gui.Control.showDialog(panel) - if panel.setupUi(): - Gui.Control.closeDialog(panel) - return None - return panel diff --git a/src/Mod/Plot/plotSave/TaskPanel.ui b/src/Mod/Plot/plotSave/TaskPanel.ui deleted file mode 100644 index 9bc79fc3e8..0000000000 --- a/src/Mod/Plot/plotSave/TaskPanel.ui +++ /dev/null @@ -1,141 +0,0 @@ - - - TaskPanel - - - - 0 - 0 - 260 - 253 - - - - Save figure - - - - - - - - - - - 7 - 0 - - - - - - - - true - - - - 1 - 0 - - - - ... - - - - - - - - - - - 0.010000000000000 - - - 99999.000000000000000 - - - 6.400000000000000 - - - - - - - - 0 - 0 - - - - x - - - - - - - 0.010000000000000 - - - 99999.000000000000000 - - - 4.800000000000000 - - - - - - - - 0 - 0 - - - - Inches - - - - - - - - - - - 1 - - - 2048 - - - 100 - - - - - - - - 0 - 0 - - - - Dots per Inch - - - - - - - - - - - - diff --git a/src/Mod/Plot/plotSave/__init__.py b/src/Mod/Plot/plotSave/__init__.py deleted file mode 100644 index 6a97f58b26..0000000000 --- a/src/Mod/Plot/plotSave/__init__.py +++ /dev/null @@ -1,29 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import TaskPanel - - -def load(): - """Load the tool""" - TaskPanel.createTask() diff --git a/src/Mod/Plot/plotSeries/TaskPanel.py b/src/Mod/Plot/plotSeries/TaskPanel.py deleted file mode 100644 index fcab9cd288..0000000000 --- a/src/Mod/Plot/plotSeries/TaskPanel.py +++ /dev/null @@ -1,448 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import FreeCAD as App -import FreeCADGui as Gui - -from PySide import QtGui, QtCore - -import Plot -from plotUtils import Paths - -import matplotlib -from matplotlib.lines import Line2D -import matplotlib.colors as Colors - - -class TaskPanel: - def __init__(self): - self.ui = Paths.modulePath() + "/plotSeries/TaskPanel.ui" - self.skip = False - self.item = 0 - self.plt = None - - def accept(self): - return True - - def reject(self): - return True - - def clicked(self, index): - pass - - def open(self): - pass - - def needsFullSpace(self): - return True - - def isAllowedAlterSelection(self): - return False - - def isAllowedAlterView(self): - return True - - def isAllowedAlterDocument(self): - return False - - def helpRequested(self): - pass - - def setupUi(self): - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.items = self.widget(QtGui.QListWidget, "items") - form.label = self.widget(QtGui.QLineEdit, "label") - form.isLabel = self.widget(QtGui.QCheckBox, "isLabel") - form.style = self.widget(QtGui.QComboBox, "lineStyle") - form.marker = self.widget(QtGui.QComboBox, "markers") - form.width = self.widget(QtGui.QDoubleSpinBox, "lineWidth") - form.size = self.widget(QtGui.QSpinBox, "markerSize") - form.color = self.widget(QtGui.QPushButton, "color") - form.remove = self.widget(QtGui.QPushButton, "remove") - self.form = form - self.retranslateUi() - self.fillStyles() - self.updateUI() - QtCore.QObject.connect( - form.items, - QtCore.SIGNAL("currentRowChanged(int)"), - self.onItem) - QtCore.QObject.connect( - form.label, - QtCore.SIGNAL("editingFinished()"), - self.onData) - QtCore.QObject.connect( - form.isLabel, - QtCore.SIGNAL("stateChanged(int)"), - self.onData) - QtCore.QObject.connect( - form.style, - QtCore.SIGNAL("currentIndexChanged(int)"), - self.onData) - QtCore.QObject.connect( - form.marker, - QtCore.SIGNAL("currentIndexChanged(int)"), - self.onData) - QtCore.QObject.connect( - form.width, - QtCore.SIGNAL("valueChanged(double)"), - self.onData) - QtCore.QObject.connect( - form.size, - QtCore.SIGNAL("valueChanged(int)"), - self.onData) - QtCore.QObject.connect( - form.color, - QtCore.SIGNAL("pressed()"), - self.onColor) - QtCore.QObject.connect( - form.remove, - QtCore.SIGNAL("pressed()"), - self.onRemove) - QtCore.QObject.connect( - Plot.getMdiArea(), - QtCore.SIGNAL("subWindowActivated(QMdiSubWindow*)"), - self.onMdiArea) - return False - - def getMainWindow(self): - toplevel = QtGui.QApplication.topLevelWidgets() - for i in toplevel: - if i.metaObject().className() == "Gui::MainWindow": - return i - raise RuntimeError("No main window found") - - def widget(self, class_id, name): - """Return the selected widget. - - Keyword arguments: - class_id -- Class identifier - name -- Name of the widget - """ - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - return form.findChild(class_id, name) - - def retranslateUi(self): - """Set the user interface locale strings.""" - self.form.setWindowTitle(QtGui.QApplication.translate( - "plot_series", - "Configure series", - None)) - self.widget(QtGui.QCheckBox, "isLabel").setText( - QtGui.QApplication.translate( - "plot_series", - "No label", - None)) - self.widget(QtGui.QPushButton, "remove").setText( - QtGui.QApplication.translate( - "plot_series", - "Remove series", - None)) - self.widget(QtGui.QLabel, "styleLabel").setText( - QtGui.QApplication.translate( - "plot_series", - "Line style", - None)) - self.widget(QtGui.QLabel, "markerLabel").setText( - QtGui.QApplication.translate( - "plot_series", - "Marker", - None)) - self.widget(QtGui.QListWidget, "items").setToolTip( - QtGui.QApplication.translate( - "plot_series", - "List of available series", - None)) - self.widget(QtGui.QLineEdit, "label").setToolTip( - QtGui.QApplication.translate( - "plot_series", - "Line title", - None)) - self.widget(QtGui.QCheckBox, "isLabel").setToolTip( - QtGui.QApplication.translate( - "plot_series", - "If checked, series will not be considered for legend", - None)) - self.widget(QtGui.QComboBox, "lineStyle").setToolTip( - QtGui.QApplication.translate( - "plot_series", - "Line style", - None)) - self.widget(QtGui.QComboBox, "markers").setToolTip( - QtGui.QApplication.translate( - "plot_series", - "Marker style", - None)) - self.widget(QtGui.QDoubleSpinBox, "lineWidth").setToolTip( - QtGui.QApplication.translate( - "plot_series", - "Line width", - None)) - self.widget(QtGui.QSpinBox, "markerSize").setToolTip( - QtGui.QApplication.translate( - "plot_series", - "Marker size", - None)) - self.widget(QtGui.QPushButton, "color").setToolTip( - QtGui.QApplication.translate( - "plot_series", - "Line and marker color", - None)) - self.widget(QtGui.QPushButton, "remove").setToolTip( - QtGui.QApplication.translate( - "plot_series", - "Removes this series", - None)) - - def fillStyles(self): - """Fill the style combo boxes with the available ones.""" - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.style = self.widget(QtGui.QComboBox, "lineStyle") - form.marker = self.widget(QtGui.QComboBox, "markers") - # Line styles - linestyles = Line2D.lineStyles.keys() - for i in range(0, len(linestyles)): - style = linestyles[i] - string = "\'" + str(style) + "\'" - string += " (" + Line2D.lineStyles[style] + ")" - form.style.addItem(string) - # Markers - markers = Line2D.markers.keys() - for i in range(0, len(markers)): - marker = markers[i] - string = "\'" + str(marker) + "\'" - string += " (" + Line2D.markers[marker] + ")" - form.marker.addItem(string) - - def onItem(self, row): - """Executed when the selected item is modified.""" - if not self.skip: - self.skip = True - - self.item = row - - self.updateUI() - self.skip = False - - def onData(self): - """Executed when the selected item data is modified.""" - if not self.skip: - self.skip = True - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.label = self.widget(QtGui.QLineEdit, "label") - form.isLabel = self.widget(QtGui.QCheckBox, "isLabel") - form.style = self.widget(QtGui.QComboBox, "lineStyle") - form.marker = self.widget(QtGui.QComboBox, "markers") - form.width = self.widget(QtGui.QDoubleSpinBox, "lineWidth") - form.size = self.widget(QtGui.QSpinBox, "markerSize") - # Ensure that selected serie exist - if self.item >= len(Plot.series()): - self.updateUI() - return - # Set label - serie = Plot.series()[self.item] - if(form.isLabel.isChecked()): - serie.name = None - form.label.setEnabled(False) - else: - serie.name = form.label.text() - form.label.setEnabled(True) - # Set line style and marker - style = form.style.currentIndex() - linestyles = Line2D.lineStyles.keys() - serie.line.set_linestyle(linestyles[style]) - marker = form.marker.currentIndex() - markers = Line2D.markers.keys() - serie.line.set_marker(markers[marker]) - # Set line width and marker size - serie.line.set_linewidth(form.width.value()) - serie.line.set_markersize(form.size.value()) - plt.update() - # Regenerate series labels - self.setList() - self.skip = False - - def onColor(self): - """ Executed when color palette is requested. """ - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.color = self.widget(QtGui.QPushButton, "color") - - # Ensure that selected serie exist - if self.item >= len(Plot.series()): - self.updateUI() - return - # Show widget to select color - col = QtGui.QColorDialog.getColor() - # Send color to widget and serie - if col.isValid(): - serie = plt.series[self.item] - form.color.setStyleSheet( - "background-color: rgb({}, {}, {});".format(col.red(), - col.green(), - col.blue())) - serie.line.set_color((col.redF(), col.greenF(), col.blueF())) - plt.update() - - def onRemove(self): - """Executed when the data serie must be removed.""" - plt = Plot.getPlot() - if not plt: - self.updateUI() - return - # Ensure that selected serie exist - if self.item >= len(Plot.series()): - self.updateUI() - return - # Remove serie - Plot.removeSerie(self.item) - self.setList() - self.updateUI() - plt.update() - - def onMdiArea(self, subWin): - """Executed when a new window is selected on the mdi area. - - Keyword arguments: - subWin -- Selected window. - """ - plt = Plot.getPlot() - if plt != subWin: - self.updateUI() - - def updateUI(self): - """ Setup UI controls values if possible """ - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.items = self.widget(QtGui.QListWidget, "items") - form.label = self.widget(QtGui.QLineEdit, "label") - form.isLabel = self.widget(QtGui.QCheckBox, "isLabel") - form.style = self.widget(QtGui.QComboBox, "lineStyle") - form.marker = self.widget(QtGui.QComboBox, "markers") - form.width = self.widget(QtGui.QDoubleSpinBox, "lineWidth") - form.size = self.widget(QtGui.QSpinBox, "markerSize") - form.color = self.widget(QtGui.QPushButton, "color") - form.remove = self.widget(QtGui.QPushButton, "remove") - plt = Plot.getPlot() - form.items.setEnabled(bool(plt)) - form.label.setEnabled(bool(plt)) - form.isLabel.setEnabled(bool(plt)) - form.style.setEnabled(bool(plt)) - form.marker.setEnabled(bool(plt)) - form.width.setEnabled(bool(plt)) - form.size.setEnabled(bool(plt)) - form.color.setEnabled(bool(plt)) - form.remove.setEnabled(bool(plt)) - if not plt: - self.plt = plt - form.items.clear() - return - self.skip = True - # Refill list - if self.plt != plt or len(Plot.series()) != form.items.count(): - self.plt = plt - self.setList() - # Ensure that have series - if not len(Plot.series()): - form.label.setEnabled(False) - form.isLabel.setEnabled(False) - form.style.setEnabled(False) - form.marker.setEnabled(False) - form.width.setEnabled(False) - form.size.setEnabled(False) - form.color.setEnabled(False) - form.remove.setEnabled(False) - return - # Set label - serie = Plot.series()[self.item] - if serie.name is None: - form.isLabel.setChecked(True) - form.label.setEnabled(False) - form.label.setText("") - else: - form.isLabel.setChecked(False) - form.label.setText(serie.name) - # Set line style and marker - form.style.setCurrentIndex(0) - linestyles = Line2D.lineStyles.keys() - for i in range(0, len(linestyles)): - style = linestyles[i] - if style == serie.line.get_linestyle(): - form.style.setCurrentIndex(i) - form.marker.setCurrentIndex(0) - markers = Line2D.markers.keys() - for i in range(0, len(markers)): - marker = markers[i] - if marker == serie.line.get_marker(): - form.marker.setCurrentIndex(i) - # Set line width and marker size - form.width.setValue(serie.line.get_linewidth()) - form.size.setValue(serie.line.get_markersize()) - # Set color - color = Colors.colorConverter.to_rgb(serie.line.get_color()) - form.color.setStyleSheet("background-color: rgb({}, {}, {});".format( - int(color[0] * 255), - int(color[1] * 255), - int(color[2] * 255))) - self.skip = False - - def setList(self): - """Setup the UI control values if it is possible.""" - mw = self.getMainWindow() - form = mw.findChild(QtGui.QWidget, "TaskPanel") - form.items = self.widget(QtGui.QListWidget, "items") - form.items.clear() - series = Plot.series() - for i in range(0, len(series)): - serie = series[i] - string = 'serie ' + str(i) + ': ' - if serie.name is None: - string = string + '\"No label\"' - else: - string = string + serie.name - form.items.addItem(string) - # Ensure that selected item is correct - if len(series) and self.item >= len(series): - self.item = len(series) - 1 - form.items.setCurrentIndex(self.item) - - -def createTask(): - panel = TaskPanel() - Gui.Control.showDialog(panel) - if panel.setupUi(): - Gui.Control.closeDialog(panel) - return None - return panel diff --git a/src/Mod/Plot/plotSeries/TaskPanel.ui b/src/Mod/Plot/plotSeries/TaskPanel.ui deleted file mode 100644 index 3fbde165a6..0000000000 --- a/src/Mod/Plot/plotSeries/TaskPanel.ui +++ /dev/null @@ -1,154 +0,0 @@ - - - TaskPanel - - - - 0 - 0 - 296 - 336 - - - - - 0 - 336 - - - - Configure series - - - - - - 0 - - - - - QAbstractItemView::NoEditTriggers - - - true - - - - - - - - - - 2 - 0 - - - - - - - - 0.010000000000000 - - - 9999.000000000000000 - - - 0.500000000000000 - - - 1.000000000000000 - - - - - - - Line style - - - - - - - Remove serie - - - - - - - - 1 - 0 - - - - - - - - Markers - - - - - - - - 1 - 0 - - - - No label - - - - - - - - 1 - 0 - - - - - - - - - 1 - 0 - - - - false - - - - - - - - - - 1 - - - 9999 - - - - - - - - - - - - diff --git a/src/Mod/Plot/plotSeries/__init__.py b/src/Mod/Plot/plotSeries/__init__.py deleted file mode 100644 index 6a97f58b26..0000000000 --- a/src/Mod/Plot/plotSeries/__init__.py +++ /dev/null @@ -1,29 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import TaskPanel - - -def load(): - """Load the tool""" - TaskPanel.createTask() diff --git a/src/Mod/Plot/plotUtils/Paths.py b/src/Mod/Plot/plotUtils/Paths.py deleted file mode 100644 index 800ed4c5a6..0000000000 --- a/src/Mod/Plot/plotUtils/Paths.py +++ /dev/null @@ -1,48 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** - -import FreeCAD -import FreeCADGui -import os - - -def modulePath(): - """returns the current Plot module path.""" - path1 = FreeCAD.ConfigGet("AppHomePath") + "Mod/Plot" - path2 = FreeCAD.ConfigGet("UserAppData") + "Mod/Plot" - if os.path.exists(path2): - return path2 - else: - return path1 - - -def iconsPath(): - """returns the current Plot module icons path.""" - path = modulePath() + "/resources/icons" - return path - - -def translationsPath(): - """returns the current Plot module translations path.""" - path = modulePath() + "/resources/translations" - return path diff --git a/src/Mod/Plot/plotUtils/__init__.py b/src/Mod/Plot/plotUtils/__init__.py deleted file mode 100644 index 70392f2ea1..0000000000 --- a/src/Mod/Plot/plotUtils/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -#*************************************************************************** -#* * -#* Copyright (c) 2011, 2012 * -#* Jose Luis Cercos Pita * -#* * -#* This program is free software; you can redistribute it and/or modify * -#* it under the terms of the GNU Lesser General Public License (LGPL) * -#* as published by the Free Software Foundation; either version 2 of * -#* the License, or (at your option) any later version. * -#* for detail see the LICENCE text file. * -#* * -#* This program is distributed in the hope that it will be useful, * -#* but WITHOUT ANY WARRANTY; without even the implied warranty of * -#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -#* GNU Library General Public License for more details. * -#* * -#* You should have received a copy of the GNU Library General Public * -#* License along with this program; if not, write to the Free Software * -#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -#* USA * -#* * -#*************************************************************************** diff --git a/src/Mod/Plot/resources/Plot.qrc b/src/Mod/Plot/resources/Plot.qrc deleted file mode 100644 index dd60b74e82..0000000000 --- a/src/Mod/Plot/resources/Plot.qrc +++ /dev/null @@ -1,50 +0,0 @@ - - - icons/Axes.svg - icons/Grid.svg - icons/Icon.svg - icons/Labels.svg - icons/Legend.svg - icons/Positions.svg - icons/Save.svg - icons/Series.svg - icons/PlotWorkbench.svg - translations/Plot_af.qm - translations/Plot_cs.qm - translations/Plot_de.qm - translations/Plot_es-ES.qm - translations/Plot_fi.qm - translations/Plot_fr.qm - translations/Plot_hr.qm - translations/Plot_hu.qm - translations/Plot_it.qm - translations/Plot_ja.qm - translations/Plot_nl.qm - translations/Plot_no.qm - translations/Plot_pl.qm - translations/Plot_pt-BR.qm - translations/Plot_ro.qm - translations/Plot_ru.qm - translations/Plot_sk.qm - translations/Plot_sv-SE.qm - translations/Plot_tr.qm - translations/Plot_uk.qm - translations/Plot_zh-CN.qm - translations/Plot_zh-TW.qm - translations/Plot_pt-PT.qm - translations/Plot_sr.qm - translations/Plot_el.qm - translations/Plot_sl.qm - translations/Plot_eu.qm - translations/Plot_ca.qm - translations/Plot_gl.qm - translations/Plot_kab.qm - translations/Plot_ko.qm - translations/Plot_fil.qm - translations/Plot_id.qm - translations/Plot_lt.qm - translations/Plot_val-ES.qm - translations/Plot_ar.qm - translations/Plot_vi.qm - - diff --git a/src/Mod/Plot/resources/icons/Axes.svg b/src/Mod/Plot/resources/icons/Axes.svg deleted file mode 100644 index 25233a0a64..0000000000 --- a/src/Mod/Plot/resources/icons/Axes.svg +++ /dev/null @@ -1,175 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [Jose Luis Cercos Pita] - - - Axes - 2012-11-02 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Plot/resources/icons/Axes.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/resources/icons/Grid.svg b/src/Mod/Plot/resources/icons/Grid.svg deleted file mode 100755 index c0e153a240..0000000000 --- a/src/Mod/Plot/resources/icons/Grid.svg +++ /dev/null @@ -1,153 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [Jose Luis Cercos Pita] - - - Grid - 2012-11-02 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Plot/resources/icons/Grid.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/resources/icons/Icon.svg b/src/Mod/Plot/resources/icons/Icon.svg deleted file mode 100755 index f512f06683..0000000000 --- a/src/Mod/Plot/resources/icons/Icon.svg +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [Jose Luis Cercos Pita] - - - Icon - 2012-11-02 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Plot/resources/icons/Icon.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/resources/icons/Labels.svg b/src/Mod/Plot/resources/icons/Labels.svg deleted file mode 100644 index ea9dbc6d7a..0000000000 --- a/src/Mod/Plot/resources/icons/Labels.svg +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [Jose Luis Cercos Pita] - - - Labels - 2012-11-02 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Plot/resources/icons/Labels.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/resources/icons/Legend.svg b/src/Mod/Plot/resources/icons/Legend.svg deleted file mode 100644 index b741e32d6a..0000000000 --- a/src/Mod/Plot/resources/icons/Legend.svg +++ /dev/null @@ -1,184 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [Jose Luis Cercos Pita] - - - Legend - 2012-11-02 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Plot/resources/icons/Legend.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/resources/icons/PlotWorkbench.svg b/src/Mod/Plot/resources/icons/PlotWorkbench.svg deleted file mode 100755 index f6bf8716b0..0000000000 --- a/src/Mod/Plot/resources/icons/PlotWorkbench.svg +++ /dev/null @@ -1,148 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [triplus] - - - PlotWorkbench - 2016-02-26 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Plot/resources/icons/PlotWorkbench.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/resources/icons/Positions.svg b/src/Mod/Plot/resources/icons/Positions.svg deleted file mode 100644 index 56ebacffa9..0000000000 --- a/src/Mod/Plot/resources/icons/Positions.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [Jose Luis Cercos Pita] - - - Positions - 2012-11-02 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Plot/resources/icons/Positions.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/resources/icons/Save.svg b/src/Mod/Plot/resources/icons/Save.svg deleted file mode 100755 index e06c4a9cc5..0000000000 --- a/src/Mod/Plot/resources/icons/Save.svg +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [Jose Luis Cercos Pita] - - - Save - 2012-11-02 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Plot/resources/icons/Save.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/resources/icons/Series.svg b/src/Mod/Plot/resources/icons/Series.svg deleted file mode 100644 index 474c81d86c..0000000000 --- a/src/Mod/Plot/resources/icons/Series.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - [Jose Luis Cercos Pita] - - - Series - 2012-11-02 - http://www.freecadweb.org/wiki/index.php?title=Artwork - - - FreeCAD - - - FreeCAD/src/Mod/Plot/resources/icons/Series.svg - - - FreeCAD LGPL2+ - - - https://www.gnu.org/copyleft/lesser.html - - - [agryson] Alexander Gryson - - - - - - - - - - - - - - - - diff --git a/src/Mod/Plot/resources/translations/Plot.qm b/src/Mod/Plot/resources/translations/Plot.qm deleted file mode 100644 index be651eede2..0000000000 --- a/src/Mod/Plot/resources/translations/Plot.qm +++ /dev/null @@ -1 +0,0 @@ - - - - Plot - - - Plot edition tools - - - - - Plot - - - - - Plot_Axes - - - Configure axes - - - - - Configure the axes parameters - - - - - Plot_Grid - - - Show/Hide grid - - - - - Show/Hide grid on selected plot - - - - - Plot_Labels - - - Set labels - - - - - Set title and axes labels - - - - - Plot_Legend - - - Show/Hide legend - - - - - Show/Hide legend on selected plot - - - - - Plot_Positions - - - Set positions and sizes - - - - - Set labels and legend positions and sizes - - - - - Plot_SaveFig - - - Save plot - - - - - Save the plot as an image file - - - - - Plot_Series - - - Configure series - - - - - Configure series drawing style and label - - - - - plot_axes - - - Configure axes - - - - - Active axes - - - - - Apply to all axes - - - - - Dimensions - - - - - X axis position - - - - - Y axis position - - - - - Scales - - - - - X auto - - - - - Y auto - - - - - Index of the active axes - - - - - Add new axes to the plot - - - - - Remove selected axes - - - - - Check it to apply transformations to all axes - - - - - Left bound of axes - - - - - Right bound of axes - - - - - Bottom bound of axes - - - - - Top bound of axes - - - - - Outward offset of X axis - - - - - Outward offset of Y axis - - - - - X axis scale autoselection - - - - - Y axis scale autoselection - - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - - - - - matplotlib not found, Plot module will be disabled - - - - - Plot document must be selected in order to save it - - - - - Axes 0 can not be deleted - - - - - The grid must be activated on top of a plot document - - - - - The legend must be activated on top of a plot document - - - - - plot_labels - - - Set labels - - - - - Active axes - - - - - Title - - - - - X label - - - - - Y label - - - - - Index of the active axes - - - - - Title (associated to active axes) - - - - - Title font size - - - - - X axis title - - - - - X axis title font size - - - - - Y axis title - - - - - Y axis title font size - - - - - plot_positions - - - Set positions and sizes - - - - - Position - - - - - Size - - - - - X item position - - - - - Y item position - - - - - Item size - - - - - List of modifiable items - - - - - plot_save - - - Save figure - - - - - Inches - - - - - Dots per Inch - - - - - Output image file path - - - - - Show a file selection dialog - - - - - X image size - - - - - Y image size - - - - - Dots per point, with size will define output image resolution - - - - - plot_series - - - No label - - - - - Line style - - - - - Marker - - - - - Configure series - - - - - List of available series - - - - - Line title - - - - - Marker style - - - - - Line width - - - - - Marker size - - - - - Line and marker color - - - - - Remove series - - - - - If checked, series will not be considered for legend - - - - - Removes this series - - - - diff --git a/src/Mod/Plot/resources/translations/Plot_af.qm b/src/Mod/Plot/resources/translations/Plot_af.qm deleted file mode 100644 index 0e98d7c10d..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_af.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_af.ts b/src/Mod/Plot/resources/translations/Plot_af.ts deleted file mode 100644 index be131b6c50..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_af.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Plot edition tools - - - - Plot - Plot - - - - Plot_Axes - - - Configure axes - Configure axes - - - - Configure the axes parameters - Configure the axes parameters - - - - Plot_Grid - - - Show/Hide grid - Show/Hide grid - - - - Show/Hide grid on selected plot - Show/Hide grid on selected plot - - - - Plot_Labels - - - Set labels - Set labels - - - - Set title and axes labels - Set title and axes labels - - - - Plot_Legend - - - Show/Hide legend - Show/Hide legend - - - - Show/Hide legend on selected plot - Show/Hide legend on selected plot - - - - Plot_Positions - - - Set positions and sizes - Set positions and sizes - - - - Set labels and legend positions and sizes - Set labels and legend positions and sizes - - - - Plot_SaveFig - - - Save plot - Save plot - - - - Save the plot as an image file - Save the plot as an image file - - - - Plot_Series - - - Configure series - Configure series - - - - Configure series drawing style and label - Configure series drawing style and label - - - - plot_axes - - - Configure axes - Configure axes - - - - Active axes - Active axes - - - - Apply to all axes - Apply to all axes - - - - Dimensions - Dimensions - - - - X axis position - X axis position - - - - Y axis position - Y axis position - - - - Scales - Scales - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Index of the active axes - - - - Add new axes to the plot - Add new axes to the plot - - - - Remove selected axes - Remove selected axes - - - - Check it to apply transformations to all axes - Check it to apply transformations to all axes - - - - Left bound of axes - Left bound of axes - - - - Right bound of axes - Right bound of axes - - - - Bottom bound of axes - Bottom bound of axes - - - - Top bound of axes - Top bound of axes - - - - Outward offset of X axis - Outward offset of X axis - - - - Outward offset of Y axis - Outward offset of Y axis - - - - X axis scale autoselection - X axis scale autoselection - - - - Y axis scale autoselection - Y axis scale autoselection - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib not found, so Plot module can not be loaded - - - - matplotlib not found, Plot module will be disabled - matplotlib not found, Plot module will be disabled - - - - Plot document must be selected in order to save it - Plot document must be selected in order to save it - - - - Axes 0 can not be deleted - Axes 0 can not be deleted - - - - The grid must be activated on top of a plot document - The grid must be activated on top of a plot document - - - - The legend must be activated on top of a plot document - The legend must be activated on top of a plot document - - - - plot_labels - - - Set labels - Set labels - - - - Active axes - Active axes - - - - Title - Title - - - - X label - X label - - - - Y label - Y label - - - - Index of the active axes - Index of the active axes - - - - Title (associated to active axes) - Title (associated to active axes) - - - - Title font size - Title font size - - - - X axis title - X axis title - - - - X axis title font size - X axis title font size - - - - Y axis title - Y axis title - - - - Y axis title font size - Y axis title font size - - - - plot_positions - - - Set positions and sizes - Set positions and sizes - - - - Position - Posisie - - - - Size - Size - - - - X item position - X item position - - - - Y item position - Y item position - - - - Item size - Item size - - - - List of modifiable items - List of modifiable items - - - - plot_save - - - Save figure - Save figure - - - - Inches - Inches - - - - Dots per Inch - Dots per Inch - - - - Output image file path - Output image file path - - - - Show a file selection dialog - Show a file selection dialog - - - - X image size - X image size - - - - Y image size - Y image size - - - - Dots per point, with size will define output image resolution - Dots per point, with size will define output image resolution - - - - plot_series - - - No label - No label - - - - Line style - Line style - - - - Marker - Marker - - - - Configure series - Configure series - - - - List of available series - List of available series - - - - Line title - Line title - - - - Marker style - Marker style - - - - Line width - Line width - - - - Marker size - Marker size - - - - Line and marker color - Line and marker color - - - - Remove series - Remove series - - - - If checked, series will not be considered for legend - If checked, series will not be considered for legend - - - - Removes this series - Removes this series - - - diff --git a/src/Mod/Plot/resources/translations/Plot_ar.qm b/src/Mod/Plot/resources/translations/Plot_ar.qm deleted file mode 100644 index 9badb93394..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_ar.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_ar.ts b/src/Mod/Plot/resources/translations/Plot_ar.ts deleted file mode 100644 index 0efcbcb68c..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_ar.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - أدوات طبعة المؤامرة - - - - Plot - قطعة - - - - Plot_Axes - - - Configure axes - تكوين المحاور - - - - Configure the axes parameters - تكوين معلمات المحاور - - - - Plot_Grid - - - Show/Hide grid - إظهار / إخفاء الشبكة - - - - Show/Hide grid on selected plot - إظهار / إخفاء الشبكة على مؤامرة مختارة - - - - Plot_Labels - - - Set labels - تعيين مسميات - - - - Set title and axes labels - تعيين العناوين ومسميات المحاور - - - - Plot_Legend - - - Show/Hide legend - إظهار/إخفاء وسيلة الإيضاح - - - - Show/Hide legend on selected plot - Show/Hide legend on selected plot - - - - Plot_Positions - - - Set positions and sizes - حدد المواضع والأحجام - - - - Set labels and legend positions and sizes - Set labels and legend positions and sizes - - - - Plot_SaveFig - - - Save plot - احفظ الرسمة - - - - Save the plot as an image file - احفظ الرسمة كملف صوري - - - - Plot_Series - - - Configure series - ضبط السلسلة - - - - Configure series drawing style and label - Configure series drawing style and label - - - - plot_axes - - - Configure axes - تكوين المحاور - - - - Active axes - المحاور النشطة - - - - Apply to all axes - تطبيق على كافة المحاور - - - - Dimensions - الأبعاد - - - - X axis position - موضع المحور X - - - - Y axis position - موضع المحور Y - - - - Scales - Scales - - - - X auto - س تلقائي - - - - Y auto - ص تلقائي - - - - Index of the active axes - فهرس المحاور النشطة - - - - Add new axes to the plot - أضف محور جديد للرسمة - - - - Remove selected axes - حذف المحاور المختارة - - - - Check it to apply transformations to all axes - قم بهذا الإختيار لتطبيق التغييرات على كل المحاور - - - - Left bound of axes - Left bound of axes - - - - Right bound of axes - Right bound of axes - - - - Bottom bound of axes - Bottom bound of axes - - - - Top bound of axes - Top bound of axes - - - - Outward offset of X axis - Outward offset of X axis - - - - Outward offset of Y axis - Outward offset of Y axis - - - - X axis scale autoselection - X axis scale autoselection - - - - Y axis scale autoselection - Y axis scale autoselection - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib not found, so Plot module can not be loaded - - - - matplotlib not found, Plot module will be disabled - matplotlib not found, Plot module will be disabled - - - - Plot document must be selected in order to save it - Plot document must be selected in order to save it - - - - Axes 0 can not be deleted - لا يمكن حذف المحاور 0 - - - - The grid must be activated on top of a plot document - The grid must be activated on top of a plot document - - - - The legend must be activated on top of a plot document - The legend must be activated on top of a plot document - - - - plot_labels - - - Set labels - تعيين مسميات - - - - Active axes - المحاور النشطة - - - - Title - العنوان - - - - X label - X label - - - - Y label - Y label - - - - Index of the active axes - فهرس المحاور النشطة - - - - Title (associated to active axes) - العنوان (له علاقة بالمحاور النشطة) - - - - Title font size - حجم خط العنوان - - - - X axis title - عنوان المحور X - - - - X axis title font size - حجم خط عنوان المحور X - - - - Y axis title - عنوان المحور Y - - - - Y axis title font size - حجم خط عنوان المحور Y - - - - plot_positions - - - Set positions and sizes - حدد المواضع والأحجام - - - - Position - Position - - - - Size - الحجم - - - - X item position - موضع العنصر X - - - - Y item position - موضع العنصر Y - - - - Item size - حجم العنصر - - - - List of modifiable items - لائحة العناصر القابلة للتعديل - - - - plot_save - - - Save figure - Save figure - - - - Inches - بوصة - - - - Dots per Inch - نقطة لكل بوصة - - - - Output image file path - Output image file path - - - - Show a file selection dialog - Show a file selection dialog - - - - X image size - حجم الصورة X - - - - Y image size - حجم الصورة Y - - - - Dots per point, with size will define output image resolution - Dots per point, with size will define output image resolution - - - - plot_series - - - No label - No label - - - - Line style - أسلوب الخط - - - - Marker - Marker - - - - Configure series - ضبط السلسلة - - - - List of available series - List of available series - - - - Line title - Line title - - - - Marker style - Marker style - - - - Line width - عرض الخط - - - - Marker size - Marker size - - - - Line and marker color - Line and marker color - - - - Remove series - Remove series - - - - If checked, series will not be considered for legend - If checked, series will not be considered for legend - - - - Removes this series - Removes this series - - - diff --git a/src/Mod/Plot/resources/translations/Plot_ca.qm b/src/Mod/Plot/resources/translations/Plot_ca.qm deleted file mode 100644 index 567c79b2d9..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_ca.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_ca.ts b/src/Mod/Plot/resources/translations/Plot_ca.ts deleted file mode 100644 index 3d68530f4d..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_ca.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Eines d'edició Gráfica - - - - Plot - Gráfic - - - - Plot_Axes - - - Configure axes - Configurar els eixos - - - - Configure the axes parameters - Configura els paràmetres d'eixos - - - - Plot_Grid - - - Show/Hide grid - Mostra/amaga la quadrícula - - - - Show/Hide grid on selected plot - Mostra/amaga la quadrícula d'argument seleccionat - - - - Plot_Labels - - - Set labels - Conjunt d'Etiquetes - - - - Set title and axes labels - Defineix les etiquetes de títol i eixos - - - - Plot_Legend - - - Show/Hide legend - Mostra o amaga la llegenda - - - - Show/Hide legend on selected plot - Mostra o amaga la llegenda sobre Plot seleccionat - - - - Plot_Positions - - - Set positions and sizes - Mides i posicions Paràmetres - - - - Set labels and legend positions and sizes - Posar Etiquetes i posicions de llegenda i mides - - - - Plot_SaveFig - - - Save plot - Salvar Plot - - - - Save the plot as an image file - Desar la gràfica com un arxiu d'imatge - - - - Plot_Series - - - Configure series - Configurar la sèrie - - - - Configure series drawing style and label - Configurar sèrie dibuix estil i etiqueta - - - - plot_axes - - - Configure axes - Configurar els eixos - - - - Active axes - Eixos actius - - - - Apply to all axes - S'apliquen a tots els eixos - - - - Dimensions - Dimensions - - - - X axis position - Posició de l'eix X - - - - Y axis position - Posició de l'eix Y - - - - Scales - Escales - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Índex dels eixos actius - - - - Add new axes to the plot - Afegir nous eixos al Plot - - - - Remove selected axes - Esborra els eixos seleccionats - - - - Check it to apply transformations to all axes - Comprovar-ho per aplicar transformacions a tots els eixos - - - - Left bound of axes - Esquerra obligat dels eixos - - - - Right bound of axes - Límit Dret dels eixos - - - - Bottom bound of axes - Fons obligat dels eixos - - - - Top bound of axes - Part superior obligat dels eixos - - - - Outward offset of X axis - Desplaçament cap a fora de l'eix X - - - - Outward offset of Y axis - Desplaçament cap a fora de l'eix Y - - - - X axis scale autoselection - Eix X auto seleccionar l'escala - - - - Y axis scale autoselection - Y eix escala autoseleciò - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib no es troba, així que no es pot carregar mòdul argument - - - - matplotlib not found, Plot module will be disabled - matplotlib no es troba, mòdul s'impossibilitarà - - - - Plot document must be selected in order to save it - Cal seleccionar Plot document per tal de salvar-lo - - - - Axes 0 can not be deleted - Eixos 0 no es pot suprimir - - - - The grid must be activated on top of a plot document - La xarxa ha d'estar activat a sobre d'un document de plot - - - - The legend must be activated on top of a plot document - La llegenda ha d'estar activat a sobre d'un document de Plot - - - - plot_labels - - - Set labels - Conjunt d'Etiquetes - - - - Active axes - Eixos actius - - - - Title - Títol - - - - X label - X etiqueta - - - - Y label - Etiquetes d'Y - - - - Index of the active axes - Índex dels eixos actius - - - - Title (associated to active axes) - Títol (associada als eixos actius) - - - - Title font size - Lletra de títol - - - - X axis title - X el títol d'eix - - - - X axis title font size - X eix títol de lletra - - - - Y axis title - Títol de l'eix Y - - - - Y axis title font size - Mida de lletra de títol de l'eix Y - - - - plot_positions - - - Set positions and sizes - Mides i posicions Paràmetres - - - - Position - Position - - - - Size - Mida - - - - X item position - La posició de l'element X - - - - Y item position - Y element posició - - - - Item size - Mida de l'element - - - - List of modifiable items - Llista dels elements modificables - - - - plot_save - - - Save figure - Salvar la figura - - - - Inches - Polzades - - - - Dots per Inch - Punts per polzada - - - - Output image file path - Camí d'arxiu d'imatge de sortida - - - - Show a file selection dialog - Mostra un diàleg de selecció de fitxer - - - - X image size - X la mida de la imatge - - - - Y image size - Mida d'imatge Y - - - - Dots per point, with size will define output image resolution - Punts per cada punt, amb mida definirà la resolució d'imatge de sortida - - - - plot_series - - - No label - Sense etiqueta - - - - Line style - Estil de línia - - - - Marker - Marcador - - - - Configure series - Configurar la sèrie - - - - List of available series - Llista de les sèries disponibles - - - - Line title - Títol de línia - - - - Marker style - Estil de marcador - - - - Line width - Amplada de línia - - - - Marker size - Mida del marcador - - - - Line and marker color - Color de línia i marcador - - - - Remove series - Suprimeix la sèrie - - - - If checked, series will not be considered for legend - Si està marcada, la sèrie no es tindrà en compte per a la llegenda - - - - Removes this series - Suprimeix aquesta sèrie - - - diff --git a/src/Mod/Plot/resources/translations/Plot_cs.qm b/src/Mod/Plot/resources/translations/Plot_cs.qm deleted file mode 100644 index 47bb331af5..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_cs.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_cs.ts b/src/Mod/Plot/resources/translations/Plot_cs.ts deleted file mode 100644 index f3b5ffc8bc..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_cs.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Nástroje editace grafu - - - - Plot - Graf - - - - Plot_Axes - - - Configure axes - Konfigurovat osy - - - - Configure the axes parameters - Nastavit parametry os - - - - Plot_Grid - - - Show/Hide grid - Zobrazit či skrýt mřížku - - - - Show/Hide grid on selected plot - Zobrazit / skrýt mřížku u vybraného grafu - - - - Plot_Labels - - - Set labels - Nastavit popisky - - - - Set title and axes labels - Nastavit nadpis a popisky os - - - - Plot_Legend - - - Show/Hide legend - Zobrazit/skrýt legendu - - - - Show/Hide legend on selected plot - Zobrazit / skrýt legendu u vybraného vykreslení - - - - Plot_Positions - - - Set positions and sizes - Nastavit pozice a velikosti - - - - Set labels and legend positions and sizes - Nastavit pozice a velikosti popisků a legendy - - - - Plot_SaveFig - - - Save plot - Uložit graf - - - - Save the plot as an image file - Uložit graf jako soubor obrázku - - - - Plot_Series - - - Configure series - Nastavení série - - - - Configure series drawing style and label - Nastavení série stylu výkresu a popis - - - - plot_axes - - - Configure axes - Konfigurovat osy - - - - Active axes - Aktivní osy - - - - Apply to all axes - Aplikovat na všechny osy - - - - Dimensions - Rozměry - - - - X axis position - Pozice osy X - - - - Y axis position - Pozice osy Y - - - - Scales - Měřítka - - - - X auto - X automaticky - - - - Y auto - Y automaticky - - - - Index of the active axes - Popisek aktivních os - - - - Add new axes to the plot - Přidat nové osy do grafu - - - - Remove selected axes - Odstranit vybrané osy - - - - Check it to apply transformations to all axes - Povolí transformaci ve všech osách - - - - Left bound of axes - Levá mez os - - - - Right bound of axes - Pravá mez os - - - - Bottom bound of axes - Spodní mez os - - - - Top bound of axes - Horní mez os - - - - Outward offset of X axis - Vnější odsazení osy X - - - - Outward offset of Y axis - Vnější odsazení osy Y - - - - X axis scale autoselection - Automatické měřítko osy X - - - - Y axis scale autoselection - Automatické měřítko osy Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - modul Grafy nemohl být načten, protože knihovna matplotlib nebyla nalezena - - - - matplotlib not found, Plot module will be disabled - Knihovna matplotlib nebyla nalezena, modul Grafy bude deaktivován - - - - Plot document must be selected in order to save it - Graf musí být vybrán, aby mohl být uložen - - - - Axes 0 can not be deleted - Osy 0 nemůžou být smazány - - - - The grid must be activated on top of a plot document - Mřížka musí být aktivována nahoře dokumentu grafu - - - - The legend must be activated on top of a plot document - Legenda musí být aktivována nahoře dokumentu grafu - - - - plot_labels - - - Set labels - Nastavit popisky - - - - Active axes - Aktivní osy - - - - Title - Nadpis - - - - X label - Popisek X - - - - Y label - Popisek Y - - - - Index of the active axes - Popisek aktivních os - - - - Title (associated to active axes) - Nadpis (připojený k aktivním osám) - - - - Title font size - Velikost písma nadpisu - - - - X axis title - Popisek osy X - - - - X axis title font size - Velikost popisku osy X - - - - Y axis title - Popisek osy Y - - - - Y axis title font size - Velikost popisku osy Y - - - - plot_positions - - - Set positions and sizes - Nastavit pozice a velikosti - - - - Position - Position - - - - Size - Velikost - - - - X item position - Poloha X - - - - Y item position - Poloha Y - - - - Item size - Velikost položky - - - - List of modifiable items - Seznam upravitelných položek - - - - plot_save - - - Save figure - Uložit obrázek - - - - Inches - Palce - - - - Dots per Inch - Body na palec - - - - Output image file path - Umístění souboru výstupního obrázku - - - - Show a file selection dialog - Zobrazit dialog pro výběr souboru - - - - X image size - X velikost obrázku - - - - Y image size - Y velikost obrázku - - - - Dots per point, with size will define output image resolution - Počet teček na bod s velikostí definuje výstupní rozlišení obrázku - - - - plot_series - - - No label - Bez popisku - - - - Line style - Styl čáry - - - - Marker - Značka - - - - Configure series - Nastavení série - - - - List of available series - Seznam dostupných řad hodnot - - - - Line title - Popis čáry - - - - Marker style - Styl značky - - - - Line width - Tloušťka čáry - - - - Marker size - Velikost značky - - - - Line and marker color - Barva čáry a značky - - - - Remove series - Odstranit řadu hodnot - - - - If checked, series will not be considered for legend - Je-li zaškrtnuto, řada hodnot nebude zahrnuta v legendě - - - - Removes this series - Odstranit tuto řadu hodnot - - - diff --git a/src/Mod/Plot/resources/translations/Plot_de.qm b/src/Mod/Plot/resources/translations/Plot_de.qm deleted file mode 100644 index 6f1f4510f1..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_de.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_de.ts b/src/Mod/Plot/resources/translations/Plot_de.ts deleted file mode 100644 index a7e17dc925..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_de.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Druckausgabewerkzeuge - - - - Plot - Ausdruck - - - - Plot_Axes - - - Configure axes - Achsen konfigurieren - - - - Configure the axes parameters - Konfigurieren Sie die Achsenparameter - - - - Plot_Grid - - - Show/Hide grid - Raster ein-/ausblenden - - - - Show/Hide grid on selected plot - Raster auf selektiertem Ausdruck ein-/ausblenden - - - - Plot_Labels - - - Set labels - Beschriftung festlegen - - - - Set title and axes labels - Setze Titel- und Achsenbeschriftungen - - - - Plot_Legend - - - Show/Hide legend - Legende ein-/ausblenden - - - - Show/Hide legend on selected plot - Beschreibung von selektiertem Ausdruck ein-/ausblenden - - - - Plot_Positions - - - Set positions and sizes - Einstellen der Position und Größe - - - - Set labels and legend positions and sizes - Beschriftung, Lage und Größe der Legende festlegen - - - - Plot_SaveFig - - - Save plot - Ausdruck speichern - - - - Save the plot as an image file - Ausdruck als Bilddatei speichern - - - - Plot_Series - - - Configure series - Folgen einrichten - - - - Configure series drawing style and label - Einrichten des Zeichen-Stils und der Beschriftung von Folgen - - - - plot_axes - - - Configure axes - Achsen konfigurieren - - - - Active axes - Aktive Achsen - - - - Apply to all axes - Auf alle Achsen anwenden - - - - Dimensions - Bemaßungen - - - - X axis position - X-Achse positionieren - - - - Y axis position - Y-Achse positionieren - - - - Scales - Maßstäbe - - - - X auto - X automatisch - - - - Y auto - Y automatisch - - - - Index of the active axes - Zähler der aktiven Achse - - - - Add new axes to the plot - Neue Achsen zum Ausdruck hinzufügen - - - - Remove selected axes - Ausgewählte Achsen entfernen - - - - Check it to apply transformations to all axes - Prüfen zum Anwenden auf alle Achsen - - - - Left bound of axes - Achsbegrenzung links - - - - Right bound of axes - Achsbegrenzung rechts - - - - Bottom bound of axes - Achsbegrenzung unten - - - - Top bound of axes - Achsbegrenzung oben - - - - Outward offset of X axis - Äußerer Versatz der X-Achse - - - - Outward offset of Y axis - Äußerer Versatz der Y-Achse - - - - X axis scale autoselection - Automatische Auswahl der X-Achsen-Skalierung - - - - Y axis scale autoselection - Automatische Auswahl der Y-Achsen-Skalierung - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib nicht gefunden, daher kann das Modul Plot nicht geladen werden - - - - matplotlib not found, Plot module will be disabled - matplotlib nicht gefunden, daher wird das Modul Plot ausgeschaltet - - - - Plot document must be selected in order to save it - Das Ausdruckdokument muss ausgewählt werden, damit es gespeichert werden kann - - - - Axes 0 can not be deleted - Achse 0 kann nicht gelöscht werden - - - - The grid must be activated on top of a plot document - Das Raster muss am Anfang des Plot-Dokuments aktiviert werden - - - - The legend must be activated on top of a plot document - Die Legende muss am Anfang des Plot-Dokuments aktiviert werden - - - - plot_labels - - - Set labels - Beschriftung festlegen - - - - Active axes - Aktive Achsen - - - - Title - Name - - - - X label - Beschriftung X - - - - Y label - Beschriftung Y - - - - Index of the active axes - Zähler der aktiven Achse - - - - Title (associated to active axes) - Name (bezogen auf die aktive Achse) - - - - Title font size - Schriftgröße für den Name - - - - X axis title - Name der X-Achse - - - - X axis title font size - Schriftgröße des X-Achsen-Namens - - - - Y axis title - Name der Y-Achse - - - - Y axis title font size - Schriftgröße des Y-Achsen-Namens - - - - plot_positions - - - Set positions and sizes - Einstellen der Position und Größe - - - - Position - Position - - - - Size - Größe - - - - X item position - Lage des Bestandteils X - - - - Y item position - Lage des Bestandteils Y - - - - Item size - Größe des Bestandteils - - - - List of modifiable items - Liste änderbarer Bestandteile - - - - plot_save - - - Save figure - Abbildung speichern - - - - Inches - Zoll - - - - Dots per Inch - Punkte pro Zoll - - - - Output image file path - Speicherpfad für Bilddatei - - - - Show a file selection dialog - Datei-Auswahl-Dialog anzeigen - - - - X image size - X-Bildgröße - - - - Y image size - Y-Bildgröße - - - - Dots per point, with size will define output image resolution - Punkte pro Punkt. In Verbindung mit der Bildabmessungen bestimmt das die Auflösung des Bildes - - - - plot_series - - - No label - Keine Beschriftung - - - - Line style - Stil-Eigenschaften der Linie - - - - Marker - Hevorhebung (Datenpunkte) - - - - Configure series - Folgen einrichten - - - - List of available series - Liste der verfügbaren Datenreihen - - - - Line title - Name der Linie - - - - Marker style - Stil-Eigenschaften der Hervorhebung - - - - Line width - Linienbreite - - - - Marker size - Größe der Hervorhebung - - - - Line and marker color - Farbe der Hervorhebung und der Linie - - - - Remove series - Serie entfernen - - - - If checked, series will not be considered for legend - Nicht in Legende anzeigen - - - - Removes this series - Diese Datenreihe entfernen - - - diff --git a/src/Mod/Plot/resources/translations/Plot_el.qm b/src/Mod/Plot/resources/translations/Plot_el.qm deleted file mode 100644 index cf79053a28..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_el.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_el.ts b/src/Mod/Plot/resources/translations/Plot_el.ts deleted file mode 100644 index 21c5ba72de..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_el.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Εργαλεία επεξεργασίας γραφήματος - - - - Plot - Γράφημα - - - - Plot_Axes - - - Configure axes - Διαμόρφωση αξόνων - - - - Configure the axes parameters - Διαμόρφωση παραμέτρων των αξόνων - - - - Plot_Grid - - - Show/Hide grid - Εμφάνιση/Απόκρυψη κανάβου - - - - Show/Hide grid on selected plot - Εμφάνιση/Απόκρυψη κανάβου στο επιλεγμένο γράφημα - - - - Plot_Labels - - - Set labels - Ορισμός ετικετών - - - - Set title and axes labels - Ορισμός τίτλου και ετικετών αξόνων - - - - Plot_Legend - - - Show/Hide legend - Εμφάνιση/Απόκρυψη υπομνήματος - - - - Show/Hide legend on selected plot - Εμφάνιση/Απόκρυψη υπομνήματος στο επιλεγμένο γράφημα - - - - Plot_Positions - - - Set positions and sizes - Ορισμός θέσεων και μεγεθών - - - - Set labels and legend positions and sizes - Ορισμός ετικετών καθώς και θέσεων και μεγεθών των υπομνημάτων - - - - Plot_SaveFig - - - Save plot - Αποθήκευση γραφήματος - - - - Save the plot as an image file - Αποθήκευση γραφήματος ως αρχείο εικόνας - - - - Plot_Series - - - Configure series - Διαμόρφωση σειρών - - - - Configure series drawing style and label - Διαμόρφωση του τύπου μορφοποίησης σχεδίασης και των ετικετών των σειρών - - - - plot_axes - - - Configure axes - Διαμόρφωση αξόνων - - - - Active axes - Ενεργοί άξονες - - - - Apply to all axes - Εφαρμογή σε όλους τους άξονες - - - - Dimensions - Διαστάσεις - - - - X axis position - Θέση του άξονα X - - - - Y axis position - Θέση του άξονα Y - - - - Scales - Κλίμακες - - - - X auto - Αυτόματη επιλογή X - - - - Y auto - Αυτόματη επιλογή Y - - - - Index of the active axes - Δείκτης των ενεργών αξόνων - - - - Add new axes to the plot - Προσθήκη νέων αξόνων στο γράφημα - - - - Remove selected axes - Αφαίρεση επιλεγμένων αξόνων - - - - Check it to apply transformations to all axes - Επιλέξτε το ώστε να εφαρμόσετε μετασχηματισμούς σε όλους τους άξονες - - - - Left bound of axes - Αριστερό όριο των αξόνων - - - - Right bound of axes - Δεξί όριο των αξόνων - - - - Bottom bound of axes - Κάτω όριο των αξόνων - - - - Top bound of axes - Άνω όριο των αξόνων - - - - Outward offset of X axis - Εξωτερική μετατόπιση του άξονα X - - - - Outward offset of Y axis - Εξωτερική μετατόπιση του άξονα Y - - - - X axis scale autoselection - Αυτόματη επιλογή κλίμακας του άξονα X - - - - Y axis scale autoselection - Αυτόματη επιλογή κλίμακας του άξονα Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - δεν βρέθηκε η βιβλιοθήκη matplotlib, οπότε δεν είναι δυνατή η φόρτωση της λειτουργικής μονάδας Γραφήματος - - - - matplotlib not found, Plot module will be disabled - δεν βρέθηκε η βιβλιοθήκη matplotlib, η λειτουργική μονάδα Γραφήματος θα απενεργοποιηθεί - - - - Plot document must be selected in order to save it - Πρέπει να επιλέξετε ένα έγγραφο γραφήματος προκειμένου να το αποθηκεύσετε - - - - Axes 0 can not be deleted - Ο άξονας 0 δεν μπορεί να διαγραφεί - - - - The grid must be activated on top of a plot document - Ο κάναβος πρέπει να ενεργοποιηθεί πάνω από κάποιο έγγραφο γραφήματος - - - - The legend must be activated on top of a plot document - Το υπόμνημα πρέπει να ενεργοποιηθεί πάνω από κάποιο έγγραφο γραφήματος - - - - plot_labels - - - Set labels - Ορισμός ετικετών - - - - Active axes - Ενεργοί άξονες - - - - Title - Τίτλος - - - - X label - Ετικέτα X - - - - Y label - Ετικέτα Υ - - - - Index of the active axes - Δείκτης των ενεργών αξόνων - - - - Title (associated to active axes) - Τίτλος (που σχετίζεται με τους ενεργούς άξονες) - - - - Title font size - Μέγεθος γραμματοσειράς τίτλου - - - - X axis title - Τίτλος του άξονα X - - - - X axis title font size - Μέγεθος γραμματοσειράς τίτλου του άξονα X - - - - Y axis title - Τίτλος του άξονα Υ - - - - Y axis title font size - Μέγεθος γραμματοσειράς τίτλου του άξονα Y - - - - plot_positions - - - Set positions and sizes - Ορισμός θέσεων και μεγεθών - - - - Position - Position - - - - Size - Μέγεθος - - - - X item position - Θέση του αντικειμένου στον άξονα X - - - - Y item position - Θέση του αντικειμένου στον άξονα Y - - - - Item size - Μέγεθος αντικειμένου - - - - List of modifiable items - Λίστα τροποποιήσιμων αντικειμένων - - - - plot_save - - - Save figure - Αποθήκευση σχήματος - - - - Inches - Ίντσες - - - - Dots per Inch - Κουκκίδες ανά Ίντσα - - - - Output image file path - Διαδρομή αρχείου εικόνας εξόδου - - - - Show a file selection dialog - Εμφάνιση ενός διαλόγου επιλογής αρχείου - - - - X image size - Μέγεθος εικόνας στον άξονα X - - - - Y image size - Μέγεθος εικόνας στον άξονα Y - - - - Dots per point, with size will define output image resolution - Κουκκίδες ανά σημείο, καθορίζουν την ανάλυση της εικόνας εξόδου σε συνδυασμό με το μέγεθος - - - - plot_series - - - No label - Καμία ετικέτα - - - - Line style - Τύπος μορφοποίησης γραμμής - - - - Marker - Δείκτης - - - - Configure series - Διαμόρφωση σειρών - - - - List of available series - Λίστα διαθέσιμων σειρών - - - - Line title - Τίτλος γραμμής - - - - Marker style - Τύπος μορφοποίησης δείκτη - - - - Line width - Πλάτος γραμμής - - - - Marker size - Μέγεθος δείκτη - - - - Line and marker color - Χρώμα γραμμής και δείκτη - - - - Remove series - Αφαίρεση σειράς - - - - If checked, series will not be considered for legend - Αν αυτό έχει επιλεχθεί, η σειρά δεν θα ληφθεί υπόψη στην κατασκευή του υπομνήματος - - - - Removes this series - Αφαίρεση αυτής της σειράς - - - diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.qm b/src/Mod/Plot/resources/translations/Plot_es-ES.qm deleted file mode 100644 index 5c3f610813..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_es-ES.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_es-ES.ts b/src/Mod/Plot/resources/translations/Plot_es-ES.ts deleted file mode 100644 index 1f75fc4fea..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_es-ES.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Herramientas de edición de gráficos - - - - Plot - Gráfica - - - - Plot_Axes - - - Configure axes - Configurar ejes - - - - Configure the axes parameters - Configurar los parámetros de los ejes - - - - Plot_Grid - - - Show/Hide grid - Mostrar/ocultar cuadrícula - - - - Show/Hide grid on selected plot - Mostrar/Ocultar cuadrícula de la gráfica seleccionada - - - - Plot_Labels - - - Set labels - Establecer títulos - - - - Set title and axes labels - Establecer títulos de los ejes - - - - Plot_Legend - - - Show/Hide legend - Mostrar/Ocultar la legenda - - - - Show/Hide legend on selected plot - Mostrar/Ocultar la leyenda en la gráfica seleccionada - - - - Plot_Positions - - - Set positions and sizes - Establecer tamaños y posiciones - - - - Set labels and legend positions and sizes - Establecer tamaños y posiciones de leyenda y títulos - - - - Plot_SaveFig - - - Save plot - Guardar la gráfica - - - - Save the plot as an image file - Guardar gráfico como archivo de imagen - - - - Plot_Series - - - Configure series - Configurar series de datos - - - - Configure series drawing style and label - Configurar etiquetas y estilo de las series de datos - - - - plot_axes - - - Configure axes - Configurar ejes - - - - Active axes - Juego de ejes activo - - - - Apply to all axes - Aplicar a todos los juegos de ejes - - - - Dimensions - Dimensiones - - - - X axis position - Posición del eje X - - - - Y axis position - Posición del eje Y - - - - Scales - Escalas - - - - X auto - X automática - - - - Y auto - Y automática - - - - Index of the active axes - Índice del juego de ejes activo - - - - Add new axes to the plot - Añadir nuevos ejes al gráfico - - - - Remove selected axes - Eliminar el juego de ejes activo - - - - Check it to apply transformations to all axes - Marcar para aplicar las modificaciones a todos los juegos de ejes - - - - Left bound of axes - Límite izquierdo de los ejes - - - - Right bound of axes - Límite derecho de los ejes - - - - Bottom bound of axes - Límite inferior de los ejes - - - - Top bound of axes - Límite superior de los ejes - - - - Outward offset of X axis - Desplazamiento al exterior del eje X - - - - Outward offset of Y axis - Desplazamiento al exterior del eje Y - - - - X axis scale autoselection - Escala del eje X automática - - - - Y axis scale autoselection - Escala del eje Y automática - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - Matplotlib que no se ha encontrado, por lo que no se puede cargar el módulo de graficado - - - - matplotlib not found, Plot module will be disabled - no se encuentra matplotlib, se deshabilitará el módulo de impresión - - - - Plot document must be selected in order to save it - Debe seleccionar una gráfica para poder guardarla - - - - Axes 0 can not be deleted - El juego de ejes 0 no puede ser eliminado - - - - The grid must be activated on top of a plot document - La cuadrícula debe estar activa por encima del gráfico - - - - The legend must be activated on top of a plot document - La leyenda debe estar activa por encima del gráfico - - - - plot_labels - - - Set labels - Establecer títulos - - - - Active axes - Juego de ejes activo - - - - Title - Título - - - - X label - Título del eje X - - - - Y label - Título del eje Y - - - - Index of the active axes - Índice del juego de ejes activo - - - - Title (associated to active axes) - Título (asociado al juego de ejes activo) - - - - Title font size - Tamaño de fuente del título - - - - X axis title - Título del eje X - - - - X axis title font size - Tamaño de fuente del título del eje X - - - - Y axis title - Título del eje Y - - - - Y axis title font size - Tamaño de fuente del título del eje Y - - - - plot_positions - - - Set positions and sizes - Establecer tamaños y posiciones - - - - Position - Posición - - - - Size - Tamaño - - - - X item position - Posición en X del objeto - - - - Y item position - Posición en Y del objeto - - - - Item size - tamaño del objeto - - - - List of modifiable items - Lista de elementos modificables - - - - plot_save - - - Save figure - Guardar figura - - - - Inches - Pulgadas - - - - Dots per Inch - Puntos por pulgada - - - - Output image file path - Ruta del archivo de imagen de salida - - - - Show a file selection dialog - Muestra un diálogo de selección de archivo - - - - X image size - Tamaño de imagen en X - - - - Y image size - Tamaño de imagen en Y - - - - Dots per point, with size will define output image resolution - Puntos por pulgada, junto con el tamaño define la resolución de la imagen de salida - - - - plot_series - - - No label - Sin título - - - - Line style - Estilo de línea - - - - Marker - Marcador - - - - Configure series - Configurar series de datos - - - - List of available series - Lista de series disponibles - - - - Line title - Título de línea - - - - Marker style - Estilo del marcador - - - - Line width - Ancho de la línea - - - - Marker size - Tamaño del marcador - - - - Line and marker color - Color de la línea y del marcador - - - - Remove series - Eliminar serie - - - - If checked, series will not be considered for legend - Si se encuentra marcado, la series no se reflejarán en la leyenda - - - - Removes this series - Elimina esta serie de datos - - - diff --git a/src/Mod/Plot/resources/translations/Plot_eu.qm b/src/Mod/Plot/resources/translations/Plot_eu.qm deleted file mode 100644 index 351e38bc17..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_eu.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_eu.ts b/src/Mod/Plot/resources/translations/Plot_eu.ts deleted file mode 100644 index 5989d008ac..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_eu.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Trazaketak editatzeko tresnak - - - - Plot - Trazaketa - - - - Plot_Axes - - - Configure axes - Konfiguratu ardatzak - - - - Configure the axes parameters - Konfiguratu ardatzen parametroak - - - - Plot_Grid - - - Show/Hide grid - Erakutsi/ezkutatu sareta - - - - Show/Hide grid on selected plot - Erakutsi/ezkutatu sareta hautatutako trazaketan - - - - Plot_Labels - - - Set labels - Ezarri etiketak - - - - Set title and axes labels - Ezarri izenburua eta ardatzen etiketak - - - - Plot_Legend - - - Show/Hide legend - Erakutsi/ezkutatu legenda - - - - Show/Hide legend on selected plot - Erakutsi/ezkutatu legenda hautatutako trazaketan - - - - Plot_Positions - - - Set positions and sizes - Ezarri posizioak eta tamainak - - - - Set labels and legend positions and sizes - Ezarri etiketen eta legendaren posizioak eta tamainak - - - - Plot_SaveFig - - - Save plot - Gorde trazaketa - - - - Save the plot as an image file - Gorde trazaketa irudi-fitxategi gisa - - - - Plot_Series - - - Configure series - Konfiguratu serieak - - - - Configure series drawing style and label - Serieen marrazte-estiloa eta etiketa konfiguratzen du - - - - plot_axes - - - Configure axes - Konfiguratu ardatzak - - - - Active axes - Ardatz aktiboak - - - - Apply to all axes - Aplikatu ardatz guztiei - - - - Dimensions - Kotak - - - - X axis position - X ardatzaren posizioa - - - - Y axis position - Y ardatzaren posizioa - - - - Scales - Eskalak - - - - X auto - X automatikoa - - - - Y auto - Y automatikoa - - - - Index of the active axes - Ardatz aktiboen indizea - - - - Add new axes to the plot - Gehitu ardatz berriak trazaketari - - - - Remove selected axes - Kendu hautatutako ardatzak - - - - Check it to apply transformations to all axes - Markatu transformazioak ardatz guztiei aplikatzeko - - - - Left bound of axes - Ardatzen ezkerreko muga - - - - Right bound of axes - Ardatzen eskuineko muga - - - - Bottom bound of axes - Ardatzen beheko muga - - - - Top bound of axes - Ardatzen goiko muga - - - - Outward offset of X axis - X ardatzaren kanporako desplazamendua - - - - Outward offset of Y axis - Y ardatzaren kanporako desplazamendua - - - - X axis scale autoselection - X ardatzaren eskalaren hautapen automatikoa - - - - Y axis scale autoselection - Y ardatzaren eskalaren hautapen automatikoa - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib ez da aurkitu, beraz trazaketarako modulua ezin izan da kargatu - - - - matplotlib not found, Plot module will be disabled - matplotlib ez da aurkitu, trazaketarako modulua desgaitu egingo da - - - - Plot document must be selected in order to save it - Trazatze-dokumentua hautatu behar da hura gorde ahal izateko - - - - Axes 0 can not be deleted - 0 ardatzak ezin dira ezabatu - - - - The grid must be activated on top of a plot document - Saretak trazatze-dokumentuaren gainean aktibatuta egon behar du - - - - The legend must be activated on top of a plot document - Legendak trazatze-dokumentu baten gainean aktibatuta egon behar du - - - - plot_labels - - - Set labels - Ezarri etiketak - - - - Active axes - Ardatz aktiboak - - - - Title - Izenburua - - - - X label - X etiketa - - - - Y label - Y etiketa - - - - Index of the active axes - Ardatz aktiboen indizea - - - - Title (associated to active axes) - Izenburua (ardatz aktiboei lotutakoa) - - - - Title font size - Izenburuaren letra-tamaina - - - - X axis title - X ardatzaren izenburua - - - - X axis title font size - X ardatzaren izenburuaren letra-tamaina - - - - Y axis title - Y ardatzaren izenburua - - - - Y axis title font size - Y ardatzaren izenburuaren letra-tamaina - - - - plot_positions - - - Set positions and sizes - Ezarri posizioak eta tamainak - - - - Position - Posizioa - - - - Size - Tamaina - - - - X item position - X elementuaren posizioa - - - - Y item position - Y elementuaren posizioa - - - - Item size - Elementuaren tamaina - - - - List of modifiable items - Elementu aldagarrien zerrenda - - - - plot_save - - - Save figure - Gorde irudia - - - - Inches - Hazbeteak - - - - Dots per Inch - Puntuak hazbeteko - - - - Output image file path - Irteera-irudiaren fitxategi-bidea - - - - Show a file selection dialog - Erakutsi fitxategia hautatzeko elkarrizketa-koadroa - - - - X image size - X irudiaren tamaina - - - - Y image size - Y irudiaren tamaina - - - - Dots per point, with size will define output image resolution - Puntuak puntuko, tamainarekin irteerako irudiaren bereizmena definituko du - - - - plot_series - - - No label - Etiketarik ez - - - - Line style - Lerro-estiloa - - - - Marker - Markatzailea - - - - Configure series - Konfiguratu serieak - - - - List of available series - Erabilgarri dauden serieen zerrenda - - - - Line title - Lerro-izenburua - - - - Marker style - Markatzaile-estiloa - - - - Line width - Lerro-zabalera - - - - Marker size - Markatzaile-tamaina - - - - Line and marker color - Lerro- eta markatzaile-kolorea - - - - Remove series - Kendu seriea - - - - If checked, series will not be considered for legend - Markatuta badago, seria ez da kontuan hartuko legendan - - - - Removes this series - Serie hau kentzen du - - - diff --git a/src/Mod/Plot/resources/translations/Plot_fi.qm b/src/Mod/Plot/resources/translations/Plot_fi.qm deleted file mode 100644 index ca141f7654..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_fi.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_fi.ts b/src/Mod/Plot/resources/translations/Plot_fi.ts deleted file mode 100644 index d593011c1b..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_fi.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Pistekuvioiden muokkaustyökalut - - - - Plot - Pistekuvio -plot - - - - Plot_Axes - - - Configure axes - Määritä akselit - - - - Configure the axes parameters - Määritä akselit-parametrit - - - - Plot_Grid - - - Show/Hide grid - Piilota/näytä ruudukko - - - - Show/Hide grid on selected plot - Piilota/näytä ruudukko valitulle käyrän tulostukselle - - - - Plot_Labels - - - Set labels - Aseta nimet - - - - Set title and axes labels - Aseta otsikon ja akseleiden nimet - - - - Plot_Legend - - - Show/Hide legend - Näytä/Piilota kuvateksti - - - - Show/Hide legend on selected plot - Näytä/Piilota kuvateksti valitulta käyrän tulostukselta - - - - Plot_Positions - - - Set positions and sizes - Määritä asemat ja koot - - - - Set labels and legend positions and sizes - Määrä nimien sekä kuvatekstien asemat ja koot - - - - Plot_SaveFig - - - Save plot - Tallenna käyrän tulostus - - - - Save the plot as an image file - Tallenna pistekuvio kuvatiedostona - - - - Plot_Series - - - Configure series - Määritä sarjan ominaisuudet - - - - Configure series drawing style and label - Määritä sarjan piirtotyyli ja sarjan nimi - - - - plot_axes - - - Configure axes - Määritä akselit - - - - Active axes - Aktivoi akseli - - - - Apply to all axes - Sovella kaikkiin akseleihin - - - - Dimensions - Mitat - - - - X axis position - X akselin sijointi - - - - Y axis position - Y akselin sijointi - - - - Scales - Asteikot - - - - X auto - X automaattinen - - - - Y auto - Y automaattinen - - - - Index of the active axes - Aktiivisten akselien indeksi - - - - Add new axes to the plot - Lisää uusi akseli käyrän tulostukseen - - - - Remove selected axes - Poista valitut akselit - - - - Check it to apply transformations to all axes - Tarkista pitääkö muunnoksia soveltaa kaikkiin akseleihin - - - - Left bound of axes - Akselin vasen raja - - - - Right bound of axes - Akselin oikea raja - - - - Bottom bound of axes - Akselin alaraja - - - - Top bound of axes - Akselin yläraja - - - - Outward offset of X axis - Ulospäin suuntautuva X akselin siirtymä - - - - Outward offset of Y axis - Ulospäin suuntautuva Y akselin siirtymä - - - - X axis scale autoselection - X akselin asteikon automaattisovitus - - - - Y axis scale autoselection - Y akselin asteikon automaattisovitus - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib Python pakettia ei löydy joten käyrien tulostusmoduulia ei voi ladata - - - - matplotlib not found, Plot module will be disabled - matplotlib Python pakettia ei löydy joten käyrien tulostusmoduuli poistetaan käytöstä - - - - Plot document must be selected in order to save it - Käyräntulostusasiakirja pitää valita jotta sen voi tallentaa - - - - Axes 0 can not be deleted - Akselia 0 ei voi poistaa - - - - The grid must be activated on top of a plot document - Ruudukko täytyy aktivoida pistekuvioasiakirjan päällä - - - - The legend must be activated on top of a plot document - Selitykset täytyy aktivoida pistekuvioasiakirjan päälle - - - - plot_labels - - - Set labels - Aseta nimet - - - - Active axes - Aktivoi akseli - - - - Title - Otsikko - - - - X label - X akselin nimi - - - - Y label - Y akselin nimi - - - - Index of the active axes - Aktiivisten akselien indeksi - - - - Title (associated to active axes) - Otsikko (aktiivisen akselin) - - - - Title font size - Otsikon fontin koko - - - - X axis title - X akselin otsikko - - - - X axis title font size - X akselin otsikon fontin koko - - - - Y axis title - Y akselin otsikko - - - - Y axis title font size - Y akselin otsikon fontin koko - - - - plot_positions - - - Set positions and sizes - Määritä asemat ja koot - - - - Position - Sijainti - - - - Size - Koko - - - - X item position - Kohteen X suuntainen sijainti - - - - Y item position - Kohteen Y suuntainen sijainti - - - - Item size - Kohteen koko - - - - List of modifiable items - Muokattavien kohteiden luettelo - - - - plot_save - - - Save figure - Tallenna kuva - - - - Inches - Tuumaa - - - - Dots per Inch - Pistettä tuumalla - - - - Output image file path - Tulosteena tuleen kuvan tiedostopolku - - - - Show a file selection dialog - Näytä tiedostovalintaikkuna - - - - X image size - X suuntainen kuvan koko - - - - Y image size - Y suuntainen kuvan koko - - - - Dots per point, with size will define output image resolution - Pistettä per kohta, leveys määrittää kuvan - - - - plot_series - - - No label - Ei selitettä - - - - Line style - Viivatyyli - - - - Marker - Merkki - - - - Configure series - Määritä sarjan ominaisuudet - - - - List of available series - Käytettävissä olevien sarjojen luettelo - - - - Line title - Viivan otsikko - - - - Marker style - Merkin tyyli - - - - Line width - Viivan leveys - - - - Marker size - Merkin koko - - - - Line and marker color - Viivan ja merkin väri - - - - Remove series - Poista sarja - - - - If checked, series will not be considered for legend - Poista sarjan selite - - - - Removes this series - Poistaa tämän sarjan - - - diff --git a/src/Mod/Plot/resources/translations/Plot_fil.qm b/src/Mod/Plot/resources/translations/Plot_fil.qm deleted file mode 100644 index 54cb62d9ea..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_fil.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_fil.ts b/src/Mod/Plot/resources/translations/Plot_fil.ts deleted file mode 100644 index 2b73d0e3e0..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_fil.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Edition tools ng Plot - - - - Plot - Plot - - - - Plot_Axes - - - Configure axes - I-configure ang mga axes - - - - Configure the axes parameters - I-configure ang mga parameter ng mga axes - - - - Plot_Grid - - - Show/Hide grid - Ipakita/Itago ang grid - - - - Show/Hide grid on selected plot - Ipakita/Itago ang grid sa napiling plot - - - - Plot_Labels - - - Set labels - Magtakda ng mga label - - - - Set title and axes labels - I-set ang mga label ng title at axes - - - - Plot_Legend - - - Show/Hide legend - Ipakita/Itago ang legend - - - - Show/Hide legend on selected plot - Ipakita/Itago ang legend sa napiling plot - - - - Plot_Positions - - - Set positions and sizes - I-set ang mga posisyon at mga laki - - - - Set labels and legend positions and sizes - I-set ang mga label at mga posisyon at mga sukat ng legend - - - - Plot_SaveFig - - - Save plot - I-save ang plot - - - - Save the plot as an image file - I-save ang plot bilang isang image file - - - - Plot_Series - - - Configure series - I-configure ang series - - - - Configure series drawing style and label - I-configure ang series drawing style at label - - - - plot_axes - - - Configure axes - I-configure ang mga axes - - - - Active axes - Aktibong axes - - - - Apply to all axes - I-apply sa lahat ng mga axes - - - - Dimensions - Mga dimensyon - - - - X axis position - Posisyon ng X axis - - - - Y axis position - Posisyon ng Y axis - - - - Scales - Mga Scale - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Index ng active axes - - - - Add new axes to the plot - Magdagdag ng bagong mga axes sa plot - - - - Remove selected axes - Alisin ang mga napiling axes - - - - Check it to apply transformations to all axes - I-check ito para i-aplay ang mga pagbabago sa lahat ng axes - - - - Left bound of axes - Kaliwang bound ng axes - - - - Right bound of axes - Kanang bound ng axes - - - - Bottom bound of axes - Ibabang bound ng axes - - - - Top bound of axes - Itaas na bound ng axes - - - - Outward offset of X axis - Outward offset ng X axis - - - - Outward offset of Y axis - Outward offset ng Y axis - - - - X axis scale autoselection - X axis scale autoselection - - - - Y axis scale autoselection - Y axis scale autoselection - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - hindi natagpuan ang matplotlib, kaya hindi ma load ang Plot module - - - - matplotlib not found, Plot module will be disabled - hindi natagpuan ang matplotlib, kaya ang Plot moduleay hindi pagaganahin - - - - Plot document must be selected in order to save it - Ang dokumento ng plot ay dapat na pinili ng nasa order para ma save ito - - - - Axes 0 can not be deleted - Axes 0 ay hindi pwedeng maalis - - - - The grid must be activated on top of a plot document - Ang grid ay dapat na activated sa taas ng isang plot document - - - - The legend must be activated on top of a plot document - Ang legend ay dapat na activated sa taas ng isang plot document - - - - plot_labels - - - Set labels - Magtakda ng mga label - - - - Active axes - Aktibong axes - - - - Title - Titulo - - - - X label - X label - - - - Y label - Y label - - - - Index of the active axes - Index ng active axes - - - - Title (associated to active axes) - Titulo (nauugnay sa mga active axes) - - - - Title font size - Laki ng font ng Titulo - - - - X axis title - Titulo ng X axis - - - - X axis title font size - Laki ng font ng titulo ng X axis - - - - Y axis title - Titulo ng Y axis - - - - Y axis title font size - Laki ng font ng titulo ng Y axis - - - - plot_positions - - - Set positions and sizes - I-set ang mga posisyon at mga laki - - - - Position - Position - - - - Size - Sukat - - - - X item position - Posisyon ng X item - - - - Y item position - Posisyon ng Y item - - - - Item size - Laki ng item - - - - List of modifiable items - Listahan ng mga item na maaaring baguhin - - - - plot_save - - - Save figure - I-save ang figure - - - - Inches - Pulgada - - - - Dots per Inch - Dots sa bawat inch - - - - Output image file path - File path ng Output image - - - - Show a file selection dialog - Ipakita ang file selection dialog - - - - X image size - Laki ng X image - - - - Y image size - Laki ng Y image - - - - Dots per point, with size will define output image resolution - Dots sa bawat point, kasama ang laki na mag define ng output image resolution - - - - plot_series - - - No label - Walang label - - - - Line style - Istilo ng Linya - - - - Marker - Marker - - - - Configure series - I-configure ang series - - - - List of available series - Listahan ng mga magagamit na series - - - - Line title - Titulo ng Linya - - - - Marker style - Istilo ng Marker - - - - Line width - Lapad ng linya - - - - Marker size - Laki ng marker - - - - Line and marker color - Kulay ng linya at marker - - - - Remove series - Alisin ang series - - - - If checked, series will not be considered for legend - Kung naka-check, ang series ay hindi makokonsidera para sa legend - - - - Removes this series - Nag-aalis ng series na ito - - - diff --git a/src/Mod/Plot/resources/translations/Plot_fr.qm b/src/Mod/Plot/resources/translations/Plot_fr.qm deleted file mode 100644 index b4c11b5016..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_fr.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_fr.ts b/src/Mod/Plot/resources/translations/Plot_fr.ts deleted file mode 100644 index 54300dee38..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_fr.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Outils d'édition de tracé - - - - Plot - Tracé - - - - Plot_Axes - - - Configure axes - Configurer les axes - - - - Configure the axes parameters - Configurer les paramètres des axes - - - - Plot_Grid - - - Show/Hide grid - Afficher/Masquer la grille - - - - Show/Hide grid on selected plot - Afficher/Masquer la grille sur le graphique sélectionné - - - - Plot_Labels - - - Set labels - Définir les étiquettes - - - - Set title and axes labels - Définir le titre et les étiquettes des axes - - - - Plot_Legend - - - Show/Hide legend - Afficher/Masquer la légende - - - - Show/Hide legend on selected plot - Afficher/Masquer la légende sur le graphique sélectionné - - - - Plot_Positions - - - Set positions and sizes - Définir les tailles et positions - - - - Set labels and legend positions and sizes - Définir les étiquettes, la position et la taille de la légende - - - - Plot_SaveFig - - - Save plot - Enregistrer le graphique - - - - Save the plot as an image file - Enregistrer le graphe comme image - - - - Plot_Series - - - Configure series - Configurer les séries - - - - Configure series drawing style and label - Configurer le style de dessin et l'étiquette - - - - plot_axes - - - Configure axes - Configurer les axes - - - - Active axes - Axes actifs - - - - Apply to all axes - Appliquer à tous les axes - - - - Dimensions - Dimensions - - - - X axis position - Position de l'axe X - - - - Y axis position - Position de l'axe Y - - - - Scales - Échelles - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Index des axes actifs - - - - Add new axes to the plot - Ajouter de nouveaux axes au graphique - - - - Remove selected axes - Supprimer les axes sélectionnés - - - - Check it to apply transformations to all axes - Cocher pour appliquer les transformations à tous les axes - - - - Left bound of axes - Limite gauche des axes - - - - Right bound of axes - Limite droite des axes - - - - Bottom bound of axes - Limite inférieure des axes - - - - Top bound of axes - Limite supérieure des axes - - - - Outward offset of X axis - Décalage vers l'extérieur de l'axe X - - - - Outward offset of Y axis - Décalage vers l'extérieur de l'axe Y - - - - X axis scale autoselection - Sélection automatique de l'échelle de l'axe X - - - - Y axis scale autoselection - Sélection automatique de l'échelle de l'axe Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib est introuvable, donc le module Plot ne peut pas être chargé - - - - matplotlib not found, Plot module will be disabled - matplotlib est introuvable, le module Plot sera désactivé - - - - Plot document must be selected in order to save it - Pour l'enregistrer, le document Plot doit être sélectionné - - - - Axes 0 can not be deleted - Les axes 0 ne peuvent pas être supprimés - - - - The grid must be activated on top of a plot document - La grille doit être activée par dessus un document graphe - - - - The legend must be activated on top of a plot document - La légende doit être activée par dessus un document graphe - - - - plot_labels - - - Set labels - Définir les étiquettes - - - - Active axes - Axes actifs - - - - Title - Titre - - - - X label - Étiquette en X - - - - Y label - Étiquette en Y - - - - Index of the active axes - Index des axes actifs - - - - Title (associated to active axes) - Titre (lié aux axes actifs) - - - - Title font size - Taille de police du titre - - - - X axis title - Titre de l'axe X - - - - X axis title font size - Taille de police pour le titre de l'axe X - - - - Y axis title - Titre de l'axe y - - - - Y axis title font size - Taille de police pour le titre de l'axe Y - - - - plot_positions - - - Set positions and sizes - Définir les tailles et positions - - - - Position - Position - - - - Size - Taille - - - - X item position - Position de l'élément en X - - - - Y item position - Position de l'élément en Y - - - - Item size - Taille de l'élément - - - - List of modifiable items - Liste des éléments modifiables - - - - plot_save - - - Save figure - Enregistrer la figure - - - - Inches - Pouces - - - - Dots per Inch - Points par pouce - - - - Output image file path - Chemin d'accès du fichier image de sortie - - - - Show a file selection dialog - Afficher une fenêtre de sélection de fichier - - - - X image size - Taille de l'image en X - - - - Y image size - Taille de l'image en Y - - - - Dots per point, with size will define output image resolution - Points par point, avec la taille vont définir la résolution d'image de sortie - - - - plot_series - - - No label - Pas d'étiquette - - - - Line style - Style de ligne - - - - Marker - Marqueur - - - - Configure series - Configurer les séries - - - - List of available series - Liste des séries disponibles - - - - Line title - Titre de la courbe - - - - Marker style - Style de marqueur - - - - Line width - Largeur de ligne - - - - Marker size - Taille de marqueur - - - - Line and marker color - Couleur de ligne et de marqueur - - - - Remove series - Supprimer la série - - - - If checked, series will not be considered for legend - Si cochée, la série sera pas prise en compte pour la légende - - - - Removes this series - Supprime cette série - - - diff --git a/src/Mod/Plot/resources/translations/Plot_gl.qm b/src/Mod/Plot/resources/translations/Plot_gl.qm deleted file mode 100644 index fa308fc0e8..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_gl.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_gl.ts b/src/Mod/Plot/resources/translations/Plot_gl.ts deleted file mode 100644 index e95999bde3..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_gl.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Ferramentas de edición de trazado - - - - Plot - Trazado - - - - Plot_Axes - - - Configure axes - Configurar eixos - - - - Configure the axes parameters - Configurar os parámetros dos eixos - - - - Plot_Grid - - - Show/Hide grid - Amosar/Agochar grella - - - - Show/Hide grid on selected plot - Amosar/Agochar grella no trazado escolmado - - - - Plot_Labels - - - Set labels - Estabelecer etiquetas - - - - Set title and axes labels - Estabelecer títulos e etiquetas dos eixos - - - - Plot_Legend - - - Show/Hide legend - Amosar/Agochar lenda - - - - Show/Hide legend on selected plot - Amosar/Agochar lenda no trazado escolmado - - - - Plot_Positions - - - Set positions and sizes - Estabelecer tamaños e posicións - - - - Set labels and legend positions and sizes - Estabelecer tamaños e posicións de etiquetas e lendas - - - - Plot_SaveFig - - - Save plot - Gardar trazado - - - - Save the plot as an image file - Gardar o trazado como ficheiro de imaxe - - - - Plot_Series - - - Configure series - Configurar series - - - - Configure series drawing style and label - Configurar o estilo de deseño en serie e etiqueta - - - - plot_axes - - - Configure axes - Configurar eixos - - - - Active axes - Eixes activos - - - - Apply to all axes - Aplicar a tódolos eixos - - - - Dimensions - Dimensións - - - - X axis position - Posición do eixo X - - - - Y axis position - Posición do eixo Y - - - - Scales - Escalas - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Índice de eixos activos - - - - Add new axes to the plot - Engadir novos eixos o trazado - - - - Remove selected axes - Rexeitar os eixos escolmados - - - - Check it to apply transformations to all axes - Marcalo para aplicar transformacións a tódolos eixos - - - - Left bound of axes - Límite esquerdo dos eixos - - - - Right bound of axes - Límite dereito dos eixos - - - - Bottom bound of axes - Límite inferior dos eixos - - - - Top bound of axes - Límite superior dos eixos - - - - Outward offset of X axis - Desprazamento cara fóra do eixo X - - - - Outward offset of Y axis - Desprazamento cara fóra do eixo Y - - - - X axis scale autoselection - Auto-escolma da escala do eixo X - - - - Y axis scale autoselection - Auto-escolma da escala do eixo Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - Non se atopou matplotlib, polo que non se pode cargar o módulo de trazado - - - - matplotlib not found, Plot module will be disabled - Non se atopou matplotlib. O módulo de trazado será inhabilitado - - - - Plot document must be selected in order to save it - Debe escolmar un documento de trazado a fin de gardalo - - - - Axes 0 can not be deleted - Os eixos 0 non se poden desbotar - - - - The grid must be activated on top of a plot document - A grella debe ser activada enriba dun documento trazado - - - - The legend must be activated on top of a plot document - A lenda debe ser activada enriba dun documento trazado - - - - plot_labels - - - Set labels - Estabelecer etiquetas - - - - Active axes - Eixes activos - - - - Title - Título - - - - X label - Etiqueta X - - - - Y label - Etiqueta Y - - - - Index of the active axes - Índice de eixos activos - - - - Title (associated to active axes) - Título (vencellado ó eixo activo) - - - - Title font size - Tamaño de fonte do título - - - - X axis title - Título do Eixe X - - - - X axis title font size - Tamaño da fonte do título do eixo X - - - - Y axis title - Título do Eixe Y - - - - Y axis title font size - Tamaño da fonte do título do eixo Y - - - - plot_positions - - - Set positions and sizes - Estabelecer tamaños e posicións - - - - Position - Position - - - - Size - Tamaño - - - - X item position - Posición do elemento en X - - - - Y item position - Posición do elemento en Y - - - - Item size - Tamaño do elemento - - - - List of modifiable items - Lista de elementos modificables - - - - plot_save - - - Save figure - Gardar figura - - - - Inches - Polgadas - - - - Dots per Inch - Puntos por polgada - - - - Output image file path - Camiño do ficheiro de saída da imaxe - - - - Show a file selection dialog - Amosa un diálogo de escolma de ficheiro - - - - X image size - Tamaño da imaxe en X - - - - Y image size - Tamaño da imaxe en Y - - - - Dots per point, with size will define output image resolution - Puntos por punto, xunto co tamaño vai definir a resolución da imaxe de saída - - - - plot_series - - - No label - Sen título - - - - Line style - Estilo de liña - - - - Marker - Marcador - - - - Configure series - Configurar series - - - - List of available series - Listaxe de series dispoñíbeis - - - - Line title - Título de liña - - - - Marker style - Estilo de marcador - - - - Line width - Largura da liña - - - - Marker size - Tamaño do marcador - - - - Line and marker color - Cor da liña e mais do marcador - - - - Remove series - Eliminar series - - - - If checked, series will not be considered for legend - Se está marcado, as series non se amosarán na lenda - - - - Removes this series - Borrar estas series - - - diff --git a/src/Mod/Plot/resources/translations/Plot_hr.qm b/src/Mod/Plot/resources/translations/Plot_hr.qm deleted file mode 100644 index 545f015984..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_hr.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_hr.ts b/src/Mod/Plot/resources/translations/Plot_hr.ts deleted file mode 100644 index 9566f1b3fa..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_hr.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Alati uređivanja ispisa - - - - Plot - Ispis - - - - Plot_Axes - - - Configure axes - Konfiguriranje osi - - - - Configure the axes parameters - Konfiguriranje parametara osi - - - - Plot_Grid - - - Show/Hide grid - Pokaži/Sakrij rešetku - - - - Show/Hide grid on selected plot - Pokaži/Sakrij rešetku na odabranom planu - - - - Plot_Labels - - - Set labels - Postavi oznake - - - - Set title and axes labels - Postavljanje oznake naslova i osi - - - - Plot_Legend - - - Show/Hide legend - Pokaži/Sakrij legendu - - - - Show/Hide legend on selected plot - Pokaži/Sakrij legendu na odabranom planu - - - - Plot_Positions - - - Set positions and sizes - Postavljanje položaja i veličina - - - - Set labels and legend positions and sizes - Postavljanje oznaka i legenda pozicija i veličina - - - - Plot_SaveFig - - - Save plot - Spremi ispis - - - - Save the plot as an image file - Spremi plan kao datoteku slike - - - - Plot_Series - - - Configure series - Konfiguriranje serije - - - - Configure series drawing style and label - Konfiguracija stila crtanja i oznaka serije - - - - plot_axes - - - Configure axes - Konfiguriranje osi - - - - Active axes - Aktivne osi - - - - Apply to all axes - Primjeni na sve osi - - - - Dimensions - Dimenzije - - - - X axis position - Pozicija X osi - - - - Y axis position - Pozicija Y osi - - - - Scales - Mjerilo - - - - X auto - X automatski - - - - Y auto - Y automatski - - - - Index of the active axes - Indeks aktivnih osi - - - - Add new axes to the plot - Dodavanje nove osi na plan - - - - Remove selected axes - Uklonite odabrane osi - - - - Check it to apply transformations to all axes - Provjeravanje transformacije za primjenu na sve osi - - - - Left bound of axes - Lijevo vezane za osi - - - - Right bound of axes - Desno vezane za osi - - - - Bottom bound of axes - Vezivanje osi na donju granicu - - - - Top bound of axes - Vezivanje osi na gornju granicu - - - - Outward offset of X axis - Pomak X osi prema van - - - - Outward offset of Y axis - Pomak Y osi prema van - - - - X axis scale autoselection - X os skaliranje auto odabirom - - - - Y axis scale autoselection - Y os skaliranje auto odabirom - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib nije pronađena, tako da Plot module nije moguće učitati - - - - matplotlib not found, Plot module will be disabled - matplotlib nije pronađena, Plot moduli će biti onemogućeni - - - - Plot document must be selected in order to save it - Plot dokument mora biti odabran kako bi ga spremili - - - - Axes 0 can not be deleted - Osi 0 se ne mogu izbrisati - - - - The grid must be activated on top of a plot document - Rešetka mora biti aktivirana na gornjoj granici ispisa dokumenta - - - - The legend must be activated on top of a plot document - Legenda mora biti aktivirana na gornjoj granici ispisa dokumenta - - - - plot_labels - - - Set labels - Postavi oznake - - - - Active axes - Aktivne osi - - - - Title - Naslov - - - - X label - X oznaka - - - - Y label - Y oznaka - - - - Index of the active axes - Indeks aktivnih osi - - - - Title (associated to active axes) - Naslov (povezan na aktivne osi) - - - - Title font size - Veličina fonta naslova - - - - X axis title - Naslov X osi - - - - X axis title font size - Veličina fonta naslova X osi - - - - Y axis title - Naslov Y osi - - - - Y axis title font size - Veličina fonta naslova X osi - - - - plot_positions - - - Set positions and sizes - Postavljanje položaja i veličina - - - - Position - Položaj - - - - Size - Veličina - - - - X item position - X stavka pozicija - - - - Y item position - Y stavka pozicija - - - - Item size - Veličinu stavke - - - - List of modifiable items - Popis izmjenljivih stavki - - - - plot_save - - - Save figure - Spremanje figure - - - - Inches - Inča - - - - Dots per Inch - Točaka po inču - - - - Output image file path - Put izlazne datoteke slike - - - - Show a file selection dialog - Pokaži dijaloški odabir datoteka - - - - X image size - X veličina slike - - - - Y image size - Y veličina slike - - - - Dots per point, with size will define output image resolution - Točkica po mjestu sa veličinom će odrediti razlučivost slike - - - - plot_series - - - No label - Bez oznake - - - - Line style - Stil crte - - - - Marker - Marker - - - - Configure series - Konfiguriranje serije - - - - List of available series - Popis dostupnih serija - - - - Line title - Naslov linije - - - - Marker style - Stil Oznake - - - - Line width - Širina linije - - - - Marker size - Veličina Oznake - - - - Line and marker color - Linija i boja oznake - - - - Remove series - Uklanjanje podatkovne serije - - - - If checked, series will not be considered for legend - Ako je označeno, podatkovna serija se neće prikazati u legendi - - - - Removes this series - Uklanja ove podatkovne serije - - - diff --git a/src/Mod/Plot/resources/translations/Plot_hu.qm b/src/Mod/Plot/resources/translations/Plot_hu.qm deleted file mode 100644 index faba2c8738..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_hu.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_hu.ts b/src/Mod/Plot/resources/translations/Plot_hu.ts deleted file mode 100644 index bd3a78ddf9..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_hu.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Tervrajz szerkesztő eszközök - - - - Plot - Tervrajz - - - - Plot_Axes - - - Configure axes - Tengelyek kialakítása - - - - Configure the axes parameters - Tengelyek paramétereinek beállítása - - - - Plot_Grid - - - Show/Hide grid - Rács mutatása / eltüntetése - - - - Show/Hide grid on selected plot - A kiválasztott tervrajzon a rács mutatása / eltüntetése - - - - Plot_Labels - - - Set labels - Címkék beállítása - - - - Set title and axes labels - Cím és tengely címkék beállítása - - - - Plot_Legend - - - Show/Hide legend - Felirat mutatása / eltüntetése - - - - Show/Hide legend on selected plot - A kiválasztott tervrajzon a felirat mutatása / eltüntetése - - - - Plot_Positions - - - Set positions and sizes - Pozíciók és méretek beállítása - - - - Set labels and legend positions and sizes - Címkék és feliratok pozícióinak és méreteinek beállítása - - - - Plot_SaveFig - - - Save plot - Tervrajz mentése - - - - Save the plot as an image file - Nyomtatás kép fájlba - - - - Plot_Series - - - Configure series - Sorozatok beállítása - - - - Configure series drawing style and label - Sorozatok rajz stílusa és címke beállítása - - - - plot_axes - - - Configure axes - Tengelyek kialakítása - - - - Active axes - Aktív tengelyek - - - - Apply to all axes - Minden tengelyre alkalmazza - - - - Dimensions - Méretek - - - - X axis position - X tengely helye - - - - Y axis position - Y tengely helye - - - - Scales - Lépték - - - - X auto - X automatikus - - - - Y auto - Y automatikus - - - - Index of the active axes - Aktív tengelyek jelölése - - - - Add new axes to the plot - Új tengely hozzáadása a tervrajzhoz - - - - Remove selected axes - A kiválasztott tengelyek eltávolítása - - - - Check it to apply transformations to all axes - Átalakítás alkalmazás ellenőrzése minden tengelyre - - - - Left bound of axes - Tengelyek bal oldali határa - - - - Right bound of axes - Tengelyek jobb oldali határa - - - - Bottom bound of axes - Tengelyek alsó határa - - - - Top bound of axes - Tengelyek felső határa - - - - Outward offset of X axis - Az X tengely külső egyenestől mért távolsága - - - - Outward offset of Y axis - Az Y tengely külső egyenestől mért távolsága - - - - X axis scale autoselection - X tengely léptékének automatikus kiválasztása - - - - Y axis scale autoselection - Y tengely lépték automatikus kiválasztása - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib nem található, így a tervrajz nyomtatási modult nem lehet betölteni - - - - matplotlib not found, Plot module will be disabled - matplotlib nem található, tervrajz modul letiltja - - - - Plot document must be selected in order to save it - Tervrajz nyomtatási dokumentumot kell kijelölni a mentés érdekében - - - - Axes 0 can not be deleted - A 0 tengelyek nem törölhetőek - - - - The grid must be activated on top of a plot document - A rácsot a nyomtatott dokumentum felett kell aktiválni - - - - The legend must be activated on top of a plot document - A feliratot a nyomtatott dokumentum felett kell aktiválni - - - - plot_labels - - - Set labels - Címkék beállítása - - - - Active axes - Aktív tengelyek - - - - Title - Cím - - - - X label - X felirata - - - - Y label - Y felirata - - - - Index of the active axes - Aktív tengelyek jelölése - - - - Title (associated to active axes) - Cím (kapcsolódó az aktív tengelyekhez) - - - - Title font size - Cím betűméret - - - - X axis title - X tengely címe - - - - X axis title font size - X tengely cím betűmérete - - - - Y axis title - Y tengely címe - - - - Y axis title font size - Y tengely cím betűmérete - - - - plot_positions - - - Set positions and sizes - Pozíciók és méretek beállítása - - - - Position - Pozíció - - - - Size - Méret - - - - X item position - X elem helyzete - - - - Y item position - Y elem helyzete - - - - Item size - Elem méret - - - - List of modifiable items - Módosítható elemek listája - - - - plot_save - - - Save figure - Alakzat mentése - - - - Inches - Hüvelyk - - - - Dots per Inch - Hüvelykenkénti pontok száma - - - - Output image file path - Kimeneti képfájl elérési útvonala - - - - Show a file selection dialog - Fájl kiválasztás párbeszédpanel mutatása - - - - X image size - X kép mérete - - - - Y image size - Y kép mérete - - - - Dots per point, with size will define output image resolution - Képpont / pont, mérettel fogja megadni a kimeneti kép felbontását - - - - plot_series - - - No label - Nincs felirat - - - - Line style - Vonalstílus - - - - Marker - Jelölő - - - - Configure series - Sorozatok beállítása - - - - List of available series - Elérhető szériák listája - - - - Line title - Vonal megnevezése - - - - Marker style - Jelölő stílusa - - - - Line width - Vonalvastagság - - - - Marker size - Jelölő mérete - - - - Line and marker color - Vonal és a jelölő színe - - - - Remove series - Sorozat eltávolítása - - - - If checked, series will not be considered for legend - Ha be van jelölve akkor a szériák nem feliratként értelmezettek - - - - Removes this series - Ennek a szériának az eltávolítása - - - diff --git a/src/Mod/Plot/resources/translations/Plot_id.qm b/src/Mod/Plot/resources/translations/Plot_id.qm deleted file mode 100644 index 96656d1022..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_id.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_id.ts b/src/Mod/Plot/resources/translations/Plot_id.ts deleted file mode 100644 index effefba49a..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_id.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Indonesia - - - - Plot - Plot - - - - Plot_Axes - - - Configure axes - Mengkonfigurasi sumbu - - - - Configure the axes parameters - Mengkonfigurasi parameter sumbu - - - - Plot_Grid - - - Show/Hide grid - Tampilkan/Sembunyikan kisi - - - - Show/Hide grid on selected plot - Tampilkan/Sembunyikan kisi pada perencanaan yang dipilih - - - - Plot_Labels - - - Set labels - Atur label - - - - Set title and axes labels - Tetapkan label judul dan sumbu - - - - Plot_Legend - - - Show/Hide legend - Tampilkan / Sembunyikan legenda - - - - Show/Hide legend on selected plot - Tampilkan / Sembunyikan legenda pada perncanaan yang dipilih - - - - Plot_Positions - - - Set positions and sizes - Mengatur posisi dan ukuran - - - - Set labels and legend positions and sizes - Menetapkan label dan legenda posisi dan ukuran - - - - Plot_SaveFig - - - Save plot - Simpan rencana - - - - Save the plot as an image file - Simpan plot sebagai file gambar - - - - Plot_Series - - - Configure series - Mengkonfigurasi seri - - - - Configure series drawing style and label - Mengkonfigurasi seri gambar gaya dan label - - - - plot_axes - - - Configure axes - Mengkonfigurasi sumbu - - - - Active axes - Sumbu aktif - - - - Apply to all axes - Oleskan ke semua sumbu - - - - Dimensions - Ukuran - - - - X axis position - Posisi sumbu X - - - - Y axis position - Posisi sumbu Y - - - - Scales - Timbangan - - - - X auto - X otomatis - - - - Y auto - Y otomatis - - - - Index of the active axes - Indeks sumbu aktif - - - - Add new axes to the plot - Tambahkan sumbu baru ke plot - - - - Remove selected axes - Hapus sumbu yang dipilih - - - - Check it to apply transformations to all axes - Periksa untuk menerapkan transformasi ke semua sumbu - - - - Left bound of axes - Batas kiri sumbu - - - - Right bound of axes - Batas kanan sumbu - - - - Bottom bound of axes - Terikat bawah sumbu - - - - Top bound of axes - Top bound dari sumbu - - - - Outward offset of X axis - Bagian luar dari sumbu X - - - - Outward offset of Y axis - Bagian luar sumbu Y - - - - X axis scale autoselection - Skala X seleksi otomatis - - - - Y axis scale autoselection - Skala Y seleksi otomatis - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib tidak ditemukan, jadi modul Plot tidak bisa dimuat - - - - matplotlib not found, Plot module will be disabled - matplotlib tidak ditemukan, modul Plot akan dinonaktifkan - - - - Plot document must be selected in order to save it - Dokumen plot harus dipilih untuk menyimpannya - - - - Axes 0 can not be deleted - Sumbu 0 tidak dapat dihapus - - - - The grid must be activated on top of a plot document - Kotak harus diaktifkan di atas dokumen plot - - - - The legend must be activated on top of a plot document - Legenda harus diaktifkan di atas dokumen plot - - - - plot_labels - - - Set labels - Atur label - - - - Active axes - Sumbu aktif - - - - Title - Judul - - - - X label - Label X - - - - Y label - Label Y - - - - Index of the active axes - Indeks sumbu aktif - - - - Title (associated to active axes) - Judul (terkait dengan sumbu aktif) - - - - Title font size - Judul ukuran font - - - - X axis title - Judul sumbu X - - - - X axis title font size - Ukuran font judul sumbu X - - - - Y axis title - Judul sumbu Y - - - - Y axis title font size - Ukuran font sumbu y - - - - plot_positions - - - Set positions and sizes - Mengatur posisi dan ukuran - - - - Position - Position - - - - Size - Ukuran - - - - X item position - Posisi item X - - - - Y item position - Posisi item Y - - - - Item size - Ukuran item - - - - List of modifiable items - Daftar item yang dimodifikasi - - - - plot_save - - - Save figure - Menyimpan angka - - - - Inches - Inci - - - - Dots per Inch - Titik per inci - - - - Output image file path - Jalur file gambar output - - - - Show a file selection dialog - Tampilkan dialog pilihan file - - - - X image size - Ukuran gambar X - - - - Y image size - Ukuran gambar Y - - - - Dots per point, with size will define output image resolution - Titik per titik, dengan ukuran akan menentukan resolusi gambar keluaran - - - - plot_series - - - No label - Tidak ada label - - - - Line style - Gaya baris - - - - Marker - Penanda - - - - Configure series - Mengkonfigurasi seri - - - - List of available series - Daftar seri yang tersedia - - - - Line title - Judul baris - - - - Marker style - Gaya penanda - - - - Line width - Lebar garis - - - - Marker size - Ukuran penanda - - - - Line and marker color - Warna garis dan penanda - - - - Remove series - Hapus seri - - - - If checked, series will not be considered for legend - Jika diperiksa, seri tidak akan dipertimbangkan untuk legenda - - - - Removes this series - Menghapus seri ini - - - diff --git a/src/Mod/Plot/resources/translations/Plot_it.qm b/src/Mod/Plot/resources/translations/Plot_it.qm deleted file mode 100644 index 514b4a2348..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_it.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_it.ts b/src/Mod/Plot/resources/translations/Plot_it.ts deleted file mode 100644 index 4f0ccbf496..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_it.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Strumenti di modifica Plot - - - - Plot - Grafico - - - - Plot_Axes - - - Configure axes - Configura assi - - - - Configure the axes parameters - Configura i parametri degli assi - - - - Plot_Grid - - - Show/Hide grid - Mostra/Nascondi griglia - - - - Show/Hide grid on selected plot - Mostra/Nasconde la griglia sul grafico selezionato - - - - Plot_Labels - - - Set labels - Imposta etichette - - - - Set title and axes labels - Imposta il titolo e le etichette degli assi - - - - Plot_Legend - - - Show/Hide legend - Mostra/Nascondi legenda - - - - Show/Hide legend on selected plot - Mostra/Nasconde la legenda sul grafico selezionato - - - - Plot_Positions - - - Set positions and sizes - Imposta posizioni e dimensioni - - - - Set labels and legend positions and sizes - Imposta la posizione e la dimensione delle etichette e della legenda - - - - Plot_SaveFig - - - Save plot - Salva grafico - - - - Save the plot as an image file - Salva il grafico come file immagine - - - - Plot_Series - - - Configure series - Configura serie - - - - Configure series drawing style and label - Configura lo stile e le etichette della serie - - - - plot_axes - - - Configure axes - Configura assi - - - - Active axes - Assi attivi - - - - Apply to all axes - Applica a tutti gli assi - - - - Dimensions - Dimensioni - - - - X axis position - Posizione asse x - - - - Y axis position - Posizione asse y - - - - Scales - Scale - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Indice degli assi attivi - - - - Add new axes to the plot - Aggiungi nuovi assi al grafico - - - - Remove selected axes - Rimuovi assi selezionati - - - - Check it to apply transformations to all axes - Spuntare per applicare le trasformazioni a tutti gli assi - - - - Left bound of axes - Limite sinistro degli assi - - - - Right bound of axes - Limite destro degli assi - - - - Bottom bound of axes - Limite inferiore degli assi - - - - Top bound of axes - Limite superiore degli assi - - - - Outward offset of X axis - Offset verso l'esterno dell'asse X - - - - Outward offset of Y axis - Offset verso l'esterno dell'asse Y - - - - X axis scale autoselection - Selezione automatica della scala dell'asse X - - - - Y axis scale autoselection - Selezione automatica della scala dell'asse Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib non trovato, il modulo Plot non può essere caricato - - - - matplotlib not found, Plot module will be disabled - matplotlib non trovato, il modulo Plot sarà disabilitato - - - - Plot document must be selected in order to save it - Si deve selezionare un documento Plot per poterlo salvare - - - - Axes 0 can not be deleted - Gli assi 0 non possono essere eliminati - - - - The grid must be activated on top of a plot document - La griglia deve essere attivata su un documento grafico - - - - The legend must be activated on top of a plot document - La legenda deve essere attivata su un documento grafico - - - - plot_labels - - - Set labels - Imposta etichette - - - - Active axes - Assi attivi - - - - Title - Titolo - - - - X label - Etichetta X - - - - Y label - Etichetta Y - - - - Index of the active axes - Indice degli assi attivi - - - - Title (associated to active axes) - Titolo (associato ad assi attivi) - - - - Title font size - Dimensione del carattere del titolo - - - - X axis title - Titolo asse X - - - - X axis title font size - Dimensione del carattere del titolo dell'asse X - - - - Y axis title - Titolo asse Y - - - - Y axis title font size - Dimensione del carattere del titolo dell'asse Y - - - - plot_positions - - - Set positions and sizes - Imposta posizioni e dimensioni - - - - Position - Posizione - - - - Size - Dimensione - - - - X item position - Posizione elemento X - - - - Y item position - Posizione elemento Y - - - - Item size - Dimensione elemento - - - - List of modifiable items - Lista degli elementi modificabili - - - - plot_save - - - Save figure - Salva figura - - - - Inches - Pollici - - - - Dots per Inch - Punti per pollice - - - - Output image file path - Percorso del file immagine - - - - Show a file selection dialog - Visualizza una finestra di dialogo di selezione file - - - - X image size - Dimensione X dell'immagine - - - - Y image size - Dimensione Y dell'immagine - - - - Dots per point, with size will define output image resolution - Dot per punto, con la dimensione definisce la risoluzione dell'immagine - - - - plot_series - - - No label - Senza etichetta - - - - Line style - Stile linea - - - - Marker - Marcatore - - - - Configure series - Configura serie - - - - List of available series - Lista delle serie disponibili - - - - Line title - Titolo linea - - - - Marker style - Stile del marcatore - - - - Line width - Spessore linea - - - - Marker size - Dimensioni del marcatore - - - - Line and marker color - Colore linea del marcatore - - - - Remove series - Rimuovi serie - - - - If checked, series will not be considered for legend - Se selezionata, la serie non viene considerata per la legenda - - - - Removes this series - Rimuove queste serie - - - diff --git a/src/Mod/Plot/resources/translations/Plot_ja.qm b/src/Mod/Plot/resources/translations/Plot_ja.qm deleted file mode 100644 index 56ba012a75..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_ja.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_ja.ts b/src/Mod/Plot/resources/translations/Plot_ja.ts deleted file mode 100644 index 03dc7cee8c..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_ja.ts +++ /dev/null @@ -1,462 +0,0 @@ - - - - - Plot - - - Plot edition tools - プロットエディションツール - - - - Plot - プロット - - - - Plot_Axes - - - Configure axes - 軸の設定 - - - - Configure the axes parameters - 軸パラメーターの -詳細設定 - - - - Plot_Grid - - - Show/Hide grid - グリッドの表示/非表示 - - - - Show/Hide grid on selected plot - 選択されているプロット上のグリッドを表示/非表示 - - - - Plot_Labels - - - Set labels - ラベル設定 - - - - Set title and axes labels - タイトルと軸のラベルを設定 - - - - Plot_Legend - - - Show/Hide legend - キャプションを表示/非表示 - - - - Show/Hide legend on selected plot - 選択されているプロットのキャプションを表示/非表示 - - - - Plot_Positions - - - Set positions and sizes - 位置とサイズを設定 - - - - Set labels and legend positions and sizes - ラベルとキャプションの位置とサイズを設定 - - - - Plot_SaveFig - - - Save plot - プロットを保存 - - - - Save the plot as an image file - プロットを画像ファイルに保存する - - - - Plot_Series - - - Configure series - 系列の設定 - - - - Configure series drawing style and label - 系列の描画スタイルとラベルを設定 - - - - plot_axes - - - Configure axes - 軸の設定 - - - - Active axes - アクティブな軸 - - - - Apply to all axes - すべての軸に適用 - - - - Dimensions - 寸法 - - - - X axis position - X軸の位置 - - - - Y axis position - Y軸の位置 - - - - Scales - スケール - - - - X auto - X自動 - - - - Y auto - Y自動 - - - - Index of the active axes - アクティブな軸のインデックス - - - - Add new axes to the plot - 新しい軸をプロットを追加します。 - - - - Remove selected axes - 選択した軸を削除します。 - - - - Check it to apply transformations to all axes - すべての軸に変換を適用することを確認します。 - - - - Left bound of axes - 軸の左側境界 - - - - Right bound of axes - 軸の右側境界 - - - - Bottom bound of axes - 軸の下側境界 - - - - Top bound of axes - 軸の上側境界 - - - - Outward offset of X axis - X軸の外向きオフセット - - - - Outward offset of Y axis - Y軸の外向きオフセット - - - - X axis scale autoselection - X軸スケール自動選択 - - - - Y axis scale autoselection - Y軸スケール自動選択 - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlibが見つからないためプロットモジュールをロードできません - - - - matplotlib not found, Plot module will be disabled - matplotlibが見つからないためプロットモジュールは無効化されます - - - - Plot document must be selected in order to save it - 保存するためにはプロットモジュールが選択されている必要があります - - - - Axes 0 can not be deleted - Axes 0 を削除できません - - - - The grid must be activated on top of a plot document - プロットドキュメント上でグリッドをアクティブにする必要があります - - - - The legend must be activated on top of a plot document - プロットドキュメント上で凡例をアクティブにする必要があります - - - - plot_labels - - - Set labels - ラベル設定 - - - - Active axes - アクティブな軸 - - - - Title - タイトル - - - - X label - Xラベル - - - - Y label - Yラベル - - - - Index of the active axes - アクティブな軸のインデックス - - - - Title (associated to active axes) - タイトル(アクティブな軸に関連付け) - - - - Title font size - タイトルのフォントサイズ - - - - X axis title - X軸のタイトル - - - - X axis title font size - X軸のタイトルのフォントサイズ - - - - Y axis title - Y軸のタイトル - - - - Y axis title font size - Y軸のタイトルのフォントサイズ - - - - plot_positions - - - Set positions and sizes - 位置とサイズを設定 - - - - Position - Position - - - - Size - サイズ - - - - X item position - アイテムX座標 - - - - Y item position - アイテムY座標 - - - - Item size - アイテムサイズ - - - - List of modifiable items - 変更可能なアイテムのリスト - - - - plot_save - - - Save figure - 図表を保存 - - - - Inches - インチ - - - - Dots per Inch - 1インチあたりのドット数 - - - - Output image file path - 画像ファイルパスを出力 - - - - Show a file selection dialog - ファイル選択ダイアログを表示 - - - - X image size - 画像のX方向サイズ - - - - Y image size - 画像のY方向サイズ - - - - Dots per point, with size will define output image resolution - ポイントあたりのドット数。サイズとこの値によって出力画像の解像度が定義されます - - - - plot_series - - - No label - ラベルがありません - - - - Line style - ラインのスタイル - - - - Marker - マーカー - - - - Configure series - 系列の設定 - - - - List of available series - 利用可能な系列のリスト - - - - Line title - ラインタイトル - - - - Marker style - マーカーのスタイル - - - - Line width - ライン幅 - - - - Marker size - マーカーサイズ - - - - Line and marker color - ラインとマーカーの色 - - - - Remove series - 系列を削除 - - - - If checked, series will not be considered for legend - チェックした場合、系列はキャプションを考慮しません - - - - Removes this series - この系列を削除 - - - diff --git a/src/Mod/Plot/resources/translations/Plot_kab.qm b/src/Mod/Plot/resources/translations/Plot_kab.qm deleted file mode 100644 index f0516b3566..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_kab.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_kab.ts b/src/Mod/Plot/resources/translations/Plot_kab.ts deleted file mode 100644 index 4d248ad64d..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_kab.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Outils d'édition de tracé - - - - Plot - Tracé - - - - Plot_Axes - - - Configure axes - Configurer les axes - - - - Configure the axes parameters - Configurer les paramètres des axes - - - - Plot_Grid - - - Show/Hide grid - Afficher/Masquer la grille - - - - Show/Hide grid on selected plot - Afficher/Masquer la grille sur le graphique sélectionné - - - - Plot_Labels - - - Set labels - Définir les étiquettes - - - - Set title and axes labels - Définir le titre et les étiquettes des axes - - - - Plot_Legend - - - Show/Hide legend - Afficher/Masquer la légende - - - - Show/Hide legend on selected plot - Afficher/Masquer la légende sur le graphique sélectionné - - - - Plot_Positions - - - Set positions and sizes - Définir les tailles et positions - - - - Set labels and legend positions and sizes - Définir les étiquettes, la position et la taille de la légende - - - - Plot_SaveFig - - - Save plot - Enregistrer le graphique - - - - Save the plot as an image file - Enregistrer le graphe comme image - - - - Plot_Series - - - Configure series - Configurer les séries - - - - Configure series drawing style and label - Configurer le style de dessin et l'étiquette - - - - plot_axes - - - Configure axes - Configurer les axes - - - - Active axes - Axes actifs - - - - Apply to all axes - Appliquer à tous les axes - - - - Dimensions - Dimensions - - - - X axis position - Position de l'axe X - - - - Y axis position - Position de l'axe Y - - - - Scales - Échelles - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Index des axes actifs - - - - Add new axes to the plot - Ajouter de nouveaux axes au graphique - - - - Remove selected axes - Supprimer les axes sélectionnés - - - - Check it to apply transformations to all axes - Cocher pour appliquer les transformations à tous les axes - - - - Left bound of axes - Limite gauche des axes - - - - Right bound of axes - Limite droite des axes - - - - Bottom bound of axes - Limite inférieure des axes - - - - Top bound of axes - Limite supérieure des axes - - - - Outward offset of X axis - Décalage vers l'extérieur de l'axe X - - - - Outward offset of Y axis - Décalage vers l'extérieur de l'axe Y - - - - X axis scale autoselection - Sélection automatique de l'échelle de l'axe X - - - - Y axis scale autoselection - Sélection automatique de l'échelle de l'axe Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib est introuvable, donc le module Plot ne peut pas être chargé - - - - matplotlib not found, Plot module will be disabled - matplotlib est introuvable, le module Plot sera désactivé - - - - Plot document must be selected in order to save it - Pour l'enregistrer, le document Plot doit être sélectionné - - - - Axes 0 can not be deleted - Les axes 0 ne peuvent pas être supprimés - - - - The grid must be activated on top of a plot document - La grille doit être activée par dessus un document graphe - - - - The legend must be activated on top of a plot document - La légende doit être activée par dessus un document graphe - - - - plot_labels - - - Set labels - Définir les étiquettes - - - - Active axes - Axes actifs - - - - Title - Titre - - - - X label - Étiquette en X - - - - Y label - Étiquette en Y - - - - Index of the active axes - Index des axes actifs - - - - Title (associated to active axes) - Titre (lié aux axes actifs) - - - - Title font size - Taille de police du titre - - - - X axis title - Titre de l'axe X - - - - X axis title font size - Taille de police pour le titre de l'axe X - - - - Y axis title - Titre de l'axe y - - - - Y axis title font size - Taille de police pour le titre de l'axe Y - - - - plot_positions - - - Set positions and sizes - Définir les tailles et positions - - - - Position - Position - - - - Size - Taille - - - - X item position - Position de l'élément en X - - - - Y item position - Position de l'élément en Y - - - - Item size - Taille de l'élément - - - - List of modifiable items - List of modifiable items - - - - plot_save - - - Save figure - Enregistrer la figure - - - - Inches - Pouces - - - - Dots per Inch - Points par pouce - - - - Output image file path - Chemin d'accès du fichier image de sortie - - - - Show a file selection dialog - Afficher une fenêtre de sélection de fichier - - - - X image size - Taille de l'image en X - - - - Y image size - Taille de l'image en Y - - - - Dots per point, with size will define output image resolution - Points par point, avec la taille vont définir la résolution d'image de sortie - - - - plot_series - - - No label - Pas d'étiquette - - - - Line style - Style de ligne - - - - Marker - Marqueur - - - - Configure series - Configurer les séries - - - - List of available series - Liste des séries disponibles - - - - Line title - Titre de la courbe - - - - Marker style - Style de marqueur - - - - Line width - Largeur de ligne - - - - Marker size - Taille de marqueur - - - - Line and marker color - Couleur de ligne et de marqueur - - - - Remove series - Remove series - - - - If checked, series will not be considered for legend - If checked, series will not be considered for legend - - - - Removes this series - Removes this series - - - diff --git a/src/Mod/Plot/resources/translations/Plot_ko.qm b/src/Mod/Plot/resources/translations/Plot_ko.qm deleted file mode 100644 index 09d7de2b67..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_ko.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_ko.ts b/src/Mod/Plot/resources/translations/Plot_ko.ts deleted file mode 100644 index cda9d09046..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_ko.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - 그래프 편집 도구 - - - - Plot - 그래프 - - - - Plot_Axes - - - Configure axes - 축 설정 - - - - Configure the axes parameters - 축 변수 설정 - - - - Plot_Grid - - - Show/Hide grid - 격자 표시/숨기기 - - - - Show/Hide grid on selected plot - 선택한 그래프에 격자 표시/숨기기 - - - - Plot_Labels - - - Set labels - 라벨 설정 - - - - Set title and axes labels - 제목 및 축 라벨 설정 - - - - Plot_Legend - - - Show/Hide legend - 범례 보기/숨기기 - - - - Show/Hide legend on selected plot - 선택한 그래프에 범례 표시/숨기기 - - - - Plot_Positions - - - Set positions and sizes - 위치 및 크기 설정 - - - - Set labels and legend positions and sizes - 라벨 및 범례의 위치 및 크기 설정 - - - - Plot_SaveFig - - - Save plot - 그래프 저장하기 - - - - Save the plot as an image file - 그래프를 이미지 파일로 저장하기 - - - - Plot_Series - - - Configure series - Configure series - - - - Configure series drawing style and label - Configure series drawing style and label - - - - plot_axes - - - Configure axes - 축 설정 - - - - Active axes - Active axes - - - - Apply to all axes - 모든 축에 적용하기 - - - - Dimensions - Dimensions - - - - X axis position - X 축 위치 - - - - Y axis position - Y 축 위치 - - - - Scales - Scales - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Index of the active axes - - - - Add new axes to the plot - 그래프에 새로운 축 추가하기 - - - - Remove selected axes - 선택한 축 삭제하기 - - - - Check it to apply transformations to all axes - Check it to apply transformations to all axes - - - - Left bound of axes - Left bound of axes - - - - Right bound of axes - Right bound of axes - - - - Bottom bound of axes - Bottom bound of axes - - - - Top bound of axes - Top bound of axes - - - - Outward offset of X axis - Outward offset of X axis - - - - Outward offset of Y axis - Outward offset of Y axis - - - - X axis scale autoselection - X axis scale autoselection - - - - Y axis scale autoselection - Y axis scale autoselection - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib not found, so Plot module can not be loaded - - - - matplotlib not found, Plot module will be disabled - matplotlib not found, Plot module will be disabled - - - - Plot document must be selected in order to save it - Plot document must be selected in order to save it - - - - Axes 0 can not be deleted - 0번 축을 삭제할 수 없습니다. - - - - The grid must be activated on top of a plot document - The grid must be activated on top of a plot document - - - - The legend must be activated on top of a plot document - The legend must be activated on top of a plot document - - - - plot_labels - - - Set labels - 라벨 설정 - - - - Active axes - Active axes - - - - Title - 제목 - - - - X label - X 라벨 - - - - Y label - Y 라벨 - - - - Index of the active axes - Index of the active axes - - - - Title (associated to active axes) - Title (associated to active axes) - - - - Title font size - 제목 글꼴 크기 - - - - X axis title - X 축 제목 - - - - X axis title font size - X 축 제목 글꼴 크기 - - - - Y axis title - Y 축 제목 - - - - Y axis title font size - Y 축 제목 글꼴 크기 - - - - plot_positions - - - Set positions and sizes - 위치 및 크기 설정 - - - - Position - Position - - - - Size - 크기 - - - - X item position - X 항목 위치 - - - - Y item position - Y 항목 위치 - - - - Item size - 항목 크기 - - - - List of modifiable items - List of modifiable items - - - - plot_save - - - Save figure - 모양 저장하기 - - - - Inches - 인치 - - - - Dots per Inch - 인치당 도트 수 - - - - Output image file path - 출력 이미지 파일 경로 - - - - Show a file selection dialog - 파일 선택 대화 상자 표시 - - - - X image size - X 이미지 크기 - - - - Y image size - Y 이미지 크기 - - - - Dots per point, with size will define output image resolution - 포인트당 도트 수와 크기로 출력 이미지의 해상도를 정합니다. - - - - plot_series - - - No label - 라벨이 없습니다 - - - - Line style - 선 스타일 - - - - Marker - 표식 - - - - Configure series - Configure series - - - - List of available series - List of available series - - - - Line title - 선 제목 - - - - Marker style - 표식 스타일 - - - - Line width - 선 두께 - - - - Marker size - 표식 크기 - - - - Line and marker color - 선 및 표식 색 - - - - Remove series - Remove series - - - - If checked, series will not be considered for legend - If checked, series will not be considered for legend - - - - Removes this series - Removes this series - - - diff --git a/src/Mod/Plot/resources/translations/Plot_lt.qm b/src/Mod/Plot/resources/translations/Plot_lt.qm deleted file mode 100644 index 0e2b1994fa..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_lt.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_lt.ts b/src/Mod/Plot/resources/translations/Plot_lt.ts deleted file mode 100644 index 01f88f93cb..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_lt.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Diagramų braižymo modulio keitimo įrankiai - - - - Plot - Diagramų braižymas - - - - Plot_Axes - - - Configure axes - Ašių nustatymai - - - - Configure the axes parameters - Keisti ašių parametrus - - - - Plot_Grid - - - Show/Hide grid - Rodyti/slėpti tinklelį - - - - Show/Hide grid on selected plot - Rodyti/slėpti tinklelį pasirinktame brėžinyje - - - - Plot_Labels - - - Set labels - Nustatyti pavadinimus - - - - Set title and axes labels - Nustatyti diagramos pavadinimą ir ašių pavadinimą - - - - Plot_Legend - - - Show/Hide legend - Rodyti/slėpti žymėjimus - - - - Show/Hide legend on selected plot - Rodyti/slėpti žymėjimus pasirinktame brėžinyje - - - - Plot_Positions - - - Set positions and sizes - Nustatyti padėtis ir dydžius - - - - Set labels and legend positions and sizes - Nustatyti pavadinimų ir ženklinimo padėtis bei dydžius - - - - Plot_SaveFig - - - Save plot - Saugoti diagramą - - - - Save the plot as an image file - Saugoti diagramą kaip paveikslėlį - - - - Plot_Series - - - Configure series - Keisti duomenų sekas - - - - Configure series drawing style and label - Keisti duomenų sekos stilių ir pavadinimą - - - - plot_axes - - - Configure axes - Ašių nustatymai - - - - Active axes - Darbinės ašys - - - - Apply to all axes - Taikyti visoms ašims - - - - Dimensions - Matmenys - - - - X axis position - X ašies padėtis - - - - Y axis position - Y ašies padėtis - - - - Scales - Masteliai - - - - X auto - Savaiminis X keitimas - - - - Y auto - Savaiminis Y keitimas - - - - Index of the active axes - Darbinių ašių rikiuotė - - - - Add new axes to the plot - Įtraukti naujų ašių į brėžinį - - - - Remove selected axes - Pašalinti pasirinktas ašis - - - - Check it to apply transformations to all axes - Patikrinkite tai, kad transformacijos būtų pritaikytos visoms ašims - - - - Left bound of axes - Kairysis ašių kraštas - - - - Right bound of axes - Dešinysis ašių kraštas - - - - Bottom bound of axes - Apatinis ašių kraštas - - - - Top bound of axes - Viršutinis ašių kraštas - - - - Outward offset of X axis - X ašies išorinis poslinkis - - - - Outward offset of Y axis - Y ašies išorinis poslinkis - - - - X axis scale autoselection - Savaiminis mastelio parinkimas X ašyje - - - - Y axis scale autoselection - Savaiminis mastelio parinkimas Y ašyje - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib nerastas, tad diagramų modulis negali būti įkeltas - - - - matplotlib not found, Plot module will be disabled - matplotlib nerastas, tad diagramų modulis šjungtas - - - - Plot document must be selected in order to save it - Turi būti pasirinktas diagramos dokumentas, kad jį būtų galima išsaugoti - - - - Axes 0 can not be deleted - Ašis 0 negali būti panaikinta - - - - The grid must be activated on top of a plot document - Tinklelis turi būti įjungtas virš diagramos dokumento - - - - The legend must be activated on top of a plot document - Ženklinimas turi būti įjungtas virš diagramos dokumento - - - - plot_labels - - - Set labels - Nustatyti pavadinimus - - - - Active axes - Darbinės ašys - - - - Title - Pavadinimas - - - - X label - X pavadinimas - - - - Y label - Y pavadinimas - - - - Index of the active axes - Darbinių ašių rikiuotė - - - - Title (associated to active axes) - Pavadinimas (susietas su darbinėmis ašimis) - - - - Title font size - Pavadinimo šrifto dydis - - - - X axis title - X ašies pavadinimas - - - - X axis title font size - X ašies pavadinimo šrifto dydis - - - - Y axis title - Y ašies pavadinimas - - - - Y axis title font size - Y ašies pavadinimo šrifto dydis - - - - plot_positions - - - Set positions and sizes - Nustatyti padėtis ir dydžius - - - - Position - Position - - - - Size - Dydis - - - - X item position - nario X padėtis - - - - Y item position - nario Y padėtis - - - - Item size - Nario dydis - - - - List of modifiable items - Keičiamų narių sąrašas - - - - plot_save - - - Save figure - Išsaugoti paveikslėlį - - - - Inches - Coliai - - - - Dots per Inch - Taškų colyje - - - - Output image file path - Vaizdo failo išvesties vieta - - - - Show a file selection dialog - Rodyti failų pasirinkimo dialogą - - - - X image size - Paveikslėlio plotis - - - - Y image size - Paveikslėlio aukštis - - - - Dots per point, with size will define output image resolution - Taškų skaičius tipografiniame taške, apibrėžiantis išvesties vaizdo raišką - - - - plot_series - - - No label - Be pavadinimo - - - - Line style - Linijos stilius - - - - Marker - Žymeklis - - - - Configure series - Keisti duomenų sekas - - - - List of available series - Galimų duomenų sekų sąrašas - - - - Line title - Linijos pavadinimas - - - - Marker style - Žymeklio stilius - - - - Line width - Linijos storis - - - - Marker size - Žymeklio dydis - - - - Line and marker color - Linijos ir žymeklio spalva - - - - Remove series - Pašalinti seką - - - - If checked, series will not be considered for legend - Jei pažymėta, seka nebus pateikiama žymėjimuose - - - - Removes this series - Pašalinti šią seką - - - diff --git a/src/Mod/Plot/resources/translations/Plot_nl.qm b/src/Mod/Plot/resources/translations/Plot_nl.qm deleted file mode 100644 index 6e07a620b1..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_nl.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_nl.ts b/src/Mod/Plot/resources/translations/Plot_nl.ts deleted file mode 100644 index cc3bb739dd..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_nl.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Plotbewerkingsgereedschappen - - - - Plot - Plot - - - - Plot_Axes - - - Configure axes - Configureer assen - - - - Configure the axes parameters - De parameters voor de assen instellen - - - - Plot_Grid - - - Show/Hide grid - Toon/Verberg raster - - - - Show/Hide grid on selected plot - Toon/Verberg raster op geselecteerde plot - - - - Plot_Labels - - - Set labels - Benamingen instellen - - - - Set title and axes labels - Hoofding en asbenamingen instellen - - - - Plot_Legend - - - Show/Hide legend - Toon/Verberg legende - - - - Show/Hide legend on selected plot - Toon/Verberg legenda op geselecteerde plot - - - - Plot_Positions - - - Set positions and sizes - Posities en groottes instellen - - - - Set labels and legend positions and sizes - Plaatsing en grootte van benamingen en legende instellen - - - - Plot_SaveFig - - - Save plot - Plot opslaan - - - - Save the plot as an image file - De plot als een afbeeldingsbestand opslaan - - - - Plot_Series - - - Configure series - Configureer series - - - - Configure series drawing style and label - Tekenstijl en benaming van series bepalen - - - - plot_axes - - - Configure axes - Configureer assen - - - - Active axes - Actieve assen - - - - Apply to all axes - Toepassen op alle assen - - - - Dimensions - Dimensies - - - - X axis position - Positie X-as - - - - Y axis position - Positie Y-as - - - - Scales - Schalen - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Index van de actieve assen - - - - Add new axes to the plot - Nieuwe assen toevoegen aan plot - - - - Remove selected axes - Verwijder geselecteerde assen - - - - Check it to apply transformations to all axes - Activeer om transformaties op alle assen toe te passen - - - - Left bound of axes - Linker limiet assen - - - - Right bound of axes - Rechter limiet assen - - - - Bottom bound of axes - Ondergrens van assen - - - - Top bound of axes - Bovengrens van assen - - - - Outward offset of X axis - Buitenverschuiving van de X-as - - - - Outward offset of Y axis - Buitenverschuiving van de Y-as - - - - X axis scale autoselection - Automatische selectie van de X-as schaal - - - - Y axis scale autoselection - Automatische selectie van de Y-as schaal - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib kon niet worden gevonden, en dus kan de Plot module niet worden geladen - - - - matplotlib not found, Plot module will be disabled - matplotlib kon niet worden gevonden, en dus wordt de Plot module uitgeschakeld - - - - Plot document must be selected in order to save it - Plot document moet worden opgeslaan om deze op te slaan - - - - Axes 0 can not be deleted - 0-assen kunnen niet worden verwijderd - - - - The grid must be activated on top of a plot document - Het raster moet bovenop een 'plot' document geactiveerd worden - - - - The legend must be activated on top of a plot document - De legende moet bovenop een 'plot' document geactiveerd worden - - - - plot_labels - - - Set labels - Benamingen instellen - - - - Active axes - Actieve assen - - - - Title - Hoofding - - - - X label - X-benaming - - - - Y label - Y-benaming - - - - Index of the active axes - Index van de actieve assen - - - - Title (associated to active axes) - Titel (gekoppeld aan actieve assen) - - - - Title font size - Lettertype groote van titel - - - - X axis title - Titel X as - - - - X axis title font size - Lettergrootte titel X as - - - - Y axis title - Titel Y as - - - - Y axis title font size - Lettergrootte voor titel van Y-as - - - - plot_positions - - - Set positions and sizes - Posities en groottes instellen - - - - Position - Positie - - - - Size - Grootte - - - - X item position - X-positie van het voorwerp - - - - Y item position - Y-positie van het voorwerp - - - - Item size - Afmeting van voorwerp - - - - List of modifiable items - Lijst van aanpasbare items - - - - plot_save - - - Save figure - Figuur opslaan - - - - Inches - Inches - - - - Dots per Inch - Punten per duim - - - - Output image file path - Bestandslocatie voor resulterend beeld - - - - Show a file selection dialog - Toon bestand selectie dialoog - - - - X image size - X-afmeting van afbeelding - - - - Y image size - Y-afmeting van afbeelding - - - - Dots per point, with size will define output image resolution - Stippen per punt, dewelke de uiteindelijke beeld resolutie definiëren - - - - plot_series - - - No label - Geen benaming - - - - Line style - Lijnstijl - - - - Marker - Marker - - - - Configure series - Configureer series - - - - List of available series - Lijst van beschikbare series - - - - Line title - Lijn titel - - - - Marker style - Marker stijl - - - - Line width - Lijndikte - - - - Marker size - Marker grootte - - - - Line and marker color - Kleur van de lijn en marker - - - - Remove series - Verwijder serie - - - - If checked, series will not be considered for legend - Indien aangevinkt, wordt deze serie niet beschouwd als legende - - - - Removes this series - Verwijder deze serie - - - diff --git a/src/Mod/Plot/resources/translations/Plot_no.qm b/src/Mod/Plot/resources/translations/Plot_no.qm deleted file mode 100644 index 7fa7e48646..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_no.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_no.ts b/src/Mod/Plot/resources/translations/Plot_no.ts deleted file mode 100644 index fc1a8f3003..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_no.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Plot edition tools - - - - Plot - Plot - - - - Plot_Axes - - - Configure axes - Configure axes - - - - Configure the axes parameters - Configure the axes parameters - - - - Plot_Grid - - - Show/Hide grid - Show/Hide grid - - - - Show/Hide grid on selected plot - Show/Hide grid on selected plot - - - - Plot_Labels - - - Set labels - Set labels - - - - Set title and axes labels - Set title and axes labels - - - - Plot_Legend - - - Show/Hide legend - Show/Hide legend - - - - Show/Hide legend on selected plot - Show/Hide legend on selected plot - - - - Plot_Positions - - - Set positions and sizes - Set positions and sizes - - - - Set labels and legend positions and sizes - Set labels and legend positions and sizes - - - - Plot_SaveFig - - - Save plot - Save plot - - - - Save the plot as an image file - Save the plot as an image file - - - - Plot_Series - - - Configure series - Configure series - - - - Configure series drawing style and label - Configure series drawing style and label - - - - plot_axes - - - Configure axes - Configure axes - - - - Active axes - Aktive akser - - - - Apply to all axes - Apply to all axes - - - - Dimensions - Dimensions - - - - X axis position - X axis position - - - - Y axis position - Y axis position - - - - Scales - Scales - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Index of the active axes - - - - Add new axes to the plot - Add new axes to the plot - - - - Remove selected axes - Remove selected axes - - - - Check it to apply transformations to all axes - Check it to apply transformations to all axes - - - - Left bound of axes - Left bound of axes - - - - Right bound of axes - Right bound of axes - - - - Bottom bound of axes - Bottom bound of axes - - - - Top bound of axes - Top bound of axes - - - - Outward offset of X axis - Outward offset of X axis - - - - Outward offset of Y axis - Outward offset of Y axis - - - - X axis scale autoselection - X axis scale autoselection - - - - Y axis scale autoselection - Y axis scale autoselection - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib not found, so Plot module can not be loaded - - - - matplotlib not found, Plot module will be disabled - matplotlib not found, Plot module will be disabled - - - - Plot document must be selected in order to save it - Plot document must be selected in order to save it - - - - Axes 0 can not be deleted - Axes 0 can not be deleted - - - - The grid must be activated on top of a plot document - The grid must be activated on top of a plot document - - - - The legend must be activated on top of a plot document - The legend must be activated on top of a plot document - - - - plot_labels - - - Set labels - Set labels - - - - Active axes - Aktive akser - - - - Title - Title - - - - X label - X label - - - - Y label - Y label - - - - Index of the active axes - Index of the active axes - - - - Title (associated to active axes) - Title (associated to active axes) - - - - Title font size - Title font size - - - - X axis title - X axis title - - - - X axis title font size - X axis title font size - - - - Y axis title - Y axis title - - - - Y axis title font size - Y axis title font size - - - - plot_positions - - - Set positions and sizes - Set positions and sizes - - - - Position - Posisjon - - - - Size - Size - - - - X item position - X item position - - - - Y item position - Y item position - - - - Item size - Item size - - - - List of modifiable items - List of modifiable items - - - - plot_save - - - Save figure - Save figure - - - - Inches - Inches - - - - Dots per Inch - Dots per Inch - - - - Output image file path - Output image file path - - - - Show a file selection dialog - Show a file selection dialog - - - - X image size - X image size - - - - Y image size - Y image size - - - - Dots per point, with size will define output image resolution - Dots per point, with size will define output image resolution - - - - plot_series - - - No label - No label - - - - Line style - Line style - - - - Marker - Marker - - - - Configure series - Configure series - - - - List of available series - List of available series - - - - Line title - Line title - - - - Marker style - Marker style - - - - Line width - Line width - - - - Marker size - Marker size - - - - Line and marker color - Line and marker color - - - - Remove series - Remove series - - - - If checked, series will not be considered for legend - If checked, series will not be considered for legend - - - - Removes this series - Removes this series - - - diff --git a/src/Mod/Plot/resources/translations/Plot_pl.qm b/src/Mod/Plot/resources/translations/Plot_pl.qm deleted file mode 100644 index 235c5077b2..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_pl.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_pl.ts b/src/Mod/Plot/resources/translations/Plot_pl.ts deleted file mode 100644 index ae14c7828c..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_pl.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Narzędzia do edycji wykresu - - - - Plot - Wykres - - - - Plot_Axes - - - Configure axes - Konfiguracja osi - - - - Configure the axes parameters - Konfiguracja parametrów osi - - - - Plot_Grid - - - Show/Hide grid - Pokaż / ukryj siatkę - - - - Show/Hide grid on selected plot - Pokaż / ukryj siatkę na wybranym wykresie - - - - Plot_Labels - - - Set labels - Ustaw etykiety - - - - Set title and axes labels - Ustaw tytuł oraz etykiety osi - - - - Plot_Legend - - - Show/Hide legend - Pokaż / ukryj legendę - - - - Show/Hide legend on selected plot - Pokaż / ukryj legendę na wybranym wykresie - - - - Plot_Positions - - - Set positions and sizes - Ustaw pozycje i rozmiary - - - - Set labels and legend positions and sizes - Ustaw etykiety oraz pozycje i rozmiary legendy - - - - Plot_SaveFig - - - Save plot - Zapisz wykres - - - - Save the plot as an image file - Zapisz wykres jako plik graficzny - - - - Plot_Series - - - Configure series - Skonfiguruj serie - - - - Configure series drawing style and label - Skonfiguruj styl rysunku serii i etykietę - - - - plot_axes - - - Configure axes - Konfiguracja osi - - - - Active axes - Aktywne osie - - - - Apply to all axes - Zastosuj dla wszystkich osi - - - - Dimensions - Wymiary - - - - X axis position - Pozycja osi X - - - - Y axis position - Pozycja osi Y - - - - Scales - Skala - - - - X auto - X automatycznie - - - - Y auto - Y automatycznie - - - - Index of the active axes - Indeks aktywnej osi - - - - Add new axes to the plot - Dodaj nowe osie do wykresu - - - - Remove selected axes - Usuń wybrane osie - - - - Check it to apply transformations to all axes - Zaznacz, aby zastosować przekształcenia na wszystkich osiach - - - - Left bound of axes - Lewa granica osi - - - - Right bound of axes - Prawa granica osi - - - - Bottom bound of axes - Dolna granica osi - - - - Top bound of axes - Górna granica osi - - - - Outward offset of X axis - Przesunięcie osi X na zewnątrz - - - - Outward offset of Y axis - Przesunięcie osi Y na zewnątrz - - - - X axis scale autoselection - Automatyczny wybór skali w osi X - - - - Y axis scale autoselection - Automatyczny wybór skali w osi Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - nie znaleziono biblioteki matplotlib, więc moduł wykresu nie może być załadowany - - - - matplotlib not found, Plot module will be disabled - nie odnaleziono biblioteki matplotlib, moduł wydruku zostanie wyłączony - - - - Plot document must be selected in order to save it - Dokument wykresu musi być wybrany, aby można było go zapisać - - - - Axes 0 can not be deleted - Nie można usunąć osi 0 - - - - The grid must be activated on top of a plot document - Siatka musi być aktywowana na górnej części dokumentu wykresu - - - - The legend must be activated on top of a plot document - Legenda musi być aktywowana w górnej części dokumentu wykresu - - - - plot_labels - - - Set labels - Ustaw etykiety - - - - Active axes - Aktywne osie - - - - Title - Tytuł - - - - X label - Etykieta osi X - - - - Y label - Etykieta osi Y - - - - Index of the active axes - Indeks aktywnej osi - - - - Title (associated to active axes) - Tytuł (powiązany z aktywną osią) - - - - Title font size - Rozmiar czcionki dla tytułu - - - - X axis title - Tytuł osi X - - - - X axis title font size - Rozmiar czcionki dla tytułu osi X - - - - Y axis title - Tytuł osi Y - - - - Y axis title font size - Rozmiar czcionki dla tytułu osi Y - - - - plot_positions - - - Set positions and sizes - Ustaw pozycje i rozmiary - - - - Position - Pozycja - - - - Size - Rozmiar - - - - X item position - Współrzędna X położenia elementu - - - - Y item position - Współrzędna Y położenia elementu - - - - Item size - Rozmiar elementu - - - - List of modifiable items - Lista modyfikowalnych elementów - - - - plot_save - - - Save figure - Zapisz rysunek - - - - Inches - Cale - - - - Dots per Inch - Punktów na cal - - - - Output image file path - Ścieżka pliku obrazu wyjściowego - - - - Show a file selection dialog - Pokaż okno dialogowe wyboru pliku - - - - X image size - Szerokość obrazu - - - - Y image size - Wysokość obrazu - - - - Dots per point, with size will define output image resolution - Ilość kropek na punkt, których wielkość określa rozdzielczość obrazu wyjściowego - - - - plot_series - - - No label - Brak etykiety - - - - Line style - Styl linii - - - - Marker - Znacznik - - - - Configure series - Skonfiguruj serie - - - - List of available series - Lista dostępnych serii - - - - Line title - Tytuł wiersza - - - - Marker style - Styl znacznika - - - - Line width - Szerokość linii - - - - Marker size - Rozmiar znacznika - - - - Line and marker color - Kolor linii i znacznika - - - - Remove series - Usuń serie - - - - If checked, series will not be considered for legend - Jeśli opcja jest zaznaczona, serie nie będą uwzględniane w legendzie - - - - Removes this series - Usuwa tę serię - - - diff --git a/src/Mod/Plot/resources/translations/Plot_pt-BR.qm b/src/Mod/Plot/resources/translations/Plot_pt-BR.qm deleted file mode 100644 index dce24b65de..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_pt-BR.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_pt-BR.ts b/src/Mod/Plot/resources/translations/Plot_pt-BR.ts deleted file mode 100644 index 674ae95e0e..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_pt-BR.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Ferramentas de edição de plot - - - - Plot - Plot - - - - Plot_Axes - - - Configure axes - Configurar os eixos - - - - Configure the axes parameters - Configurar os parâmetros dos eixos - - - - Plot_Grid - - - Show/Hide grid - Mostrar/ocultar grade - - - - Show/Hide grid on selected plot - Mostrar/ocultar grade no plot selecionado - - - - Plot_Labels - - - Set labels - Rotular - - - - Set title and axes labels - Colocar títulos e rótulos nos eixos - - - - Plot_Legend - - - Show/Hide legend - Mostrar/ocultar legenda - - - - Show/Hide legend on selected plot - Mostrar/ocultar legenda no plot selecionado - - - - Plot_Positions - - - Set positions and sizes - Colocar posições e escalas - - - - Set labels and legend positions and sizes - Colocar rótulos e legenda de posições e escalas - - - - Plot_SaveFig - - - Save plot - Salvar o plot - - - - Save the plot as an image file - Salvar a imagem como um arquivo de impressão - - - - Plot_Series - - - Configure series - Configurar séries - - - - Configure series drawing style and label - Configurar estilos de desenho e rotulagem - - - - plot_axes - - - Configure axes - Configurar os eixos - - - - Active axes - Eixos ativos - - - - Apply to all axes - Aplicar a todos os eixos - - - - Dimensions - Dimensões - - - - X axis position - Posição do eixo x - - - - Y axis position - Posição do eixo y - - - - Scales - Escalas - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Índice dos eixos ativos - - - - Add new axes to the plot - Adicionar novos eixos ao plot - - - - Remove selected axes - Remover os eixos selecionados - - - - Check it to apply transformations to all axes - Marcar para aplicar as transformações a todos os eixos - - - - Left bound of axes - Limite esquerdo dos eixos - - - - Right bound of axes - Limite direito dos eixos - - - - Bottom bound of axes - Limite inferior dos eixos - - - - Top bound of axes - Limite superior dos eixos - - - - Outward offset of X axis - Offset para fora do eixo x - - - - Outward offset of Y axis - Offset para fora do eixo y - - - - X axis scale autoselection - Seleção automática de escala de eixo x - - - - Y axis scale autoselection - Seleção automática de escala de eixo y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib não encontrado, o módulo plot não pode ser carregado - - - - matplotlib not found, Plot module will be disabled - matplotlib não encontrado, o módulo plot será desativado - - - - Plot document must be selected in order to save it - Um documento plot deve ser selecionado para salvá-lo - - - - Axes 0 can not be deleted - Eixos 0 não podem ser excluídos - - - - The grid must be activated on top of a plot document - A grade deve ser enquadrada no topo do documento a ser impresso - - - - The legend must be activated on top of a plot document - O cabeçalho deve ser enquadrado no topo do documento a ser impresso - - - - plot_labels - - - Set labels - Rotular - - - - Active axes - Eixos ativos - - - - Title - Título - - - - X label - rótulo X - - - - Y label - rótulo Y - - - - Index of the active axes - Índice dos eixos ativos - - - - Title (associated to active axes) - Título (associado aos eixos ativos) - - - - Title font size - Tamanho de fonte do título - - - - X axis title - Título do eixo x - - - - X axis title font size - Tamanho de fonte do título de eixo x - - - - Y axis title - Título do eixo y - - - - Y axis title font size - Tamanho de fonte do título de eixo y - - - - plot_positions - - - Set positions and sizes - Colocar posições e escalas - - - - Position - Posição - - - - Size - Tamanho - - - - X item position - Posição do item x - - - - Y item position - Posição do item y - - - - Item size - Tamanho do item - - - - List of modifiable items - Lista de itens modificáveis - - - - plot_save - - - Save figure - Salvar a figura - - - - Inches - Polegadas - - - - Dots per Inch - Pontos por polegada - - - - Output image file path - Caminho de arquivo de imagem de saída - - - - Show a file selection dialog - Mostrar uma caixa de diálogo de seleção de arquivo - - - - X image size - Tamanho x da imagem - - - - Y image size - Tamanho y da imagem - - - - Dots per point, with size will define output image resolution - Pontos por polegadas, com tamanho irão definir a resolução de imagem de saída - - - - plot_series - - - No label - Sem rótulo - - - - Line style - Estilo de linha - - - - Marker - Marcador - - - - Configure series - Configurar séries - - - - List of available series - Lista de séries disponíveis - - - - Line title - Título de linha - - - - Marker style - Estilo de marcador - - - - Line width - Espessura de linha - - - - Marker size - Tamanho do marcador - - - - Line and marker color - Cor de linha e marcador - - - - Remove series - Remover série - - - - If checked, series will not be considered for legend - Se selecionado a serie não será considerada para a legenda - - - - Removes this series - Remove esta série - - - diff --git a/src/Mod/Plot/resources/translations/Plot_pt-PT.qm b/src/Mod/Plot/resources/translations/Plot_pt-PT.qm deleted file mode 100644 index 133942486d..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_pt-PT.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_pt-PT.ts b/src/Mod/Plot/resources/translations/Plot_pt-PT.ts deleted file mode 100644 index 54b41d248b..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_pt-PT.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Ferramentas de edição de plotagem - - - - Plot - Traçar - - - - Plot_Axes - - - Configure axes - Configurar Eixos - - - - Configure the axes parameters - Configurar os parâmetros dos eixos - - - - Plot_Grid - - - Show/Hide grid - Mostrar/Ocultar Grelha - - - - Show/Hide grid on selected plot - Mostrar/ocultar grelha na plotagem selecionada - - - - Plot_Labels - - - Set labels - Definir Nomes - - - - Set title and axes labels - Definir Título e Nomes dos Eixos - - - - Plot_Legend - - - Show/Hide legend - Mostrar/Ocultar Legenda - - - - Show/Hide legend on selected plot - Mostrar/ocultar legenda na plotagem selecionada - - - - Plot_Positions - - - Set positions and sizes - Definir Tamanhos e Posições - - - - Set labels and legend positions and sizes - Definir Nomes, Tamanhos e Posições das Legendas - - - - Plot_SaveFig - - - Save plot - Salvar a plotagem - - - - Save the plot as an image file - Salvar a plotagem como ficheiro de imagem - - - - Plot_Series - - - Configure series - Configurar Séries - - - - Configure series drawing style and label - Configurar estilos de desenho e rotulagem - - - - plot_axes - - - Configure axes - Configurar Eixos - - - - Active axes - Ativar Eixos - - - - Apply to all axes - Aplicar para todos os eixos - - - - Dimensions - Dimensões - - - - X axis position - Posição do eixo X - - - - Y axis position - Posição do eixo X - - - - Scales - Escalas - - - - X auto - Automático X - - - - Y auto - Automático Y - - - - Index of the active axes - Index dos eixos ativos - - - - Add new axes to the plot - Adicionar novos eixos à plotagem - - - - Remove selected axes - Remover os eixos selecionados - - - - Check it to apply transformations to all axes - Marcar para aplicar as transformações a todos os eixos - - - - Left bound of axes - Limite esquerdo dos eixos - - - - Right bound of axes - Limite direito dos eixos - - - - Bottom bound of axes - Limite inferior dos eixos - - - - Top bound of axes - Limite superior dos eixos - - - - Outward offset of X axis - Deslocamento (offset) para fora do eixo x - - - - Outward offset of Y axis - Deslocamento (offset) para fora do eixo y - - - - X axis scale autoselection - Seleção automática de escala do eixo X - - - - Y axis scale autoselection - Seleção automática de escala de eixo Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib não encontrado, então o módulo de traçagem não pode ser carregado - - - - matplotlib not found, Plot module will be disabled - matplotlib não encontrado, o módulo plot será desativado - - - - Plot document must be selected in order to save it - Um documento plot deve ser selecionado para ser salvo - - - - Axes 0 can not be deleted - Eixos 0 não podem ser apagados - - - - The grid must be activated on top of a plot document - A grelha deve ser ativada no topo do documento a ser impresso - - - - The legend must be activated on top of a plot document - O cabeçalho deve ser enquadrado no topo do documento a ser impresso - - - - plot_labels - - - Set labels - Definir Nomes - - - - Active axes - Ativar Eixos - - - - Title - Título - - - - X label - Nome do X - - - - Y label - Nome do Y - - - - Index of the active axes - Index dos eixos ativos - - - - Title (associated to active axes) - Título (associado ao eixo ativo) - - - - Title font size - Tamanho da Letra do Título - - - - X axis title - Título do Eixo X - - - - X axis title font size - Tamanho da Letra do Título do Eixo X - - - - Y axis title - Título do Eixo Y - - - - Y axis title font size - Tamanho da Letra do Título do Eixo Y - - - - plot_positions - - - Set positions and sizes - Definir Tamanhos e Posições - - - - Position - Posição - - - - Size - Tamanho - - - - X item position - Posição do item X - - - - Y item position - Posição do item Y - - - - Item size - Tamanho do Item - - - - List of modifiable items - Lista de itens modificáveis - - - - plot_save - - - Save figure - Guardar Figura - - - - Inches - Polegadas - - - - Dots per Inch - Pontos por polegada - - - - Output image file path - Caminho do ficheiro de imagem de saída - - - - Show a file selection dialog - Mostrar a janela da seleção de ficheiro - - - - X image size - Tamanho da imagem X - - - - Y image size - Tamanho da imagem Y - - - - Dots per point, with size will define output image resolution - Pontos por polegadas, com tamanho irão definir a resolução de imagem de saída - - - - plot_series - - - No label - Sem rótulo - - - - Line style - Estilo de linha - - - - Marker - Marcador - - - - Configure series - Configurar Séries - - - - List of available series - Lista de séries disponíveis - - - - Line title - Título de linha - - - - Marker style - Estilo de marcador - - - - Line width - Largura da linha - - - - Marker size - Tamanho do marcador - - - - Line and marker color - Cor de linha e de marcador - - - - Remove series - Remover série - - - - If checked, series will not be considered for legend - Se selecionado a serie não será considerada para a legenda - - - - Removes this series - Remove esta série - - - diff --git a/src/Mod/Plot/resources/translations/Plot_ro.qm b/src/Mod/Plot/resources/translations/Plot_ro.qm deleted file mode 100644 index b98a636b02..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_ro.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_ro.ts b/src/Mod/Plot/resources/translations/Plot_ro.ts deleted file mode 100644 index c1c2498327..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_ro.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Unelte de reprezentare grafică - - - - Plot - Reprezentare grafică - - - - Plot_Axes - - - Configure axes - Configurare axe - - - - Configure the axes parameters - Configurează parametrii axelor - - - - Plot_Grid - - - Show/Hide grid - Afisare/Ascundere grila - - - - Show/Hide grid on selected plot - Afisare/Ascundere grila pe graficul selectat - - - - Plot_Labels - - - Set labels - Seteaza etichete - - - - Set title and axes labels - Seteaza titlul si etichetele axelor - - - - Plot_Legend - - - Show/Hide legend - Afisare/Ascundere legenda - - - - Show/Hide legend on selected plot - Afisare/Ascundere legenda in graficul selectat - - - - Plot_Positions - - - Set positions and sizes - Seteaza poziţia si dimensiunile - - - - Set labels and legend positions and sizes - Definiți etichetele, poziția și dimensiunea legendei - - - - Plot_SaveFig - - - Save plot - Salvați graficul - - - - Save the plot as an image file - Salvează graficul ca un fișier imagine - - - - Plot_Series - - - Configure series - Configurarea seriilor - - - - Configure series drawing style and label - Configurarea stilului de desenare si etichetei pentru serii - - - - plot_axes - - - Configure axes - Configurare axe - - - - Active axes - Axe active - - - - Apply to all axes - Se aplica la toate axele - - - - Dimensions - Dimensiuni - - - - X axis position - Pozitia axei x - - - - Y axis position - Pozitia axei y - - - - Scales - Scari - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Indicii axelor active - - - - Add new axes to the plot - Adauga axe noi la grafic - - - - Remove selected axes - Elimina axele selectate - - - - Check it to apply transformations to all axes - Bifati pentru a aplica transformarea tuturor axelor - - - - Left bound of axes - Marginea stanga a axelor - - - - Right bound of axes - Marginea dreapta a axelor - - - - Bottom bound of axes - Marginea de jos a axelor - - - - Top bound of axes - Marginea de sus a axelor - - - - Outward offset of X axis - Deplasare spre exterior pe axa x - - - - Outward offset of Y axis - Deplasare spre interior pe axa Y - - - - X axis scale autoselection - Selecție automată pentru scara axei X - - - - Y axis scale autoselection - Selecție automată pentru scara axei Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib nu a fost găsit, astfel că modulul Plot nu poate fi încărcat - - - - matplotlib not found, Plot module will be disabled - matplotlib nu a fost găsit, astfel că modulul Plot va fi dezactivat - - - - Plot document must be selected in order to save it - Pentru a fi salvat, documentul Plot trebuie să fie selectat - - - - Axes 0 can not be deleted - Axele 0 nu pot fi sterse - - - - The grid must be activated on top of a plot document - Grila trebuie activată pe partea de sus a graficului unui document - - - - The legend must be activated on top of a plot document - Legenda trebuie activată pe partea de sus a graficului documentului - - - - plot_labels - - - Set labels - Seteaza etichete - - - - Active axes - Axe active - - - - Title - Titlu - - - - X label - eticheta X - - - - Y label - eticheta Y - - - - Index of the active axes - Indicii axelor active - - - - Title (associated to active axes) - Titlu (asociat cu axele active) - - - - Title font size - Dimensiunea font-ului pentru titlu - - - - X axis title - Titlu pentru axa X - - - - X axis title font size - Dimensiunea font-ului pentru axa X - - - - Y axis title - Titlu pentru axa Y - - - - Y axis title font size - Dimensiunea font-ului pentru axa Y - - - - plot_positions - - - Set positions and sizes - Seteaza poziţia si dimensiunile - - - - Position - Position - - - - Size - Dimensiune - - - - X item position - Pozitia pe X - - - - Y item position - Pozitia pe Y - - - - Item size - Dimensiune element - - - - List of modifiable items - Lista obiectelor modificable - - - - plot_save - - - Save figure - Salveaza figura - - - - Inches - Țoli - - - - Dots per Inch - Puncte pe Țol - - - - Output image file path - Calea pentru fisierul imagine rezultat - - - - Show a file selection dialog - Prezinta dialogul de selectie a fisierelor - - - - X image size - Dimensiune imagine pe X - - - - Y image size - Dimensiune imagine pe Y - - - - Dots per point, with size will define output image resolution - Puncte pe pixel, cu care se vor defini rezoluția imaginii de ieșire - - - - plot_series - - - No label - Fara eticheta - - - - Line style - Stilul de linie - - - - Marker - Marcator - - - - Configure series - Configurarea seriilor - - - - List of available series - Lista seriilor disponibile - - - - Line title - Titlul liniei - - - - Marker style - Stil marcator - - - - Line width - Latimea liniei - - - - Marker size - Dimensiune marcator - - - - Line and marker color - Culoare linie si marker - - - - Remove series - Elimină seria - - - - If checked, series will not be considered for legend - Dacă e bifat, seria nu va fi luată în considerare pentru legendă - - - - Removes this series - Elimină această serie - - - diff --git a/src/Mod/Plot/resources/translations/Plot_ru.qm b/src/Mod/Plot/resources/translations/Plot_ru.qm deleted file mode 100644 index 2aee4d63ed..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_ru.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_ru.ts b/src/Mod/Plot/resources/translations/Plot_ru.ts deleted file mode 100644 index 55eaea0707..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_ru.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Инструменты редактирования графиков - - - - Plot - График - - - - Plot_Axes - - - Configure axes - Настройка осей - - - - Configure the axes parameters - Настройка параметров осей - - - - Plot_Grid - - - Show/Hide grid - Показать/скрыть сетку - - - - Show/Hide grid on selected plot - Показывать/Скрыть вспомогательную сетку на графике - - - - Plot_Labels - - - Set labels - Настроить подписи - - - - Set title and axes labels - Настроить подписи заголовка и осей - - - - Plot_Legend - - - Show/Hide legend - Показать/скрыть легенду - - - - Show/Hide legend on selected plot - Показать/Скрыть легенду для выбранного графика - - - - Plot_Positions - - - Set positions and sizes - Настройка расположения и размеров - - - - Set labels and legend positions and sizes - Настройка расположения и размеров легенды и подписей - - - - Plot_SaveFig - - - Save plot - Сохранить диаграмму - - - - Save the plot as an image file - Сохранить график как файл изображения - - - - Plot_Series - - - Configure series - Настройка числовых рядов - - - - Configure series drawing style and label - Настройка стиля рисования и маркеров числового ряда - - - - plot_axes - - - Configure axes - Настройка осей - - - - Active axes - Активные оси - - - - Apply to all axes - Применить для всех осей - - - - Dimensions - Размеры - - - - X axis position - Расположение оси X - - - - Y axis position - Расположение оси Y - - - - Scales - Масштабы шкал - - - - X auto - X автомасштабирование - - - - Y auto - Y автомасштабирование - - - - Index of the active axes - Индекс активных осей - - - - Add new axes to the plot - Добавление новых осей к диаграмму - - - - Remove selected axes - Удалить выбранные оси - - - - Check it to apply transformations to all axes - Проверить возможность преобразования всех осей - - - - Left bound of axes - Левая граница осей - - - - Right bound of axes - Правая граница осей - - - - Bottom bound of axes - Нижняя граница осей - - - - Top bound of axes - Верхняя граница осей - - - - Outward offset of X axis - Наружное смещение по оси X - - - - Outward offset of Y axis - Наружное смещение по оси Y - - - - X axis scale autoselection - Автоматический выбор шкалы оси X - - - - Y axis scale autoselection - Автоматический выбор шкалы оси Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - библиотека matplotlib, не найдена, поэтому модуль графиков не может быть загружен - - - - matplotlib not found, Plot module will be disabled - библиотека matplotlib, не найдена, модуль графиков будет отключен - - - - Plot document must be selected in order to save it - Документ с графиком должен быть выбран для сохранения - - - - Axes 0 can not be deleted - Нулевые оси не могут быть удалены - - - - The grid must be activated on top of a plot document - Осевая сетка должна быть активирована поверх графика - - - - The legend must be activated on top of a plot document - Легенда должна быть активирована поверх графика - - - - plot_labels - - - Set labels - Настроить подписи - - - - Active axes - Активные оси - - - - Title - Заголовок - - - - X label - Значение по X - - - - Y label - Значение по Y - - - - Index of the active axes - Индекс активных осей - - - - Title (associated to active axes) - Название (связанное с действующими осями) - - - - Title font size - Размер шрифта заголовка - - - - X axis title - Название оси X - - - - X axis title font size - Размер шрифта названия оси Х - - - - Y axis title - Название оси Y - - - - Y axis title font size - Размер шрифта названия оси Y - - - - plot_positions - - - Set positions and sizes - Настройка расположения и размеров - - - - Position - Положение - - - - Size - Размер - - - - X item position - Расположение элемента по оси X - - - - Y item position - Расположение элемента по оси Y - - - - Item size - Размер элемента - - - - List of modifiable items - Список модифицируемых элементов - - - - plot_save - - - Save figure - Сохранить рисунок - - - - Inches - Дюймы - - - - Dots per Inch - Точек на дюйм - - - - Output image file path - Выходной путь изображения - - - - Show a file selection dialog - Показать диалог выбора файла - - - - X image size - Размер изображения по X - - - - Y image size - Размер изображения по Y - - - - Dots per point, with size will define output image resolution - Точек на единицу площади , разрешение исходящего изображения будет влиять на размер - - - - plot_series - - - No label - Нет метки - - - - Line style - Стиль линии - - - - Marker - Маркер - - - - Configure series - Настройка числовых рядов - - - - List of available series - Список доступных числовых рядов - - - - Line title - Название линии - - - - Marker style - Стиль маркера - - - - Line width - Ширина линии - - - - Marker size - Размер маркера - - - - Line and marker color - Цвет линии и маркера - - - - Remove series - Удалить числовой ряд - - - - If checked, series will not be considered for legend - Если отмечено числовой ряд не будет включаться в легенду - - - - Removes this series - Удаляет этот числовой ряд - - - diff --git a/src/Mod/Plot/resources/translations/Plot_sk.qm b/src/Mod/Plot/resources/translations/Plot_sk.qm deleted file mode 100644 index d4232b83b1..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_sk.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_sk.ts b/src/Mod/Plot/resources/translations/Plot_sk.ts deleted file mode 100644 index 7d4e47b3aa..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_sk.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Nástroje úpravy grafu - - - - Plot - Graf - - - - Plot_Axes - - - Configure axes - Nastaviť osi - - - - Configure the axes parameters - Nastaviť parametre osí - - - - Plot_Grid - - - Show/Hide grid - Zobraziť/skryť mriežku - - - - Show/Hide grid on selected plot - Zobraziť/skryť mriežku vybraného grafu - - - - Plot_Labels - - - Set labels - Nastaviť popisy - - - - Set title and axes labels - Nastaviť nadpis a popisy osí - - - - Plot_Legend - - - Show/Hide legend - Zobraziť/skryť legendu - - - - Show/Hide legend on selected plot - Zobraziť/skryť legendu vo vybranom grafe - - - - Plot_Positions - - - Set positions and sizes - Nastavenie pozície a veľkosti - - - - Set labels and legend positions and sizes - Nastavenie pozície a veľkosti popisov a legendy - - - - Plot_SaveFig - - - Save plot - Uložiť graf - - - - Save the plot as an image file - Uložiť graf ako obrázok - - - - Plot_Series - - - Configure series - Nastavenie série - - - - Configure series drawing style and label - Nastavenie štýlu a popisu pre sériu - - - - plot_axes - - - Configure axes - Nastaviť osi - - - - Active axes - Aktívne osi - - - - Apply to all axes - Aplikovať na všetky osi - - - - Dimensions - Rozmery - - - - X axis position - Poloha osi X - - - - Y axis position - Poloha osi Y - - - - Scales - Mierky - - - - X auto - X automaticky - - - - Y auto - Y automaticky - - - - Index of the active axes - Popis aktívnych osí - - - - Add new axes to the plot - Pridať nové osi do grafu - - - - Remove selected axes - Odobrať vybrané osi - - - - Check it to apply transformations to all axes - Zaškrtnite pre povolenie transformácií vo všetkých osách - - - - Left bound of axes - Ľavá medza osí - - - - Right bound of axes - Pravá medza osí - - - - Bottom bound of axes - Spodná medza osí - - - - Top bound of axes - Horná medza osí - - - - Outward offset of X axis - Vonkajšie odsadenie osi X - - - - Outward offset of Y axis - Vonkajšie odsadenie osi Y - - - - X axis scale autoselection - Automatická mierka osi X - - - - Y axis scale autoselection - Automatická mierka osi Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - modul Graf nemohol byť načítaný, pretože knižnica matplotlib nebola nájdená - - - - matplotlib not found, Plot module will be disabled - knižnica matplotlib nebola nájdená, modul Graf bude deaktivovaný - - - - Plot document must be selected in order to save it - Dokument grafu musí byť vybraný, aby mohol byť uložený - - - - Axes 0 can not be deleted - Osi 0 nemôžu byť zmazané - - - - The grid must be activated on top of a plot document - Mriežka grafu musí byť aktivovaná hore v dokumente grafu - - - - The legend must be activated on top of a plot document - Legenda musí byť aktivovaná hore v dokumente grafu - - - - plot_labels - - - Set labels - Nastaviť popisy - - - - Active axes - Aktívne osi - - - - Title - Nadpis - - - - X label - Popis osi X - - - - Y label - Popis osi Y - - - - Index of the active axes - Popis aktívnych osí - - - - Title (associated to active axes) - Nadpis (pripojený k aktívnym osám) - - - - Title font size - Veľkosť písma nadpisu - - - - X axis title - Nadpis na ose X - - - - X axis title font size - Veľkosť písma nadpisu na ose X - - - - Y axis title - Nadpis na ose Y - - - - Y axis title font size - Velľkosť písma nadpisu na ose Y - - - - plot_positions - - - Set positions and sizes - Nastavenie pozície a veľkosti - - - - Position - Pozícia - - - - Size - Veľkosť - - - - X item position - Poloha položky v smere X - - - - Y item position - Poloha položky v smere Y - - - - Item size - Veľkosť položky - - - - List of modifiable items - Zoznam upraviteľných položiek - - - - plot_save - - - Save figure - Uložiť znázornenie - - - - Inches - Palce - - - - Dots per Inch - Body na palec - - - - Output image file path - Umiestnenie súboru výstupného obrázku - - - - Show a file selection dialog - Zobraziť dialóg pre výber súboru - - - - X image size - Veľkosť obrázku v smere X - - - - Y image size - Veľkosť obrázku v smere Y - - - - Dots per point, with size will define output image resolution - Počet bodiek na bod, spolu s veľkosťou, definujú výstupné rozlíšenie obrázku - - - - plot_series - - - No label - Bez popisu - - - - Line style - Štýl čiary - - - - Marker - Značka - - - - Configure series - Nastavenie série - - - - List of available series - Zoznam dostupných sérií - - - - Line title - Nadpis na čiare - - - - Marker style - Štýl značky - - - - Line width - Hrúbka čiary - - - - Marker size - Veľkosť značky - - - - Line and marker color - Farba čiary a značky - - - - Remove series - Odstrániť sériu - - - - If checked, series will not be considered for legend - Ak je zaškrtnuté, séria nebude použitá pre legendu - - - - Removes this series - Odstráni túto sériu - - - diff --git a/src/Mod/Plot/resources/translations/Plot_sl.qm b/src/Mod/Plot/resources/translations/Plot_sl.qm deleted file mode 100644 index 009b1fe6bb..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_sl.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_sl.ts b/src/Mod/Plot/resources/translations/Plot_sl.ts deleted file mode 100644 index bb41642e92..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_sl.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Orodja za urejanje izrisa - - - - Plot - Izriši - - - - Plot_Axes - - - Configure axes - Nastavi osi - - - - Configure the axes parameters - Nastavi parametre osi - - - - Plot_Grid - - - Show/Hide grid - Prikaži/Skrij mrežo - - - - Show/Hide grid on selected plot - Prikaži/skrij mrežo na izbranem izrisu - - - - Plot_Labels - - - Set labels - Nastavi oznake - - - - Set title and axes labels - Nastavi naziv in oznake osi - - - - Plot_Legend - - - Show/Hide legend - Prikaži/Skrij legendo - - - - Show/Hide legend on selected plot - Prikaži/skrij legendo na izbranem izrisu - - - - Plot_Positions - - - Set positions and sizes - Nastavi položaje in velikosti - - - - Set labels and legend positions and sizes - Nastavi velikosti in položaje oznak in legend - - - - Plot_SaveFig - - - Save plot - Shrani izris - - - - Save the plot as an image file - Shrani izris kot odtis - - - - Plot_Series - - - Configure series - Nastavi serijo - - - - Configure series drawing style and label - Nastavi slog risanja in oznako serije - - - - plot_axes - - - Configure axes - Nastavi osi - - - - Active axes - Dejavne osi - - - - Apply to all axes - Uporabi za vse osi - - - - Dimensions - Mere - - - - X axis position - Položaj osi X - - - - Y axis position - Položaj osi Y - - - - Scales - Merila - - - - X auto - Samodejno X - - - - Y auto - Samodejno Y - - - - Index of the active axes - Kazalo dejavnih osi - - - - Add new axes to the plot - Dodaj nove osi k izrisu - - - - Remove selected axes - Odstrani izbrane osi - - - - Check it to apply transformations to all axes - Preveri ga, da se preobilkovanja uporabijo za vse osi - - - - Left bound of axes - Leva meja osi - - - - Right bound of axes - Desna meja osi - - - - Bottom bound of axes - Spodnja meja osi - - - - Top bound of axes - Zgornja meja osi - - - - Outward offset of X axis - Zunanji odmik osi X - - - - Outward offset of Y axis - Zunanji odmik osi Y - - - - X axis scale autoselection - Samodejna izbira merila osi X - - - - Y axis scale autoselection - Samodejna izbira merila osi Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - Knjižnica matplotlib ni bila najdena, tako da modula za izris ni mogoče naložiti - - - - matplotlib not found, Plot module will be disabled - Knjižnica matplotlib ni bila najdena, tako da bo modul za izris onemogočen - - - - Plot document must be selected in order to save it - Dokument izrisa mora biti izbran, da ga lahko shranite - - - - Axes 0 can not be deleted - Osi 0 ni mogoče izbrisati - - - - The grid must be activated on top of a plot document - Mreža mora biti aktivirana na vrhu dokumenta za izris - - - - The legend must be activated on top of a plot document - Legenda mora biti aktivirana na vrhu dokumenta za izris - - - - plot_labels - - - Set labels - Nastavi oznake - - - - Active axes - Dejavne osi - - - - Title - Naziv - - - - X label - Oznaka X - - - - Y label - Oznaka Y - - - - Index of the active axes - Kazalo dejavnih osi - - - - Title (associated to active axes) - Naziv (povezan z dejavnima osema) - - - - Title font size - Velikost pisave naziva - - - - X axis title - Naziv osi X - - - - X axis title font size - Velikost pisave naziva osi X - - - - Y axis title - Naziv osi Y - - - - Y axis title font size - Velikost pisave naziva osi Y - - - - plot_positions - - - Set positions and sizes - Nastavi položaje in velikosti - - - - Position - Position - - - - Size - Velikost - - - - X item position - Položaj predmeta X - - - - Y item position - Položaj predmeta Y - - - - Item size - Velikost predmeta - - - - List of modifiable items - Seznam spremenljivih predmetov - - - - plot_save - - - Save figure - Shrani sliko - - - - Inches - Palci - - - - Dots per Inch - Pik na palec - - - - Output image file path - Pot datoteke izhodne slike - - - - Show a file selection dialog - Prikaži pogovorno okno za izbiro datoteke - - - - X image size - Velikost slike X - - - - Y image size - Velikost slike Y - - - - Dots per point, with size will define output image resolution - Pik na točko; z velikostjo bo določena ločljivost izhodne slike - - - - plot_series - - - No label - Brez oznake - - - - Line style - Slog črt - - - - Marker - Oznaka - - - - Configure series - Nastavi serijo - - - - List of available series - Seznam razpoložljivih serij - - - - Line title - Naziv črte - - - - Marker style - Slog oznake - - - - Line width - Širina črte - - - - Marker size - Velikost oznake - - - - Line and marker color - Barva črt in oznake - - - - Remove series - Odstrani serijo - - - - If checked, series will not be considered for legend - Če je označeno, serija ne bo upoštevana za legendo - - - - Removes this series - Odstrani to serijo - - - diff --git a/src/Mod/Plot/resources/translations/Plot_sr.qm b/src/Mod/Plot/resources/translations/Plot_sr.qm deleted file mode 100644 index e4af87e959..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_sr.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_sr.ts b/src/Mod/Plot/resources/translations/Plot_sr.ts deleted file mode 100644 index d287cbdecb..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_sr.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Алати за уређивање дијаграма - - - - Plot - Дијаграм - - - - Plot_Axes - - - Configure axes - Конфигуриши оcе - - - - Configure the axes parameters - Конфигуриши параметре оcа - - - - Plot_Grid - - - Show/Hide grid - Прикажи/Cакриј координатну мрежу - - - - Show/Hide grid on selected plot - Прикажи/Cакриј координатну мрежу на одабраном диаграму - - - - Plot_Labels - - - Set labels - Пcтави ознаке - - - - Set title and axes labels - Поcтави наcлов и ознаке оcа - - - - Plot_Legend - - - Show/Hide legend - Прикажи/Cакриј легенду - - - - Show/Hide legend on selected plot - Прикажи/Cакриј легенду на одабраном графикону - - - - Plot_Positions - - - Set positions and sizes - Поcтави позиције и величине - - - - Set labels and legend positions and sizes - Поcтави позицију и величину ознака и легенде - - - - Plot_SaveFig - - - Save plot - Cачувај диаграм - - - - Save the plot as an image file - Cачувај диаграм као cлику - - - - Plot_Series - - - Configure series - Конфигуриши cерије - - - - Configure series drawing style and label - Конфигуриши cтил цртежа и ознаке cерија - - - - plot_axes - - - Configure axes - Конфигуриши оcе - - - - Active axes - Активне оcе - - - - Apply to all axes - Примени на cве оcе - - - - Dimensions - Димензије - - - - X axis position - Позиција X оcе - - - - Y axis position - Позиција Y оcе - - - - Scales - Cкале - - - - X auto - X аутоматски - - - - Y auto - Y аутоматски - - - - Index of the active axes - Индекc активних оcа - - - - Add new axes to the plot - Додај нову оcу у графикон - - - - Remove selected axes - Уклони одабране оcе - - - - Check it to apply transformations to all axes - Штиклирај да примениш транcформације на cве оcе - - - - Left bound of axes - Лева граница оcа - - - - Right bound of axes - Деcна граница оcа - - - - Bottom bound of axes - Доња граница оcа - - - - Top bound of axes - Горња граница оcа - - - - Outward offset of X axis - Cпољни одмак X оcе - - - - Outward offset of Y axis - Cпољни одмак Y оcе - - - - X axis scale autoselection - Аутоматcки избор cкале X оcе - - - - Y axis scale autoselection - Аутоматcки избор cкале Y оcе - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib није пронађен, па Диаграм модул није могуће учитати - - - - matplotlib not found, Plot module will be disabled - matplotlib није пронађен, Диаграм модул ће бити иcкључен - - - - Plot document must be selected in order to save it - Диаграм документ мора бити одабран да би га cачували - - - - Axes 0 can not be deleted - Оcа 0 cе не може обриcати - - - - The grid must be activated on top of a plot document - Координатни cиcтем мора бити активиран на врху дијаграма - - - - The legend must be activated on top of a plot document - Легенда мора бити активирана изнад дијаграма - - - - plot_labels - - - Set labels - Пcтави ознаке - - - - Active axes - Активне оcе - - - - Title - Наслов - - - - X label - X ознака - - - - Y label - Y ознака - - - - Index of the active axes - Индекc активних оcа - - - - Title (associated to active axes) - Наcлов (додељен активној оcи) - - - - Title font size - Величина фонта за наслов - - - - X axis title - Наcлов X оcе - - - - X axis title font size - Величина фонта наcлова X оcе - - - - Y axis title - Наcлов Y оcе - - - - Y axis title font size - Величина фонта наcлова Y оcе - - - - plot_positions - - - Set positions and sizes - Поcтави позиције и величине - - - - Position - Position - - - - Size - Величина - - - - X item position - Позиција X cтавке - - - - Y item position - Позиција Y cтавке - - - - Item size - Величина cтавке - - - - List of modifiable items - Лиcта променљивих cтавки - - - - plot_save - - - Save figure - Cачувај фигуру - - - - Inches - Инча - - - - Dots per Inch - Тачака по инчу - - - - Output image file path - Пут до одредишне датотеке cлике - - - - Show a file selection dialog - Прикажи дијалог избора датотеке - - - - X image size - Величина X cлике - - - - Y image size - Величина Y cлике - - - - Dots per point, with size will define output image resolution - Тачке по јединици површине, cа величином ће cе дефиниcати резолуција извезене cлике - - - - plot_series - - - No label - Нема ознака - - - - Line style - Cтил линије - - - - Marker - Маркер - - - - Configure series - Конфигуриши cерије - - - - List of available series - Лиcта раcположивих cерија - - - - Line title - Наcлов линије - - - - Marker style - Cтил маркера - - - - Line width - Ширина линије - - - - Marker size - Величина маркера - - - - Line and marker color - Боја линије и маркера - - - - Remove series - Уклони cерије - - - - If checked, series will not be considered for legend - Ако је означено, серија се неће сматрати легендом - - - - Removes this series - Уклања ову cерију - - - diff --git a/src/Mod/Plot/resources/translations/Plot_sv-SE.qm b/src/Mod/Plot/resources/translations/Plot_sv-SE.qm deleted file mode 100644 index a62e281f8a..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_sv-SE.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_sv-SE.ts b/src/Mod/Plot/resources/translations/Plot_sv-SE.ts deleted file mode 100644 index 98ec3db0f4..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_sv-SE.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Verktyg för utskriftsredigering - - - - Plot - Skriv ut - - - - Plot_Axes - - - Configure axes - Konfigurera axlar - - - - Configure the axes parameters - Konfigurera axelparametrarna - - - - Plot_Grid - - - Show/Hide grid - Visa/Dölj nät - - - - Show/Hide grid on selected plot - Visa/Dölj axlar på vald utskrift - - - - Plot_Labels - - - Set labels - Ange etiketter - - - - Set title and axes labels - Ange titel och etiketter på axlar - - - - Plot_Legend - - - Show/Hide legend - Visa/Dölj legend - - - - Show/Hide legend on selected plot - Visa/Dölj legend på vald utskrift - - - - Plot_Positions - - - Set positions and sizes - Ställ in positioner och storlekar - - - - Set labels and legend positions and sizes - Ange positioner och storlekar för etiketter och legend - - - - Plot_SaveFig - - - Save plot - Spara utskrift - - - - Save the plot as an image file - Spara plotten som bildfil - - - - Plot_Series - - - Configure series - Konfigurera serien - - - - Configure series drawing style and label - Konfigurera seriens utseende och etikett - - - - plot_axes - - - Configure axes - Konfigurera axlar - - - - Active axes - Aktiva axlar - - - - Apply to all axes - Verkställ för alla axlar - - - - Dimensions - Dimensioner - - - - X axis position - X axel position - - - - Y axis position - Y axel position - - - - Scales - Skalor - - - - X auto - X auto - - - - Y auto - Y auto - - - - Index of the active axes - Index för aktiva axlar - - - - Add new axes to the plot - Lägg till nya axlar för utskrift - - - - Remove selected axes - Ta bort valda axlar - - - - Check it to apply transformations to all axes - Markera för att applicera transform på alla axlar - - - - Left bound of axes - Vänster gräns för axlar - - - - Right bound of axes - Höger gräns för axlar - - - - Bottom bound of axes - Nedre gräns för axlar - - - - Top bound of axes - Övre gräns för axlar - - - - Outward offset of X axis - Yttre förskjutning av X-axeln - - - - Outward offset of Y axis - Yttre förskjutning av X-axeln - - - - X axis scale autoselection - X axel autoskala - - - - Y axis scale autoselection - Y axel autoskala - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib hittades inte, så Plot-modulen kan inte läsas in - - - - matplotlib not found, Plot module will be disabled - matplotlib hittades inte, Plot-modul kommer inaktiveras - - - - Plot document must be selected in order to save it - Plotdokument måste väljas för att spara det - - - - Axes 0 can not be deleted - Axel 0 kan inte tas bort - - - - The grid must be activated on top of a plot document - Rutnätet måste vara aktiverat ovanpå ett plot-dokument - - - - The legend must be activated on top of a plot document - Förklaringen måste vara aktiverad ovanpå ett plot-dokument - - - - plot_labels - - - Set labels - Ange etiketter - - - - Active axes - Aktiva axlar - - - - Title - Titel - - - - X label - X etikett - - - - Y label - Y etikett - - - - Index of the active axes - Index för aktiva axlar - - - - Title (associated to active axes) - Titel (associerad med aktiva axlar) - - - - Title font size - Titel typsnitt storlek - - - - X axis title - X axel etikett - - - - X axis title font size - X axel titel typsnitt storlek - - - - Y axis title - Y axel titel - - - - Y axis title font size - Y axel titel typsnitt storlek - - - - plot_positions - - - Set positions and sizes - Ställ in positioner och storlekar - - - - Position - Position - - - - Size - Storlek - - - - X item position - X objekt placering - - - - Y item position - Y objekt placering - - - - Item size - Objektstorlek - - - - List of modifiable items - Lista över ändringsbara objekt - - - - plot_save - - - Save figure - Spara figur - - - - Inches - Tum - - - - Dots per Inch - Punkter per tum - - - - Output image file path - Filsökväg till exporterad bild - - - - Show a file selection dialog - Visa fildialog - - - - X image size - BIldstorlek (X) - - - - Y image size - BIldstorlek (Y) - - - - Dots per point, with size will define output image resolution - Prickar per punkt, med storlek kommer att definiera utskriftens bildupplösning - - - - plot_series - - - No label - Ingen etikett - - - - Line style - Linje stil - - - - Marker - Markör - - - - Configure series - Konfigurera serien - - - - List of available series - Lista av tillgängliga serier - - - - Line title - Linje titel - - - - Marker style - Markör stil - - - - Line width - Linjebredd - - - - Marker size - Markör storlek - - - - Line and marker color - Linje- och markörfärg - - - - Remove series - Radera serie - - - - If checked, series will not be considered for legend - Om markerad kommer serien inte att användas för förklaring - - - - Removes this series - Tar bort denna serie - - - diff --git a/src/Mod/Plot/resources/translations/Plot_tr.qm b/src/Mod/Plot/resources/translations/Plot_tr.qm deleted file mode 100644 index 909d4625aa..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_tr.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_tr.ts b/src/Mod/Plot/resources/translations/Plot_tr.ts deleted file mode 100644 index f26ab053cd..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_tr.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Arsa düzenleme araçları - - - - Plot - Plot - - - - Plot_Axes - - - Configure axes - Eksenleri yapılandırmak - - - - Configure the axes parameters - Eksen parametrelerini yapılandırma - - - - Plot_Grid - - - Show/Hide grid - kılavuz Göster/gizle - - - - Show/Hide grid on selected plot - Seçili arsa üzerinde ızgarayı göster / gizle - - - - Plot_Labels - - - Set labels - Etiketi ayarla - - - - Set title and axes labels - Başlık ve eksen etiketlerini ayarlama - - - - Plot_Legend - - - Show/Hide legend - Efsaneyi Göster / Gizle - - - - Show/Hide legend on selected plot - Seçili arsa üzerinde gösterge göster / gizle - - - - Plot_Positions - - - Set positions and sizes - Konumları ve boyutlarını ayarlama - - - - Set labels and legend positions and sizes - Etiketleri ve açıklama konumlarını ve boyutlarını ayarlama - - - - Plot_SaveFig - - - Save plot - Komutu kaydet - - - - Save the plot as an image file - Arsa dosyasını resim dosyası olarak kaydedin - - - - Plot_Series - - - Configure series - Diziyi yapılandır - - - - Configure series drawing style and label - Seri çizim stilini ve etiketini yapılandır - - - - plot_axes - - - Configure axes - Eksenleri yapılandırmak - - - - Active axes - Aktif eksenler - - - - Apply to all axes - Tüm eksenlere uygula - - - - Dimensions - Ebatlar - - - - X axis position - X ekseni konumu - - - - Y axis position - Y ekseni konumu - - - - Scales - Ölçekler - - - - X auto - X Otomatik - - - - Y auto - Y Otomatik - - - - Index of the active axes - Etkin eksenler indeksi - - - - Add new axes to the plot - Arsaya yeni eksenler ekleyin - - - - Remove selected axes - Seçilen ekseni kaldır - - - - Check it to apply transformations to all axes - Tüm eksenlere dönüşümler uygulamak için bunu kontrol edin - - - - Left bound of axes - Eksenlerin sol sınırı - - - - Right bound of axes - Eksenlerin sağ sınırı - - - - Bottom bound of axes - Eksenlerin alt sınırı - - - - Top bound of axes - Eksenlerin üst sınırı - - - - Outward offset of X axis - X ekseninin dışa kaydırması - - - - Outward offset of Y axis - Y ekseninin dışa kaydırmas - - - - X axis scale autoselection - X ekseni ölçeği otomatik seçimi - - - - Y axis scale autoselection - Y eksen ölçeğinde otomatik seçim - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib bulunamadı, bu nedenle Arsa modülü yüklenemedi - - - - matplotlib not found, Plot module will be disabled - matplotlib bulunamadı, Arsa modülü devre dışı bırakılacak - - - - Plot document must be selected in order to save it - Plot belgesi kaydetmek için seçilmelidir - - - - Axes 0 can not be deleted - Eksen 0 silinemez - - - - The grid must be activated on top of a plot document - Izgara bir arsa belgesinin üstünde etkinleştirilmelidir - - - - The legend must be activated on top of a plot document - Efsane, arsa belgesinin üstünde etkinleştirilmelidir - - - - plot_labels - - - Set labels - Etiketi ayarla - - - - Active axes - Aktif eksenler - - - - Title - Başlık - - - - X label - X etiketi - - - - Y label - Y etiketi - - - - Index of the active axes - Etkin eksenler indeksi - - - - Title (associated to active axes) - Başlık (etkin eksenlerle ilişkili) - - - - Title font size - Başlık yazı tipi boyutu - - - - X axis title - X ekseni başlığı - - - - X axis title font size - X ekseni başlık yazı tipi boyutu - - - - Y axis title - Y ekseni başlığı - - - - Y axis title font size - Y ekseni başlık yazı tipi boyutu - - - - plot_positions - - - Set positions and sizes - Konumları ve boyutlarını ayarlama - - - - Position - Position - - - - Size - Boyut - - - - X item position - X öğe konumu - - - - Y item position - Y öğe konumu - - - - Item size - Öğe boyutu - - - - List of modifiable items - Değiştirilebilir öğelerin listesi - - - - plot_save - - - Save figure - Rakam kaydet - - - - Inches - İnç - - - - Dots per Inch - İnç başına Nokta Sayısı - - - - Output image file path - Çıktı görüntü dosyası yolu - - - - Show a file selection dialog - Dosya seçimi iletişim kutusunu göster - - - - X image size - X görüntü boyutu - - - - Y image size - Y görüntü boyutu - - - - Dots per point, with size will define output image resolution - Nokta başına nokta sayısı, boyutu ile çıktı görüntü çözünürlüğünü tanımlar - - - - plot_series - - - No label - Etiket yok - - - - Line style - Çizgi stili - - - - Marker - İşaretleyici - - - - Configure series - Diziyi yapılandır - - - - List of available series - Mevcut serilerin listesi - - - - Line title - Satır başlığı - - - - Marker style - İşaretçi stili - - - - Line width - Çizgi Kalınlığı - - - - Marker size - İşaretci boyutu - - - - Line and marker color - Çizgi ve marker renk - - - - Remove series - Seriyi kaldır - - - - If checked, series will not be considered for legend - İşaretlenirse, efsane için seri kabul edilmez - - - - Removes this series - Bu diziyi kaldırır - - - diff --git a/src/Mod/Plot/resources/translations/Plot_uk.qm b/src/Mod/Plot/resources/translations/Plot_uk.qm deleted file mode 100644 index 9f89aefb20..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_uk.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_uk.ts b/src/Mod/Plot/resources/translations/Plot_uk.ts deleted file mode 100644 index 402dc2c5ba..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_uk.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Інструменти для роботи з діаграмами - - - - Plot - Діаграма - - - - Plot_Axes - - - Configure axes - Налаштування осей - - - - Configure the axes parameters - Налаштування параметрів осей - - - - Plot_Grid - - - Show/Hide grid - Показати/приховати сітку - - - - Show/Hide grid on selected plot - Показати/приховати сітку на обраній діаграмі - - - - Plot_Labels - - - Set labels - Вказати бирки - - - - Set title and axes labels - Вказати заголовок та бирки для осей - - - - Plot_Legend - - - Show/Hide legend - Показати/приховати легенду - - - - Show/Hide legend on selected plot - Показати/приховати легенду на обраній діаграмі - - - - Plot_Positions - - - Set positions and sizes - Встановити розміщення та розміри - - - - Set labels and legend positions and sizes - Встановити розміщення та розміри для бирок та легенди - - - - Plot_SaveFig - - - Save plot - Зберегти діаграму - - - - Save the plot as an image file - Зберегти діаграму як файл зображення - - - - Plot_Series - - - Configure series - Налаштування серії - - - - Configure series drawing style and label - Налаштування серії, стиль креслення та бирки - - - - plot_axes - - - Configure axes - Налаштування осей - - - - Active axes - Активні осі - - - - Apply to all axes - Застосувати до всіх осей - - - - Dimensions - Розміри - - - - X axis position - Положення осі X - - - - Y axis position - Положення осі Y - - - - Scales - Шкали - - - - X auto - X авто - - - - Y auto - Y авто - - - - Index of the active axes - Індекс активних осей - - - - Add new axes to the plot - Додати нові осі - - - - Remove selected axes - Вилучити обрані осі - - - - Check it to apply transformations to all axes - Позначте це, щоб застосувати перетворення до всіх осей - - - - Left bound of axes - Ліва межа для осей - - - - Right bound of axes - Права межа для осей - - - - Bottom bound of axes - Нижня межа для осей - - - - Top bound of axes - Верхня межа для осей - - - - Outward offset of X axis - Зовнішнє зміщення осі X - - - - Outward offset of Y axis - Зовнішнє зміщення осі Y - - - - X axis scale autoselection - Автовибір масштабу осі Х - - - - Y axis scale autoselection - Автовибір масштабу осі Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - matplotlib не знайдено, тому модуль Діаграма не можливо завантажити - - - - matplotlib not found, Plot module will be disabled - matplotlib не знайдено, модуль Діаграма буде вимкнено - - - - Plot document must be selected in order to save it - Потрібно обрати документ Діаграми для збереження - - - - Axes 0 can not be deleted - Вісь 0 не може бути вилученою - - - - The grid must be activated on top of a plot document - Сітка має бути активована поверх діаграми - - - - The legend must be activated on top of a plot document - Опис позначок має бути активований поверх діаграми - - - - plot_labels - - - Set labels - Вказати бирки - - - - Active axes - Активні осі - - - - Title - Назва - - - - X label - X бирка - - - - Y label - Y бирка - - - - Index of the active axes - Індекс активних осей - - - - Title (associated to active axes) - Назва (пов'язана з активною віссю) - - - - Title font size - Розмір шрифту для назви - - - - X axis title - Назва осі X - - - - X axis title font size - Розмір шрифту для назви осі X - - - - Y axis title - Назва осі Y - - - - Y axis title font size - Розмір шрифту для назви осі Y - - - - plot_positions - - - Set positions and sizes - Встановити розміщення та розміри - - - - Position - Позиція - - - - Size - Розмір - - - - X item position - Положення X елемента - - - - Y item position - Положення Y елемента - - - - Item size - Розмір елемента - - - - List of modifiable items - Список елементів, які можливо змінювати - - - - plot_save - - - Save figure - Зберегти фігуру - - - - Inches - Дюйми - - - - Dots per Inch - Точок на дюйм - - - - Output image file path - Шлях до вихідного зображення - - - - Show a file selection dialog - Показати діалог вибору файлів - - - - X image size - X розмір зображення - - - - Y image size - Y розмір зображення - - - - Dots per point, with size will define output image resolution - Крапок на одиницю, з розміром буде визначати розширення вихідного зображення - - - - plot_series - - - No label - Без бирки - - - - Line style - Стиль лінії - - - - Marker - Позначка - - - - Configure series - Налаштування серії - - - - List of available series - Список доступних серій - - - - Line title - Назва лінії - - - - Marker style - Стиль позначки - - - - Line width - Ширина лінії - - - - Marker size - Розмір позначки - - - - Line and marker color - Колір лінії та позначки - - - - Remove series - Видалити послідовність - - - - If checked, series will not be considered for legend - Якщо позначено, то послідовність не буде використовуватися для напису - - - - Removes this series - Вилучити цю послідовність - - - diff --git a/src/Mod/Plot/resources/translations/Plot_val-ES.qm b/src/Mod/Plot/resources/translations/Plot_val-ES.qm deleted file mode 100644 index 803cdb532a..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_val-ES.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_val-ES.ts b/src/Mod/Plot/resources/translations/Plot_val-ES.ts deleted file mode 100644 index 01608e17ca..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_val-ES.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Eines d'edició de gràfiques - - - - Plot - Gràfica - - - - Plot_Axes - - - Configure axes - Configura els eixos - - - - Configure the axes parameters - Configura els paràmetres d'eixos - - - - Plot_Grid - - - Show/Hide grid - Mostra o amaga la quadrícula - - - - Show/Hide grid on selected plot - Mostra o amaga la quadrícula de la gràfica seleccionada - - - - Plot_Labels - - - Set labels - Defineix les etiquetes - - - - Set title and axes labels - Defineix les etiquetes de títol i eixos - - - - Plot_Legend - - - Show/Hide legend - Mostra o amaga la llegenda - - - - Show/Hide legend on selected plot - Mostra o amaga la llegenda sobre la gràfica seleccionada - - - - Plot_Positions - - - Set positions and sizes - Defineix mides i posicions - - - - Set labels and legend positions and sizes - Defineix etiquetes i posicions de llegenda i mides - - - - Plot_SaveFig - - - Save plot - Guarda la gràfica - - - - Save the plot as an image file - Guarda la gràfica com a fitxer d'imatge - - - - Plot_Series - - - Configure series - Configura la sèrie - - - - Configure series drawing style and label - Configura l'estil de dibuix i l'etiqueta - - - - plot_axes - - - Configure axes - Configura els eixos - - - - Active axes - Eixos actius - - - - Apply to all axes - Aplica a tots els eixos - - - - Dimensions - Dimensions - - - - X axis position - posició de l'eix X - - - - Y axis position - posició de l'eix Y - - - - Scales - Escales - - - - X auto - X automàtica - - - - Y auto - Y automàtica - - - - Index of the active axes - Índex dels eixos actius - - - - Add new axes to the plot - Afig nous eixos a la gràfica - - - - Remove selected axes - Elimina els eixos seleccionats - - - - Check it to apply transformations to all axes - Marqueu-ho per a aplicar les transformacions a tots els eixos - - - - Left bound of axes - Límit esquerre dels eixos - - - - Right bound of axes - Límit dret dels eixos - - - - Bottom bound of axes - Límit inferior dels eixos - - - - Top bound of axes - Límit superior dels eixos - - - - Outward offset of X axis - Desplaçament cap a fora de l'eix X - - - - Outward offset of Y axis - Desplaçament cap a fora de l'eix Y - - - - X axis scale autoselection - Selecció automàtica de l'escala de l'eix X - - - - Y axis scale autoselection - Selecció automàtica de l'escala de l'eix Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - No s'ha trobat matplotlib, així que no es pot carregar mòdul Gràfica - - - - matplotlib not found, Plot module will be disabled - No s'ha trobat matplotlib, el mòdul Gràfica s'inhabilitarà - - - - Plot document must be selected in order to save it - Cal seleccionar una gràfica per tal de guardar-la - - - - Axes 0 can not be deleted - Els eixos 0 no es poden suprimir - - - - The grid must be activated on top of a plot document - La quadrícula ha d'estar activada per damunt d'un document de gràfica - - - - The legend must be activated on top of a plot document - La llegenda ha d'estar activada per damunt d'un document de gràfica - - - - plot_labels - - - Set labels - Defineix les etiquetes - - - - Active axes - Eixos actius - - - - Title - Títol - - - - X label - Etiqueta de l'eix X - - - - Y label - Etiqueta de l'eix Y - - - - Index of the active axes - Índex dels eixos actius - - - - Title (associated to active axes) - Títol (associat als eixos actius) - - - - Title font size - Mida de la lletra del títol - - - - X axis title - Títol de l'eix X - - - - X axis title font size - Mida de la lletra del títol de l'eix X - - - - Y axis title - Títol de l'eix Y - - - - Y axis title font size - Mida de la lletra del títol de l'eix Y - - - - plot_positions - - - Set positions and sizes - Defineix mides i posicions - - - - Position - Position - - - - Size - Mida - - - - X item position - Posició de l'element en X - - - - Y item position - Posició de l'element en Y - - - - Item size - Mida de l'element - - - - List of modifiable items - Llista dels elements modificables - - - - plot_save - - - Save figure - Guarda la figura - - - - Inches - Polzades - - - - Dots per Inch - Punts per polzada - - - - Output image file path - Camí del fitxer d'imatge d'eixida - - - - Show a file selection dialog - Mostra un diàleg de selecció de fitxers - - - - X image size - Mida de la imatge en X - - - - Y image size - Mida de la imatge en Y - - - - Dots per point, with size will define output image resolution - Punts per cada punt, amb mida definirà la resolució d'imatge d'eixida - - - - plot_series - - - No label - Sense etiqueta - - - - Line style - Estil de línia - - - - Marker - Marcador - - - - Configure series - Configura la sèrie - - - - List of available series - Llista de les sèries disponibles - - - - Line title - Títol de línia - - - - Marker style - Estil de marcador - - - - Line width - Amplària de línia - - - - Marker size - Mida del marcador - - - - Line and marker color - Color de línia i marcador - - - - Remove series - Suprimeix la sèrie - - - - If checked, series will not be considered for legend - Si està marcada, la sèrie no es tindrà en compte per a la llegenda - - - - Removes this series - Suprimeix aquesta sèrie - - - diff --git a/src/Mod/Plot/resources/translations/Plot_vi.qm b/src/Mod/Plot/resources/translations/Plot_vi.qm deleted file mode 100644 index e9908496b5..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_vi.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_vi.ts b/src/Mod/Plot/resources/translations/Plot_vi.ts deleted file mode 100644 index be0fc88291..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_vi.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - Các công cụ chỉnh sửa Plot - - - - Plot - Plot - - - - Plot_Axes - - - Configure axes - Định hình các trục - - - - Configure the axes parameters - Định hình bán kính trục - - - - Plot_Grid - - - Show/Hide grid - Hiện/Ẩn hệ thống ô lưới - - - - Show/Hide grid on selected plot - Hiện/Ẩn hệ thống ô lưới trong khu vực plot đã chọn - - - - Plot_Labels - - - Set labels - Đặt nhãn - - - - Set title and axes labels - Đặt tiêu đề và nhãn các trục - - - - Plot_Legend - - - Show/Hide legend - Hiện/Ẩn ghi chú - - - - Show/Hide legend on selected plot - Hiện/Ẩn ghi chú trong khu vực plot đã chọn - - - - Plot_Positions - - - Set positions and sizes - Chọn vị trí và kích cỡ - - - - Set labels and legend positions and sizes - Chọn nhãn, vị trí và kích cỡ của ghi chú - - - - Plot_SaveFig - - - Save plot - Lưu plot - - - - Save the plot as an image file - Lưu plot thành một tệp ảnh - - - - Plot_Series - - - Configure series - Định hình chuỗi - - - - Configure series drawing style and label - Định hình chuỗi kiểu bản vẽ và nhãn - - - - plot_axes - - - Configure axes - Định hình các trục - - - - Active axes - Các trục hiện hành - - - - Apply to all axes - Áp dụng cho tất cả các trục - - - - Dimensions - Kích thước - - - - X axis position - Vị trí trục X - - - - Y axis position - Vị trí trục Y - - - - Scales - Tỷ lệ - - - - X auto - X tự động - - - - Y auto - Y tự động - - - - Index of the active axes - Đầu vào của các trục hiện hành - - - - Add new axes to the plot - Thêm các trục mới vào plot - - - - Remove selected axes - Xóa bỏ các trục đã chọn - - - - Check it to apply transformations to all axes - Kiểm tra nó để áp dụng biến đổi cho tất cả các trục - - - - Left bound of axes - Giới hạn trái của các trục - - - - Right bound of axes - Giới hạn phải của các trục - - - - Bottom bound of axes - Giới hạn dưới của các trục - - - - Top bound of axes - Giới hạn dưới của các trục - - - - Outward offset of X axis - Offset bên ngoài cho trục X - - - - Outward offset of Y axis - Offset bên ngoài cho trục Y - - - - X axis scale autoselection - Tự động chọn tỷ lệ trục X - - - - Y axis scale autoselection - Tự động chọn tỷ lệ trục Y - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - không tìm thấy thư viện Matplotlib, do đó mô-đun biểu đồ không tải được - - - - matplotlib not found, Plot module will be disabled - không tìm thấy thư viện Matplotlib, do đó mô-đun biểu đồ sẽ bị vô hiệu hóa - - - - Plot document must be selected in order to save it - Tài liệu plot phải được chọn để lưu nó - - - - Axes 0 can not be deleted - Không thể xóa các trục 0 - - - - The grid must be activated on top of a plot document - Lưới phải được kích hoạt trên đầu trang của một tài liệu plot - - - - The legend must be activated on top of a plot document - Chú giải phải được kích hoạt trên đầu trang của một tài liệu plot - - - - plot_labels - - - Set labels - Đặt nhãn - - - - Active axes - Các trục hiện hành - - - - Title - Tiêu đề - - - - X label - Nhãn X - - - - Y label - Nhãn Y - - - - Index of the active axes - Đầu vào của các trục hiện hành - - - - Title (associated to active axes) - Tiêu đề (liên quan đến trục hoạt động) - - - - Title font size - Kích thước phông chữ tiêu đề - - - - X axis title - Tiêu đề trục X - - - - X axis title font size - Kích thước phông chữ tiêu đề trục X - - - - Y axis title - Tiêu đề trục Y - - - - Y axis title font size - Kích thước phông chữ tiêu đề trục Y - - - - plot_positions - - - Set positions and sizes - Chọn vị trí và kích cỡ - - - - Position - Position - - - - Size - Kích cỡ - - - - X item position - Vị trí mục X - - - - Y item position - Vị trí mục Y - - - - Item size - Kích thước mục - - - - List of modifiable items - Danh sách các mục có thể sửa đổi - - - - plot_save - - - Save figure - Lưu hình - - - - Inches - Inches - - - - Dots per Inch - Số điểm trên mỗi inch (Dpi) - - - - Output image file path - Đường dẫn tệp hình ảnh đầu ra - - - - Show a file selection dialog - Hiển thị hộp thoại chọn tệp - - - - X image size - Kích thước hình ảnh X - - - - Y image size - Kích thước hình ảnh Y - - - - Dots per point, with size will define output image resolution - Số điểm trên mỗi inch, cùng với kích thước sẽ xác định độ phân giải hình ảnh đầu ra - - - - plot_series - - - No label - Không có nhãn - - - - Line style - Kiểu đường - - - - Marker - Điểm đánh dấu - - - - Configure series - Định hình chuỗi - - - - List of available series - Danh sách các chuỗi có sẵn - - - - Line title - Tiêu đề đường - - - - Marker style - Kiểu đánh dấu - - - - Line width - Chiều rộng đường vẽ - - - - Marker size - Kích thước điểm đánh dấu - - - - Line and marker color - Màu đường vẽ và điểm đánh dấu - - - - Remove series - Xóa chuỗi - - - - If checked, series will not be considered for legend - Nếu chọn ô này, chuỗi sẽ không được xem xét cho chú giải - - - - Removes this series - Xóa chuỗi này - - - diff --git a/src/Mod/Plot/resources/translations/Plot_zh-CN.qm b/src/Mod/Plot/resources/translations/Plot_zh-CN.qm deleted file mode 100644 index ca0a7160fe..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_zh-CN.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_zh-CN.ts b/src/Mod/Plot/resources/translations/Plot_zh-CN.ts deleted file mode 100644 index 871b125dd1..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_zh-CN.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - 图表编辑工具 - - - - Plot - 图表 - - - - Plot_Axes - - - Configure axes - 配置坐标轴 - - - - Configure the axes parameters - 设置坐标轴参数 - - - - Plot_Grid - - - Show/Hide grid - 显示/隐藏网格 - - - - Show/Hide grid on selected plot - 在选定图表上显示/隐藏网格 - - - - Plot_Labels - - - Set labels - 设置标签 - - - - Set title and axes labels - 设置标题和坐标轴标签 - - - - Plot_Legend - - - Show/Hide legend - 显示/隐藏图例 - - - - Show/Hide legend on selected plot - 在选定图表上显示/隐藏图例 - - - - Plot_Positions - - - Set positions and sizes - 设置位置和大小 - - - - Set labels and legend positions and sizes - 设置标签和图例位置及大小 - - - - Plot_SaveFig - - - Save plot - 保存图表 - - - - Save the plot as an image file - 保存图表到图像文件 - - - - Plot_Series - - - Configure series - 配置系列 - - - - Configure series drawing style and label - 配置图表样式及标签 - - - - plot_axes - - - Configure axes - 配置坐标轴 - - - - Active axes - 选中的坐标轴 - - - - Apply to all axes - 应用于所有坐标轴 - - - - Dimensions - 尺寸 - - - - X axis position - X轴位置 - - - - Y axis position - Y轴位置 - - - - Scales - 比例 - - - - X auto - X轴自动 - - - - Y auto - Y轴自动 - - - - Index of the active axes - 选中坐标轴索引 - - - - Add new axes to the plot - 向图表添加新坐标轴 - - - - Remove selected axes - 删除所选坐标轴 - - - - Check it to apply transformations to all axes - 选中以对所有坐标轴应用变换 - - - - Left bound of axes - 坐标轴左边界 - - - - Right bound of axes - 坐标轴右边界 - - - - Bottom bound of axes - 坐标轴下边界 - - - - Top bound of axes - 坐标轴上边界 - - - - Outward offset of X axis - X轴外部偏移量 - - - - Outward offset of Y axis - Y轴外部偏移量 - - - - X axis scale autoselection - 自动选择X轴比例 - - - - Y axis scale autoselection - 自动选择Y轴比例 - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - 未找到matplotlib, 因此图表模块未能加载 - - - - matplotlib not found, Plot module will be disabled - 未找到matplotlib, 图表模块将被禁用 - - - - Plot document must be selected in order to save it - 必须选中图表文档以保存 - - - - Axes 0 can not be deleted - 无法删除坐标轴0 - - - - The grid must be activated on top of a plot document - 网格必须于图表文档顶层激活 - - - - The legend must be activated on top of a plot document - 图例必须于图表文档顶层激活 - - - - plot_labels - - - Set labels - 设置标签 - - - - Active axes - 选中的坐标轴 - - - - Title - 标题 - - - - X label - X标签 - - - - Y label - Y标签 - - - - Index of the active axes - 选中坐标轴索引 - - - - Title (associated to active axes) - 标题(与活动轴关联) - - - - Title font size - 标题字体大小 - - - - X axis title - X轴标题 - - - - X axis title font size - X轴标题字体大小 - - - - Y axis title - Y轴标题 - - - - Y axis title font size - Y轴标题字体大小 - - - - plot_positions - - - Set positions and sizes - 设置位置和大小 - - - - Position - 位置 - - - - Size - 大小 - - - - X item position - X轴项目位置 - - - - Y item position - Y轴项目位置 - - - - Item size - 项目大小 - - - - List of modifiable items - 可更改项目的列表 - - - - plot_save - - - Save figure - 保存图表 - - - - Inches - 英寸 - - - - Dots per Inch - 每英寸点数(DPI) - - - - Output image file path - 输出图像文件路径 - - - - Show a file selection dialog - 显示选择文件对话框 - - - - X image size - X向图像大小 - - - - Y image size - Y向图像大小 - - - - Dots per point, with size will define output image resolution - 每点内的点数, 根据尺寸来定义输出影像的解析度 - - - - plot_series - - - No label - 无标签 - - - - Line style - 线条样式 - - - - Marker - 标记 - - - - Configure series - 配置系列 - - - - List of available series - 可用系列列表 - - - - Line title - 直线标题 - - - - Marker style - 标记样式 - - - - Line width - 线宽 - - - - Marker size - 标记大小 - - - - Line and marker color - 直线和标记颜色 - - - - Remove series - 删除系列 - - - - If checked, series will not be considered for legend - 如果选中,系列不会被认作图例 - - - - Removes this series - 删除此系列 - - - diff --git a/src/Mod/Plot/resources/translations/Plot_zh-TW.qm b/src/Mod/Plot/resources/translations/Plot_zh-TW.qm deleted file mode 100644 index 22b4be9bfd..0000000000 Binary files a/src/Mod/Plot/resources/translations/Plot_zh-TW.qm and /dev/null differ diff --git a/src/Mod/Plot/resources/translations/Plot_zh-TW.ts b/src/Mod/Plot/resources/translations/Plot_zh-TW.ts deleted file mode 100644 index 7e5b6c0aa8..0000000000 --- a/src/Mod/Plot/resources/translations/Plot_zh-TW.ts +++ /dev/null @@ -1,461 +0,0 @@ - - - - - Plot - - - Plot edition tools - 製圖編輯工具 - - - - Plot - 製圖 - - - - Plot_Axes - - - Configure axes - 配置軸 - - - - Configure the axes parameters - 設定軸之參數 - - - - Plot_Grid - - - Show/Hide grid - 顯示/隱藏格線 - - - - Show/Hide grid on selected plot - 於所選圖面上顯示/隱藏格線 - - - - Plot_Labels - - - Set labels - 設定標示 - - - - Set title and axes labels - 設定標題和軸標示 - - - - Plot_Legend - - - Show/Hide legend - 顯示/隱藏圖例 - - - - Show/Hide legend on selected plot - 於所選圖面上顯示/隱藏圖例 - - - - Plot_Positions - - - Set positions and sizes - 設定位置和尺寸 - - - - Set labels and legend positions and sizes - 設定標示和圖例之位置和尺寸 - - - - Plot_SaveFig - - - Save plot - 儲存製圖 - - - - Save the plot as an image file - 儲存圖形為影像檔 - - - - Plot_Series - - - Configure series - 配置組 - - - - Configure series drawing style and label - 配置工程圖型式及圖標組 - - - - plot_axes - - - Configure axes - 配置軸 - - - - Active axes - 選用軸 - - - - Apply to all axes - 適用所有軸 - - - - Dimensions - 尺寸 - - - - X axis position - X軸位置 - - - - Y axis position - Y軸位置 - - - - Scales - 刻度 - - - - X auto - X軸自動 - - - - Y auto - Y軸自動 - - - - Index of the active axes - 選用軸之索引 - - - - Add new axes to the plot - 於圖面加入新的軸 - - - - Remove selected axes - 移除所選之軸 - - - - Check it to apply transformations to all axes - 選擇此項可提供所有軸之轉換 - - - - Left bound of axes - 軸之左側範圍 - - - - Right bound of axes - 軸之右側範圍 - - - - Bottom bound of axes - 軸之底部範圍 - - - - Top bound of axes - 軸之上部範圍 - - - - Outward offset of X axis - X軸之外部偏移 - - - - Outward offset of Y axis - Y軸之外部偏移 - - - - X axis scale autoselection - X軸自動縮放 - - - - Y axis scale autoselection - Y軸自動縮放 - - - - plot_console - - - matplotlib not found, so Plot module can not be loaded - 無matplotlib而無法載入製圖模組 - - - - matplotlib not found, Plot module will be disabled - 無matplotlib時製圖模組將無法使用 - - - - Plot document must be selected in order to save it - 為進行儲存必須選擇製圖文件 - - - - Axes 0 can not be deleted - 不能刪除軸 0 - - - - The grid must be activated on top of a plot document - 必須於製圖文件之上方啟動格線 - - - - The legend must be activated on top of a plot document - 必須於製圖文件之上方啟動圖例 - - - - plot_labels - - - Set labels - 設定標示 - - - - Active axes - 選用軸 - - - - Title - 標題 - - - - X label - X軸標示 - - - - Y label - Y軸標示 - - - - Index of the active axes - 選用軸之索引 - - - - Title (associated to active axes) - 標題(與選用軸相關聯) - - - - Title font size - 標題字體尺寸 - - - - X axis title - X軸標題 - - - - X axis title font size - X軸標題字體尺寸 - - - - Y axis title - Y軸標題 - - - - Y axis title font size - Y軸標題字體尺寸 - - - - plot_positions - - - Set positions and sizes - 設定位置和尺寸 - - - - Position - 位置 - - - - Size - 尺寸 - - - - X item position - X項位置 - - - - Y item position - Y項位置 - - - - Item size - 項之尺寸 - - - - List of modifiable items - 可更改項目的清單 - - - - plot_save - - - Save figure - 儲存圖案 - - - - Inches - 英寸 - - - - Dots per Inch - 每英寸點數(DPI) - - - - Output image file path - 輸出圖像檔路徑 - - - - Show a file selection dialog - 顯示檔案選擇對話框 - - - - X image size - X圖尺寸 - - - - Y image size - Y圖尺寸 - - - - Dots per point, with size will define output image resolution - 每點內的點數,具有尺寸可以定義輸出影像之解析度 - - - - plot_series - - - No label - 無標示 - - - - Line style - 線型式 - - - - Marker - 標注 - - - - Configure series - 配置組 - - - - List of available series - 可用系列清單 - - - - Line title - 線標題 - - - - Marker style - 標注型式 - - - - Line width - 線寬 - - - - Marker size - 標注尺寸 - - - - Line and marker color - 線和標注色彩 - - - - Remove series - 刪除系列 - - - - If checked, series will not be considered for legend - 如果已選擇,系列不會被認作圖例 - - - - Removes this series - 移除此系列 - - -