- made the layout combobox current item from Preferences -> General window to reflect the current layout

- remade the POT translate file
- work in progress in translation for Romanian language 44%
- fix for showing tools by activating them from the Menu - final fix.
This commit is contained in:
Marius Stanciu 2019-03-14 01:09:06 +02:00
parent ae0706620e
commit c0d21ee4e0
94 changed files with 29742 additions and 23193 deletions

View File

@ -49,7 +49,7 @@ import tclCommands
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('FlatCAMApp')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -838,7 +838,7 @@ class App(QtCore.QObject):
##### APPLY APP LANGUAGE ###
############################
ret_val = fcTranslate.apply_language('FlatCAMApp')
ret_val = fcTranslate.apply_language('strings')
if ret_val == "no language":
self.inform.emit(_("[ERROR] Could not find the Language files. The App strings are missing."))
@ -1641,7 +1641,13 @@ class App(QtCore.QObject):
if not factory_defaults:
self.save_factory_defaults(silent=False)
# ONLY AT FIRST STARTUP INIT THE GUI LAYOUT TO 'COMPACT'
self.on_layout(index=None, lay='compact')
initial_lay = 'compact'
self.on_layout(index=None, lay=initial_lay)
# Set the combobox in Preferences to the current layout
idx = self.app.ui.general_defaults_form.general_gui_set_group.layout_combo.findText(
initial_lay.capitalize()
)
self.app.ui.general_defaults_form.general_gui_set_group.layout_combo.setCurrentIndex(idx)
factory_file.close()
# and then make the factory_defaults.FlatConfig file read_only os it can't be modified after creation.
@ -3853,7 +3859,7 @@ class App(QtCore.QObject):
filter_group = " G-Code Files (*.nc);; G-Code Files (*.txt);; G-Code Files (*.tap);; G-Code Files (*.cnc);; " \
"All Files (*.*)"
path, _ = QtWidgets.QFileDialog.getOpenFileName(
caption=__('Open file'), directory=self.get_last_folder(), filter=filter_group)
caption=_('Open file'), directory=self.get_last_folder(), filter=filter_group)
if path:
file = QtCore.QFile(path)
if file.open(QtCore.QIODevice.ReadOnly):
@ -7339,10 +7345,9 @@ The normal flow when working in FlatCAM is the following:</span></p>
App.log.debug("Newer version available.")
self.message.emit(
_("Newer Version Available"),
_("There is a newer version of FlatCAM available for download:<br><br><b>%s</b><br>%s" % (
str(data["name"]), str(data["message"]))
),
"info"
_("There is a newer version of FlatCAM available for download:\n\n") +
"<b>%s</b>" % str(data["name"]) + "\n%s" % str(data["message"]),
_("info")
)
def on_zoom_fit(self, event):

View File

@ -31,7 +31,7 @@ from flatcamParsers.ParseFont import *
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('FlatCAMEditor')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext

View File

@ -18,7 +18,7 @@ import itertools
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('FlatCAMObj')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext

View File

@ -21,7 +21,7 @@ from PyQt5.QtCore import Qt
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ObjectCollection')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext

View File

@ -9,6 +9,13 @@ CAD program, and create G-Code for Isolation routing.
=================================================
13.03.2019
- made the layout combobox current item from Preferences -> General window to reflect the current layout
- remade the POT translate file
- work in progress in translation for Romanian language 44%
- fix for showing tools by activating them from the Menu - final fix.
11.03.2019
- changed some icons here and there

View File

@ -67,7 +67,7 @@ log.addHandler(handler)
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('camlib')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext

View File

@ -21,7 +21,7 @@ from FlatCAMEditor import FCShapeTool
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('FlatCAMGUI')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -47,7 +47,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
self.menu = self.menuBar()
### File ###
self.menufile = self.menu.addMenu('&File')
self.menufile = self.menu.addMenu(_('&File'))
self.menufile.setToolTipsVisible(True)
# New Project
@ -351,12 +351,12 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
### Tool ###
# self.menutool = self.menu.addMenu('&Tool')
self.menutool = QtWidgets.QMenu('&Tool')
self.menutool = QtWidgets.QMenu(_('&Tool'))
self.menutoolaction = self.menu.addMenu(self.menutool)
self.menutoolshell = self.menutool.addAction(QtGui.QIcon('share/shell16.png'), _('&Command Line\tS'))
### Help ###
self.menuhelp = self.menu.addMenu('&Help')
self.menuhelp = self.menu.addMenu(_('&Help'))
self.menuhelp_manual = self.menuhelp.addAction(QtGui.QIcon('share/globe16.png'), _('Help\tF1'))
self.menuhelp_home = self.menuhelp.addAction(QtGui.QIcon('share/home16.png'), _('FlatCAM.org'))
self.menuhelp.addSeparator()
@ -685,7 +685,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
### Tool ###
self.tool_tab = QtWidgets.QWidget()
self.tool_tab.setObjectName(_("tool_tab"))
self.tool_tab.setObjectName("tool_tab")
self.tool_tab_layout = QtWidgets.QVBoxLayout(self.tool_tab)
self.tool_tab_layout.setContentsMargins(2, 2, 2, 2)
self.notebook.addTab(self.tool_tab, _("Tool"))
@ -1819,7 +1819,7 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
# Rotate Object by 90 degree CCW
if key == QtCore.Qt.Key_R:
self.app.on_rotate(silent=True, preset=-self.app.defaults['tools_transform_rotate'])
self.app.on_rotate(silent=True, preset=-float(self.app.defaults['tools_transform_rotate']))
return
# Run a Script
@ -3033,10 +3033,16 @@ class GeneralGUISetGroupUI(OptionsGroupUI):
"It is applied immediately.")
)
self.layout_combo = FCComboBox()
self.layout_combo.addItem(_("Choose ..."))
self.layout_combo.addItem(_("Standard"))
self.layout_combo.addItem(_("Compact"))
self.layout_combo.setCurrentIndex(0)
# don't translate the QCombo items as they are used in QSettings and identified by name
self.layout_combo.addItem("Standard")
self.layout_combo.addItem("Compact")
# Set the current index for layout_combo
settings = QSettings("Open Source", "FlatCAM")
if settings.contains("layout"):
layout = settings.value('layout', type=str)
idx = self.layout_combo.findText(layout.capitalize())
self.layout_combo.setCurrentIndex(idx)
# Style selection
self.style_label = QtWidgets.QLabel(_('Style:'))

View File

@ -18,7 +18,7 @@ from flatcamGUI.GUIElements import *
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ObjectUI')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext

View File

@ -13,7 +13,7 @@ import math
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolCalculators')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -248,6 +248,9 @@ class ToolCalculator(FlatCAMTool):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)

View File

@ -6,7 +6,7 @@ from shapely.geometry import box
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolCutOut')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -292,6 +292,9 @@ class CutOut(FlatCAMTool):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)
self.set_tool_ui()

View File

@ -7,7 +7,7 @@ from PyQt5 import QtCore
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolDblSided')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -55,7 +55,7 @@ class DblSidedTool(FlatCAMTool):
"the specified axis. Does not create a new \n"
"object, but modifies it.")
)
self.mirror_gerber_button.setFixedWidth(40)
self.mirror_gerber_button.setFixedWidth(60)
# grid_lay.addRow("Bottom Layer:", self.object_combo)
grid_lay.addWidget(self.botlay_label, 0, 0)
@ -79,7 +79,7 @@ class DblSidedTool(FlatCAMTool):
"the specified axis. Does not create a new \n"
"object, but modifies it.")
)
self.mirror_exc_button.setFixedWidth(40)
self.mirror_exc_button.setFixedWidth(60)
# grid_lay.addRow("Bottom Layer:", self.object_combo)
grid_lay.addWidget(self.excobj_label, 2, 0)
@ -103,7 +103,7 @@ class DblSidedTool(FlatCAMTool):
"the specified axis. Does not create a new \n"
"object, but modifies it.")
)
self.mirror_geo_button.setFixedWidth(40)
self.mirror_geo_button.setFixedWidth(60)
# grid_lay.addRow("Bottom Layer:", self.object_combo)
grid_lay.addWidget(self.geoobj_label, 4, 0)
@ -156,7 +156,7 @@ class DblSidedTool(FlatCAMTool):
"The (x, y) coordinates are captured by pressing SHIFT key\n"
"and left mouse button click on canvas or you can enter the coords manually.")
)
self.add_point_button.setFixedWidth(40)
self.add_point_button.setFixedWidth(60)
grid_lay.addWidget(self.pb_label, 10, 0)
grid_lay.addLayout(self.point_box_container, 11, 0, 1, 3)
@ -207,7 +207,7 @@ class DblSidedTool(FlatCAMTool):
"- press SHIFT key and left mouse clicking on canvas. Then RMB click in the field and click Paste.\n"
"- by entering the coords manually in the format: (x1, y1), (x2, y2), ...")
)
self.add_drill_point_button.setFixedWidth(40)
self.add_drill_point_button.setFixedWidth(60)
grid_lay1.addWidget(self.alignment_holes, 0, 0, 1, 2)
grid_lay1.addWidget(self.add_drill_point_button, 0, 3)
@ -239,14 +239,14 @@ class DblSidedTool(FlatCAMTool):
"specified alignment holes and their mirror\n"
"images.")
)
# self.create_alignment_hole_button.setFixedWidth(40)
# self.create_alignment_hole_button.setFixedWidth(60)
grid_lay2.addWidget(self.create_alignment_hole_button, 1,0, 1, 2)
self.reset_button = QtWidgets.QPushButton(_("Reset"))
self.reset_button.setToolTip(
_("Resets all the fields.")
)
self.reset_button.setFixedWidth(40)
self.reset_button.setFixedWidth(60)
grid_lay2.addWidget(self.reset_button, 1, 2)
self.layout.addStretch()
@ -282,6 +282,9 @@ class DblSidedTool(FlatCAMTool):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)
self.set_tool_ui()

View File

@ -14,7 +14,7 @@ from PyQt5 import QtGui, QtCore, QtWidgets
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolFilm')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -193,6 +193,9 @@ class Film(FlatCAMTool):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)

View File

@ -14,7 +14,7 @@ from PyQt5 import QtGui, QtWidgets
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolImage')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -160,6 +160,9 @@ class ToolImage(FlatCAMTool):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)
self.set_tool_ui()

View File

@ -15,7 +15,7 @@ from math import sqrt
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolMeasurement')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext

View File

@ -15,7 +15,7 @@ from copy import copy
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolMove')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext

View File

@ -14,7 +14,7 @@ import time
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolNonCopperClear')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -272,6 +272,9 @@ class NonCopperClear(FlatCAMTool, Gerber):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)
self.set_tool_ui()

View File

@ -13,7 +13,7 @@ from ObjectCollection import *
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolPaint')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -330,6 +330,9 @@ class ToolPaint(FlatCAMTool, Gerber):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)
self.set_tool_ui()

View File

@ -14,7 +14,7 @@ import time
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolPanelize')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -226,6 +226,9 @@ class Panelize(FlatCAMTool):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)
self.set_tool_ui()

View File

@ -14,7 +14,7 @@ from FlatCAMObj import *
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolProperties')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -80,6 +80,9 @@ class Properties(FlatCAMTool):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)
self.set_tool_ui()

View File

@ -16,7 +16,7 @@ import html
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolShell')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext

View File

@ -27,7 +27,7 @@ from io import StringIO
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolSolderPaste')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -439,6 +439,9 @@ class SolderPaste(FlatCAMTool):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)
self.set_tool_ui()

View File

@ -12,7 +12,7 @@ from FlatCAMObj import *
import gettext
import FlatCAMTranslation as fcTranslate
fcTranslate.apply_language('ToolTransform')
fcTranslate.apply_language('strings')
import builtins
if '_' not in builtins.__dict__:
_ = gettext.gettext
@ -44,7 +44,7 @@ class ToolTransform(FlatCAMTool):
self.transform_lay.addWidget(title_label)
self.empty_label = QtWidgets.QLabel("")
self.empty_label.setFixedWidth(50)
self.empty_label.setFixedWidth(70)
self.empty_label1 = QtWidgets.QLabel("")
self.empty_label1.setFixedWidth(70)
@ -72,10 +72,10 @@ class ToolTransform(FlatCAMTool):
"Positive numbers for CW motion.\n"
"Negative numbers for CCW motion.")
)
self.rotate_label.setFixedWidth(50)
self.rotate_label.setFixedWidth(70)
self.rotate_entry = FCEntry()
# self.rotate_entry.setFixedWidth(60)
# self.rotate_entry.setFixedWidth(70)
self.rotate_entry.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
self.rotate_button = FCButton()
@ -85,7 +85,7 @@ class ToolTransform(FlatCAMTool):
"The point of reference is the middle of\n"
"the bounding box for all selected objects.")
)
self.rotate_button.setFixedWidth(60)
self.rotate_button.setFixedWidth(90)
form_child.addWidget(self.rotate_entry)
form_child.addWidget(self.rotate_button)
@ -109,10 +109,10 @@ class ToolTransform(FlatCAMTool):
_("Angle for Skew action, in degrees.\n"
"Float number between -360 and 359.")
)
self.skewx_label.setFixedWidth(50)
self.skewx_label.setFixedWidth(70)
self.skewx_entry = FCEntry()
self.skewx_entry.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
# self.skewx_entry.setFixedWidth(60)
# self.skewx_entry.setFixedWidth(70)
self.skewx_button = FCButton()
self.skewx_button.set_value(_("Skew X"))
@ -120,17 +120,17 @@ class ToolTransform(FlatCAMTool):
_("Skew/shear the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects."))
self.skewx_button.setFixedWidth(60)
self.skewx_button.setFixedWidth(90)
self.skewy_label = QtWidgets.QLabel(_("Angle Y:"))
self.skewy_label.setToolTip(
_("Angle for Skew action, in degrees.\n"
"Float number between -360 and 359.")
)
self.skewy_label.setFixedWidth(50)
self.skewy_label.setFixedWidth(70)
self.skewy_entry = FCEntry()
self.skewy_entry.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
# self.skewy_entry.setFixedWidth(60)
# self.skewy_entry.setFixedWidth(70)
self.skewy_button = FCButton()
self.skewy_button.set_value(_("Skew Y"))
@ -138,7 +138,7 @@ class ToolTransform(FlatCAMTool):
_("Skew/shear the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects."))
self.skewy_button.setFixedWidth(60)
self.skewy_button.setFixedWidth(90)
form1_child_1.addWidget(self.skewx_entry)
form1_child_1.addWidget(self.skewx_button)
@ -165,10 +165,10 @@ class ToolTransform(FlatCAMTool):
self.scalex_label.setToolTip(
_("Factor for Scale action over X axis.")
)
self.scalex_label.setFixedWidth(50)
self.scalex_label.setFixedWidth(70)
self.scalex_entry = FCEntry()
self.scalex_entry.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
# self.scalex_entry.setFixedWidth(60)
# self.scalex_entry.setFixedWidth(70)
self.scalex_button = FCButton()
self.scalex_button.set_value(_("Scale X"))
@ -176,16 +176,16 @@ class ToolTransform(FlatCAMTool):
_("Scale the selected object(s).\n"
"The point of reference depends on \n"
"the Scale reference checkbox state."))
self.scalex_button.setFixedWidth(60)
self.scalex_button.setFixedWidth(90)
self.scaley_label = QtWidgets.QLabel(_("Factor Y:"))
self.scaley_label.setToolTip(
_("Factor for Scale action over Y axis.")
)
self.scaley_label.setFixedWidth(50)
self.scaley_label.setFixedWidth(70)
self.scaley_entry = FCEntry()
self.scaley_entry.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
# self.scaley_entry.setFixedWidth(60)
# self.scaley_entry.setFixedWidth(70)
self.scaley_button = FCButton()
self.scaley_button.set_value(_("Scale Y"))
@ -193,7 +193,7 @@ class ToolTransform(FlatCAMTool):
_("Scale the selected object(s).\n"
"The point of reference depends on \n"
"the Scale reference checkbox state."))
self.scaley_button.setFixedWidth(60)
self.scaley_button.setFixedWidth(90)
self.scale_link_cb = FCCheckBox()
self.scale_link_cb.set_value(True)
@ -201,7 +201,7 @@ class ToolTransform(FlatCAMTool):
self.scale_link_cb.setToolTip(
_("Scale the selected object(s)\n"
"using the Scale Factor X for both axis."))
self.scale_link_cb.setFixedWidth(50)
self.scale_link_cb.setFixedWidth(70)
self.scale_zero_ref_cb = FCCheckBox()
self.scale_zero_ref_cb.set_value(True)
@ -239,10 +239,10 @@ class ToolTransform(FlatCAMTool):
self.offx_label.setToolTip(
_("Value for Offset action on X axis.")
)
self.offx_label.setFixedWidth(50)
self.offx_label.setFixedWidth(70)
self.offx_entry = FCEntry()
self.offx_entry.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
# self.offx_entry.setFixedWidth(60)
# self.offx_entry.setFixedWidth(70)
self.offx_button = FCButton()
self.offx_button.set_value(_("Offset X"))
@ -250,16 +250,16 @@ class ToolTransform(FlatCAMTool):
_("Offset the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects.\n"))
self.offx_button.setFixedWidth(60)
self.offx_button.setFixedWidth(90)
self.offy_label = QtWidgets.QLabel(_("Value Y:"))
self.offy_label.setToolTip(
_("Value for Offset action on Y axis.")
)
self.offy_label.setFixedWidth(50)
self.offy_label.setFixedWidth(70)
self.offy_entry = FCEntry()
self.offy_entry.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
# self.offy_entry.setFixedWidth(60)
# self.offy_entry.setFixedWidth(70)
self.offy_button = FCButton()
self.offy_button.set_value(_("Offset Y"))
@ -267,7 +267,7 @@ class ToolTransform(FlatCAMTool):
_("Offset the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects.\n"))
self.offy_button.setFixedWidth(60)
self.offy_button.setFixedWidth(90)
form3_child_1.addWidget(self.offx_entry)
form3_child_1.addWidget(self.offx_button)
@ -297,7 +297,7 @@ class ToolTransform(FlatCAMTool):
_("Flip the selected object(s) over the X axis.\n"
"Does not create a new object.\n ")
)
self.flipx_button.setFixedWidth(60)
self.flipx_button.setFixedWidth(100)
self.flipy_button = FCButton()
self.flipy_button.set_value(_("Flip on Y"))
@ -305,7 +305,7 @@ class ToolTransform(FlatCAMTool):
_("Flip the selected object(s) over the X axis.\n"
"Does not create a new object.\n ")
)
self.flipy_button.setFixedWidth(60)
self.flipy_button.setFixedWidth(90)
self.flip_ref_cb = FCCheckBox()
self.flip_ref_cb.set_value(True)
@ -320,7 +320,7 @@ class ToolTransform(FlatCAMTool):
"Then click Add button to insert coordinates.\n"
"Or enter the coords in format (x, y) in the\n"
"Point Entry field and click Flip on X(Y)"))
self.flip_ref_cb.setFixedWidth(50)
self.flip_ref_cb.setFixedWidth(70)
self.flip_ref_label = QtWidgets.QLabel(_("Point:"))
self.flip_ref_label.setToolTip(
@ -328,10 +328,10 @@ class ToolTransform(FlatCAMTool):
"The 'x' in (x, y) will be used when using Flip on X and\n"
"the 'y' in (x, y) will be used when using Flip on Y and")
)
self.flip_ref_label.setFixedWidth(50)
self.flip_ref_label.setFixedWidth(70)
self.flip_ref_entry = EvalEntry2("(0, 0)")
self.flip_ref_entry.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
# self.flip_ref_entry.setFixedWidth(60)
# self.flip_ref_entry.setFixedWidth(70)
self.flip_ref_button = FCButton()
self.flip_ref_button.set_value(_("Add"))
@ -339,7 +339,7 @@ class ToolTransform(FlatCAMTool):
_("The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
"SHIFT key. Then click Add button to insert."))
self.flip_ref_button.setFixedWidth(60)
self.flip_ref_button.setFixedWidth(90)
form4_child_hlay.addStretch()
form4_child_hlay.addWidget(self.flipx_button)
@ -388,6 +388,9 @@ class ToolTransform(FlatCAMTool):
self.app.ui.splitter.setSizes([0, 1])
except AttributeError:
pass
else:
if self.app.ui.splitter.sizes()[0] == 0:
self.app.ui.splitter.setSizes([1, 1])
FlatCAMTool.run(self)
self.set_tool_ui()

Binary file not shown.

View File

@ -1,942 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 02:00+0200\n"
"PO-Revision-Date: 2019-03-10 02:37+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:854
msgid "[ERROR] Could not find the Language files. The App strings are missing."
msgstr ""
"[ERROR] Could not find the Language files. The App strings are missing."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1676
msgid "Open cancelled."
msgstr "Open cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1690
msgid "Open Config file failed."
msgstr "Open Config file failed."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1871
msgid ""
"[WARNING_NOTCL] Editing a MultiGeo Geometry is not possible for the moment."
msgstr ""
"[WARNING_NOTCL] Editing a MultiGeo Geometry is not possible for the moment."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1892
msgid "[WARNING_NOTCL]Select a Geometry or Excellon Object to edit."
msgstr "[WARNING_NOTCL]Select a Geometry or Excellon Object to edit."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1903
msgid "[WARNING_NOTCL]Editor is activated ..."
msgstr "[WARNING_NOTCL]Editor is activated ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1938
msgid "[WARNING] Object empty after edit."
msgstr "[WARNING] Object empty after edit."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1947
msgid "[WARNING_NOTCL]Select a Geometry or Excellon Object to update."
msgstr "[WARNING_NOTCL]Select a Geometry or Excellon Object to update."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1960
msgid "[selected] %s is updated, returning to App..."
msgstr "[selected] %s is updated, returning to App..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2283
msgid "[ERROR] Could not load defaults file."
msgstr "[ERROR] Could not load defaults file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2295
msgid "[ERROR] Failed to parse defaults file."
msgstr "[ERROR] Failed to parse defaults file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2324
msgid "[WARNING_NOTCL]FlatCAM preferences import cancelled."
msgstr "[WARNING_NOTCL]FlatCAM preferences import cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2332
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2806
msgid "[ERROR_NOTCL] Could not load defaults file."
msgstr "[ERROR_NOTCL] Could not load defaults file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2340
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2815
msgid "[ERROR_NOTCL] Failed to parse defaults file."
msgstr "[ERROR_NOTCL] Failed to parse defaults file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2343
msgid "[success]Imported Defaults from %s"
msgstr "[success]Imported Defaults from %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2363
msgid "[WARNING_NOTCL]FlatCAM preferences export cancelled."
msgstr "[WARNING_NOTCL]FlatCAM preferences export cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2379
msgid "[ERROR_NOTCL]Could not load defaults file."
msgstr "[ERROR_NOTCL]Could not load defaults file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2398
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2829
msgid "[ERROR_NOTCL] Failed to write defaults to file."
msgstr "[ERROR_NOTCL] Failed to write defaults to file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2450
msgid "[ERROR_NOTCL]Failed to open recent files file for writing."
msgstr "[ERROR_NOTCL]Failed to open recent files file for writing."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2535
msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2536
msgid ""
"Object (%s) failed because: %s \n"
"\n"
msgstr ""
"Object (%s) failed because: %s \n"
"\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2556
msgid "Converting units to "
msgstr "Converting units to "
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2617
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2620
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2623
msgid "[selected]%s created/selected: <span style=\"color:%s;\">%s</span>"
msgstr "[selected]%s created/selected: <span style=\"color:%s;\">%s</span>"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2861
msgid "[success]Defaults saved."
msgstr "[success]Defaults saved."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2882
msgid "[ERROR_NOTCL] Could not load factory defaults file."
msgstr "[ERROR_NOTCL] Could not load factory defaults file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2891
msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
msgstr "[ERROR_NOTCL] Failed to parse factory defaults file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2905
msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
msgstr "[ERROR_NOTCL] Failed to write factory defaults to file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2909
msgid "Factory defaults saved."
msgstr "Factory defaults saved."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2915
msgid ""
"There are files/objects modified in FlatCAM. \n"
"Do you want to Save the project?"
msgstr ""
"There are files/objects modified in FlatCAM. \n"
"Do you want to Save the project?"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2918
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5176
msgid "Save changes"
msgstr "Save changes"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2967
msgid ""
"[ERROR] Failed join. The Geometry objects are of different types.\n"
"At least one is MultiGeo type and the other is SingleGeo type. A possibility "
"is to convert from one to another and retry joining \n"
"but in the case of converting from MultiGeo to SingleGeo, informations may "
"be lost and the result may not be what was expected. \n"
"Check the generated GCODE."
msgstr ""
"[ERROR] Failed join. The Geometry objects are of different types.\n"
"At least one is MultiGeo type and the other is SingleGeo type. A possibility "
"is to convert from one to another and retry joining \n"
"but in the case of converting from MultiGeo to SingleGeo, informations may "
"be lost and the result may not be what was expected. \n"
"Check the generated GCODE."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3008
msgid "[ERROR_NOTCL]Failed. Excellon joining works only on Excellon objects."
msgstr "[ERROR_NOTCL]Failed. Excellon joining works only on Excellon objects."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3030
msgid "[ERROR_NOTCL]Failed. Gerber joining works only on Gerber objects."
msgstr "[ERROR_NOTCL]Failed. Gerber joining works only on Gerber objects."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3045
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3070
msgid "[ERROR_NOTCL]Failed. Select a Geometry Object and try again."
msgstr "[ERROR_NOTCL]Failed. Select a Geometry Object and try again."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3049
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3074
msgid "[ERROR_NOTCL]Expected a FlatCAMGeometry, got %s"
msgstr "[ERROR_NOTCL]Expected a FlatCAMGeometry, got %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3062
msgid "[success] A Geometry object was converted to MultiGeo type."
msgstr "[success] A Geometry object was converted to MultiGeo type."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3088
msgid "[success] A Geometry object was converted to SingleGeo type."
msgstr "[success] A Geometry object was converted to SingleGeo type."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3272
msgid "[success]Converted units to %s"
msgstr "[success]Converted units to %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3283
msgid "[WARNING_NOTCL]Units conversion cancelled."
msgstr "[WARNING_NOTCL]Units conversion cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3907
msgid "[WARNING_NOTCL]Export Code cancelled."
msgstr "[WARNING_NOTCL]Export Code cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3917
msgid "[WARNING] No such file or directory"
msgstr "[WARNING] No such file or directory"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3924
msgid "Saved to: %s"
msgstr "Saved to: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3987
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4019
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4030
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4041
msgid ""
"[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
"format."
msgstr ""
"[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
"format."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3992
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4024
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4035
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4046
msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
msgstr "[WARNING_NOTCL] Adding Tool cancelled ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3995
msgid ""
"Adding Tool works only when Advanced is checked.\n"
"Go to Preferences -> General - Show Advanced Options."
msgstr ""
"Adding Tool works only when Advanced is checked.\n"
"Go to Preferences -> General - Show Advanced Options."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4100
msgid "Object(s) deleted ..."
msgstr "Object(s) deleted ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4104
msgid "Failed. No object(s) selected..."
msgstr "Failed. No object(s) selected..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4106
msgid "Save the work in Editor and try again ..."
msgstr "Save the work in Editor and try again ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4119
msgid "Click to set the origin ..."
msgstr "Click to set the origin ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4131
msgid "Jump to ..."
msgstr "Jump to ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4132
msgid "Enter the coordinates in format X,Y:"
msgstr "Enter the coordinates in format X,Y:"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4139
msgid "Wrong coordinates. Enter coordinates in format: X,Y"
msgstr "Wrong coordinates. Enter coordinates in format: X,Y"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4154
msgid "Done."
msgstr "Done."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4286
msgid "[success] Origin set ..."
msgstr "[success] Origin set ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4324
msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
msgstr "[WARNING_NOTCL] No object selected to Flip on Y axis."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4349
msgid "[success] Flip on Y axis done."
msgstr "[success] Flip on Y axis done."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4351
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4391
msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
msgstr "[ERROR_NOTCL] Due of %s, Flip action was not executed."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4364
msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
msgstr "[WARNING_NOTCL] No object selected to Flip on X axis."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4389
msgid "[success] Flip on X axis done."
msgstr "[success] Flip on X axis done."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4404
msgid "[WARNING_NOTCL] No object selected to Rotate."
msgstr "[WARNING_NOTCL] No object selected to Rotate."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4407
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4452
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4483
msgid "Enter the Angle value:"
msgstr "Enter the Angle value:"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4407
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4452
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4483
msgid "Transform"
msgstr "Transform"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4437
msgid "[success] Rotation done."
msgstr "[success] Rotation done."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4439
msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
msgstr "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4450
msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4471
msgid "[success] Skew on X axis done."
msgstr "[success] Skew on X axis done."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4481
msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
msgstr "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4502
msgid "[success] Skew on Y axis done."
msgstr "[success] Skew on Y axis done."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4598
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4625
msgid ""
"[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
"format."
msgstr ""
"[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float "
"format."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4604
msgid "[success] New Grid added ..."
msgstr "[success] New Grid added ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4607
msgid "[WARNING_NOTCL] Grid already exists ..."
msgstr "[WARNING_NOTCL] Grid already exists ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4610
msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
msgstr "[WARNING_NOTCL] Adding New Grid cancelled ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4632
msgid "[ERROR_NOTCL] Grid Value does not exist ..."
msgstr "[ERROR_NOTCL] Grid Value does not exist ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4635
msgid "[success] Grid Value deleted ..."
msgstr "[success] Grid Value deleted ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4638
msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
msgstr "[WARNING_NOTCL] Delete Grid value cancelled ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4677
msgid "[WARNING_NOTCL]No object selected to copy it's name"
msgstr "[WARNING_NOTCL]No object selected to copy it's name"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4681
msgid "Name copied on clipboard ..."
msgstr "Name copied on clipboard ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4976
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4979
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4982
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4985
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4999
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5002
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5005
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5008
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5047
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5050
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5053
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5056
msgid "[selected]<span style=\"color:%s;\">%s</span> selected"
msgstr "[selected]<span style=\"color:%s;\">%s</span> selected"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5173
msgid ""
"There are files/objects opened in FlatCAM.\n"
"Creating a New project will delete them.\n"
"Do you want to Save the project?"
msgstr ""
"There are files/objects opened in FlatCAM.\n"
"Creating a New project will delete them.\n"
"Do you want to Save the project?"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5191
msgid "[success] New Project created..."
msgstr "[success] New Project created..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5272
msgid ""
"[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
msgstr ""
"[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5279
msgid ""
"[WARNING_NOTCL] There is no selected object for which to see it's source "
"file code."
msgstr ""
"[WARNING_NOTCL] There is no selected object for which to see it's source "
"file code."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5283
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6723
msgid "Code Editor"
msgstr "Code Editor"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5296
msgid "[ERROR]App.on_view_source() -->%s"
msgstr "[ERROR]App.on_view_source() -->%s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5342
msgid "[WARNING_NOTCL]Open Gerber cancelled."
msgstr "[WARNING_NOTCL]Open Gerber cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5371
msgid "[WARNING_NOTCL]Open Excellon cancelled."
msgstr "[WARNING_NOTCL]Open Excellon cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5401
msgid "[WARNING_NOTCL]Open G-Code cancelled."
msgstr "[WARNING_NOTCL]Open G-Code cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5430
msgid "[WARNING_NOTCL]Open Project cancelled."
msgstr "[WARNING_NOTCL]Open Project cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5455
msgid "[WARNING_NOTCL]Open COnfig cancelled."
msgstr "[WARNING_NOTCL]Open COnfig cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5470
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5667
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7583
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7603
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7624
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7646
msgid "[WARNING_NOTCL] No object selected."
msgstr "[WARNING_NOTCL] No object selected."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5471
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5668
msgid "Please Select a Geometry object to export"
msgstr "Please Select a Geometry object to export"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5482
msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
msgstr "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5504
msgid "[WARNING_NOTCL]Export SVG cancelled."
msgstr "[WARNING_NOTCL]Export SVG cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5518
msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
msgstr "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5528
msgid "Export PNG Image"
msgstr "Export PNG Image"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5533
msgid "Export PNG cancelled."
msgstr "Export PNG cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5550
msgid ""
"[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
msgstr ""
"[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5555
msgid ""
"[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
msgstr ""
"[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5567
msgid "Save Gerber source file"
msgstr "Save Gerber source file"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5572
msgid "[WARNING_NOTCL]Save Gerber source file cancelled."
msgstr "[WARNING_NOTCL]Save Gerber source file cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5589
msgid ""
"[WARNING_NOTCL] No object selected. Please select an Excellon object to "
"export."
msgstr ""
"[WARNING_NOTCL] No object selected. Please select an Excellon object to "
"export."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5594
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5633
msgid ""
"[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
msgstr ""
"[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5606
msgid "Save Excellon source file"
msgstr "Save Excellon source file"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5611
msgid "[WARNING_NOTCL]Saving Excellon source file cancelled."
msgstr "[WARNING_NOTCL]Saving Excellon source file cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5628
msgid ""
"[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
"export."
msgstr ""
"[WARNING_NOTCL] No object selected. Please Select an Excellon object to "
"export."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5645
msgid "Export Excellon"
msgstr "Export Excellon"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5650
msgid "[WARNING_NOTCL]Export Excellon cancelled."
msgstr "[WARNING_NOTCL]Export Excellon cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5678
msgid "[ERROR_NOTCL] Only Geometry objects can be used."
msgstr "[ERROR_NOTCL] Only Geometry objects can be used."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5695
msgid "Export DXF"
msgstr "Export DXF"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5700
msgid "[WARNING_NOTCL] Export DXF cancelled."
msgstr "[WARNING_NOTCL] Export DXF cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5729
msgid "[WARNING_NOTCL]Open SVG cancelled."
msgstr "[WARNING_NOTCL]Open SVG cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5748
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5751
msgid "Import DXF"
msgstr "Import DXF"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5759
msgid "[WARNING_NOTCL]Open DXF cancelled."
msgstr "[WARNING_NOTCL]Open DXF cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5777
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5780
msgid "Open TCL script"
msgstr "Open TCL script"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5788
msgid "[WARNING_NOTCL]Open TCL script cancelled."
msgstr "[WARNING_NOTCL]Open TCL script cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5840
msgid "Save Project As ..."
msgstr "Save Project As ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5845
msgid "[WARNING_NOTCL]Save Project cancelled."
msgstr "[WARNING_NOTCL]Save Project cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5900
msgid "Exporting SVG"
msgstr "Exporting SVG"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5933
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6038
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6152
msgid "[success] SVG file exported to %s"
msgstr "[success] SVG file exported to %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5964
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6084
msgid "[WARNING_NOTCL]No object Box. Using instead %s"
msgstr "[WARNING_NOTCL]No object Box. Using instead %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6041
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6155
msgid "Generating Film ... Please wait."
msgstr "Generating Film ... Please wait."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6302
msgid "[success] Excellon file exported to %s"
msgstr "[success] Excellon file exported to %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6309
msgid "Exporting Excellon"
msgstr "Exporting Excellon"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6314
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6321
msgid "[ERROR_NOTCL] Could not export Excellon file."
msgstr "[ERROR_NOTCL] Could not export Excellon file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6360
msgid "[success] DXF file exported to %s"
msgstr "[success] DXF file exported to %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6366
msgid "Exporting DXF"
msgstr "Exporting DXF"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6371
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6378
msgid "[[WARNING_NOTCL]] Could not export DXF file."
msgstr "[[WARNING_NOTCL]] Could not export DXF file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6398
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6440
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6481
msgid ""
"[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
"Gerber are supported"
msgstr ""
"[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and "
"Gerber are supported"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6408
msgid "Importing SVG"
msgstr "Importing SVG"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6419
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6461
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6501
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6577
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6644
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6709
msgid "[success] Opened: %s"
msgstr "[success] Opened: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6450
msgid "Importing DXF"
msgstr "Importing DXF"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6489
msgid "Importing Image"
msgstr "Importing Image"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6530
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6532
msgid "[ERROR_NOTCL] Failed to open file: %s"
msgstr "[ERROR_NOTCL] Failed to open file: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6535
msgid "[ERROR_NOTCL] Failed to parse file: %s. %s"
msgstr "[ERROR_NOTCL] Failed to parse file: %s. %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6541
msgid "[ERROR] An internal error has ocurred. See shell.\n"
msgstr "[ERROR] An internal error has ocurred. See shell.\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6550
msgid ""
"[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
msgstr ""
"[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6558
msgid "Opening Gerber"
msgstr "Opening Gerber"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6568
msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
msgstr "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6603
msgid "[ERROR_NOTCL] This is not Excellon file."
msgstr "[ERROR_NOTCL] This is not Excellon file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6606
msgid "[ERROR_NOTCL] Cannot open file: %s"
msgstr "[ERROR_NOTCL] Cannot open file: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6611
msgid "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
msgstr "[ERROR_NOTCL] An internal error has occurred. See shell.\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6627
msgid "[ERROR_NOTCL] No geometry found in file: %s"
msgstr "[ERROR_NOTCL] No geometry found in file: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6630
msgid "Opening Excellon."
msgstr "Opening Excellon."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6637
msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
msgstr ""
"[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6676
msgid "[ERROR_NOTCL] Failed to open %s"
msgstr "[ERROR_NOTCL] Failed to open %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6686
msgid "[ERROR_NOTCL] This is not GCODE"
msgstr "[ERROR_NOTCL] This is not GCODE"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6692
msgid "Opening G-Code."
msgstr "Opening G-Code."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6700
msgid ""
"[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
" Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
"processing"
msgstr ""
"[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
" Attempting to create a FlatCAM CNCJob Object from G-Code file failed during "
"processing"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6740
msgid "[ERROR_NOTCL] Failed to open config file: %s"
msgstr "[ERROR_NOTCL] Failed to open config file: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6765
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6782
msgid "[ERROR_NOTCL] Failed to open project file: %s"
msgstr "[ERROR_NOTCL] Failed to open project file: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6772
msgid "[ERROR_NOTCL] Failed to parse project file: %s"
msgstr "[ERROR_NOTCL] Failed to parse project file: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6808
msgid "[success] Project loaded from: %s"
msgstr "[success] Project loaded from: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6938
msgid "Available commands:\n"
msgstr "Available commands:\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6940
msgid ""
"\n"
"\n"
"Type help <command_name> for usage.\n"
" Example: help open_gerber"
msgstr ""
"\n"
"\n"
"Type help <command_name> for usage.\n"
" Example: help open_gerber"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7088
msgid "Shows list of commands."
msgstr "Shows list of commands."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7141
msgid "[ERROR_NOTCL] Failed to load recent item list."
msgstr "[ERROR_NOTCL] Failed to load recent item list."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7148
msgid "[ERROR_NOTCL] Failed to parse recent item list."
msgstr "[ERROR_NOTCL] Failed to parse recent item list."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7209
msgid "<b>Shortcut Key List</b>"
msgstr "<b>Shortcut Key List</b>"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7216
msgid ""
"\n"
"<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
"Project Tab</strong></span></p>\n"
"\n"
"<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
"The normal flow when working in FlatCAM is the following:</span></p>\n"
"\n"
"<ol>\n"
"\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
"DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
"toolbars, key shortcuts or even dragging and dropping the files on the GUI."
"<br />\n"
"\t<br />\n"
"\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
"the project file, drag &amp; drop of the file into the FLATCAM GUI or "
"through the menu/toolbar links offered within the app.</span><br />\n"
"\t&nbsp;</li>\n"
"\t<li><span style=\"font-size:10px\">Once an object is available in the "
"Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
"strong>(more simpler is to double click the object name in the Project Tab), "
"<strong>SELECTED TAB </strong>will be updated with the object properties "
"according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
">\n"
"\t<br />\n"
"\tIf the selection of the object is done on the canvas by single click "
"instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
"properties will be displayed into the Selected Tab. Alternatively, double "
"clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
"strong> and populate it even if it was out of focus.<br />\n"
"\t<br />\n"
"\tYou can change the parameters in this screen and the flow direction is "
"like this:<br />\n"
"\t<br />\n"
"\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
"Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
"param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
"strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
"GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
"span></li>\n"
"</ol>\n"
"\n"
"<p><span style=\"font-size:10px\">A list of key shortcuts is available "
"through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
"through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
"\n"
" "
msgstr ""
"\n"
"<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from "
"Project Tab</strong></span></p>\n"
"\n"
"<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
"The normal flow when working in FlatCAM is the following:</span></p>\n"
"\n"
"<ol>\n"
"\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, "
"DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, "
"toolbars, key shortcuts or even dragging and dropping the files on the GUI."
"<br />\n"
"\t<br />\n"
"\tYou can also load a <strong>FlatCAM project</strong> by double clicking on "
"the project file, drag &amp; drop of the file into the FLATCAM GUI or "
"through the menu/toolbar links offered within the app.</span><br />\n"
"\t&nbsp;</li>\n"
"\t<li><span style=\"font-size:10px\">Once an object is available in the "
"Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </"
"strong>(more simpler is to double click the object name in the Project Tab), "
"<strong>SELECTED TAB </strong>will be updated with the object properties "
"according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br /"
">\n"
"\t<br />\n"
"\tIf the selection of the object is done on the canvas by single click "
"instead, and the <strong>SELECTED TAB</strong> is in focus, again the object "
"properties will be displayed into the Selected Tab. Alternatively, double "
"clicking on the object on the canvas will bring the <strong>SELECTED TAB</"
"strong> and populate it even if it was out of focus.<br />\n"
"\t<br />\n"
"\tYou can change the parameters in this screen and the flow direction is "
"like this:<br />\n"
"\t<br />\n"
"\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate "
"Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change "
"param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </"
"strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to "
"GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</"
"span></li>\n"
"</ol>\n"
"\n"
"<p><span style=\"font-size:10px\">A list of key shortcuts is available "
"through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or "
"through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
"\n"
" "
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7320
msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
msgstr "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7327
msgid "[ERROR_NOTCL] Could not parse information about latest version."
msgstr "[ERROR_NOTCL] Could not parse information about latest version."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7337
msgid "[success] FlatCAM is up to date!"
msgstr "[success] FlatCAM is up to date!"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7342
msgid "Newer Version Available"
msgstr "Newer Version Available"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7343
msgid ""
"There is a newer version of FlatCAM available for download:<br><br><b>%s</"
"b><br>%s"
msgstr ""
"There is a newer version of FlatCAM available for download:<br><br><b>%s</"
"b><br>%s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7364
msgid "[success]All plots disabled."
msgstr "[success]All plots disabled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7370
msgid "[success]All non selected plots disabled."
msgstr "[success]All non selected plots disabled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7376
msgid "[success]All plots enabled."
msgstr "[success]All plots enabled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7486
msgid "Saving FlatCAM Project"
msgstr "Saving FlatCAM Project"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7507
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7538
msgid "[success] Project saved to: %s"
msgstr "[success] Project saved to: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7525
msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
msgstr "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7532
msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
msgstr ""
"[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7540
msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
msgstr "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -1,377 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 02:05+0200\n"
"PO-Revision-Date: 2019-03-10 02:40+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:196
msgid "[success]Name changed from %s to %s"
msgstr "[success]Name changed from %s to %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:534
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1888
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3151
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5298
msgid "<span style=\"color:green;\"><b>Basic</b></span>"
msgstr "<span style=\"color:green;\"><b>Basic</b></span>"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:546
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1904
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3173
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5304
msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
msgstr "<span style=\"color:red;\"><b>Advanced</b></span>"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:901
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:956
msgid "[success]Isolation geometry created: %s"
msgstr "[success]Isolation geometry created: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1031
msgid ""
"[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
msgstr ""
"[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1046
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1081
msgid ""
"[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
"again."
msgstr ""
"[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try "
"again."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1066
msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
msgstr "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1139
msgid "Generating Gerber"
msgstr "Generating Gerber"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1146
msgid "[ERROR_NOTCL] Cretion of Gerber failed."
msgstr "[ERROR_NOTCL] Cretion of Gerber failed."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1154
msgid "[success] Created: %s"
msgstr "[success] Created: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1274
msgid "Plotting Apertures"
msgstr "Plotting Apertures"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1728
msgid "Total Drills"
msgstr "Total Drills"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1754
msgid "Total Slots"
msgstr "Total Slots"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1960
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3223
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3529
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3716
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3729
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3846
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4254
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4487
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4893
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2184
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2275
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2390
msgid ""
"[ERROR_NOTCL]Please select one or more tools from the list and try again."
msgstr ""
"[ERROR_NOTCL]Please select one or more tools from the list and try again."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2191
msgid ""
"[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
msgstr ""
"[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2206
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2300
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2411
msgid "Diameter"
msgstr "Diameter"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2206
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2300
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2411
msgid "Drills_Nr"
msgstr "Drills_Nr"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2206
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2300
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2411
msgid "Slots_Nr"
msgstr "Slots_Nr"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2206
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2300
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2411
msgid "Tool_nr"
msgstr "Tool_nr"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2285
msgid ""
"[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
msgstr ""
"[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2448
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4142
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4353
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4668
msgid ""
"[ERROR_NOTCL]Wrong value format for self.defaults[\"z_pdepth\"] or self."
"options[\"z_pdepth\"]"
msgstr ""
"[ERROR_NOTCL]Wrong value format for self.defaults[\"z_pdepth\"] or self."
"options[\"z_pdepth\"]"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2460
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4154
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4365
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4680
msgid ""
"[ERROR_NOTCL]Wrong value format for self.defaults[\"feedrate_probe\"] or "
"self.options[\"feedrate_probe\"]"
msgstr ""
"[ERROR_NOTCL]Wrong value format for self.defaults[\"feedrate_probe\"] or "
"self.options[\"feedrate_probe\"]"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2493
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4556
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4561
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4707
msgid "Generating CNC Code"
msgstr "Generating CNC Code"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2518
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4852
msgid ""
"[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
"format (x, y) \n"
"but now there is only one value, not two. "
msgstr ""
"[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
"format (x, y) \n"
"but now there is only one value, not two. "
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2866
msgid "In"
msgstr "In"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2866
msgid "Out"
msgstr "Out"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2866
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3108
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3393
msgid "Path"
msgstr "Path"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2866
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3189
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3762
msgid "Custom"
msgstr "Custom"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2867
msgid "Finish"
msgstr "Finish"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2867
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3110
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3395
msgid "Rough"
msgstr "Rough"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2867
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3773
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3774
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3783
msgid "Iso"
msgstr "Iso"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3145
msgid "Copy"
msgstr "Copy"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3147
msgid "Delete"
msgstr "Delete"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3364
msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
msgstr ""
"[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3439
msgid "[success] Tool added in Tool Table."
msgstr "[success] Tool added in Tool Table."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3444
msgid "[ERROR_NOTCL]Default Tool added. Wrong value format entered."
msgstr "[ERROR_NOTCL]Default Tool added. Wrong value format entered."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3474
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3484
msgid "[WARNING_NOTCL]Failed. Select a tool to copy."
msgstr "[WARNING_NOTCL]Failed. Select a tool to copy."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3513
msgid "[success] Tool was copied in Tool Table."
msgstr "[success] Tool was copied in Tool Table."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3546
msgid "[success] Tool was edited in Tool Table."
msgstr "[success] Tool was edited in Tool Table."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3577
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3587
msgid "[WARNING_NOTCL]Failed. Select a tool to delete."
msgstr "[WARNING_NOTCL]Failed. Select a tool to delete."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3611
msgid "[success] Tool was deleted in Tool Table."
msgstr "[success] Tool was deleted in Tool Table."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4025
msgid ""
"[WARNING_NOTCL]This Geometry can't be processed because it is %s geometry."
msgstr ""
"[WARNING_NOTCL]This Geometry can't be processed because it is %s geometry."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4042
msgid "[ERROR_NOTCL]Wrong Tool Dia value format entered, use a number."
msgstr "[ERROR_NOTCL]Wrong Tool Dia value format entered, use a number."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4069
msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
msgstr "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4107
msgid "[ERROR] An internal error has ocurred. See shell.\n"
msgstr "[ERROR] An internal error has ocurred. See shell.\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4108
msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
msgstr "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4263
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4496
msgid ""
"[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
"Add a Tool Offset or change the Offset Type."
msgstr ""
"[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
"Add a Tool Offset or change the Offset Type."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4377
msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
msgstr "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4739
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4749
msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
msgstr "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4787
msgid "[success]Geometry Scale done."
msgstr "[success]Geometry Scale done."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4804
msgid ""
"[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only "
"one value in the Offset field."
msgstr ""
"[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only "
"one value in the Offset field."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4824
msgid "[success]Geometry Offset done."
msgstr "[success]Geometry Offset done."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5372
msgid "Export Machine Code ..."
msgstr "Export Machine Code ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5377
msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
msgstr "[WARNING_NOTCL]Export Machine Code cancelled ..."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5389
msgid "[success] Machine Code file saved to: %s"
msgstr "[success] Machine Code file saved to: %s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5401
msgid "Code Editor"
msgstr "Code Editor"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5420
msgid "[ERROR]FlatCAMCNNJob.on_modifygcode_button_click() -->%s"
msgstr "[ERROR]FlatCAMCNNJob.on_modifygcode_button_click() -->%s"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5526
msgid ""
"[WARNING_NOTCL]This CNCJob object can't be processed because it is a %s "
"CNCJob object."
msgstr ""
"[WARNING_NOTCL]This CNCJob object can't be processed because it is a %s "
"CNCJob object."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5578
msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
msgstr "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5591
msgid ""
"[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
"empty."
msgstr ""
"[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's "
"empty."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5598
msgid "[success] Toolchange G-code was replaced by a custom code."
msgstr "[success] Toolchange G-code was replaced by a custom code."
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5613
msgid "[WARNING_NOTCL] No such file or directory"
msgstr "[WARNING_NOTCL] No such file or directory"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5633
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5645
msgid ""
"[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
"'toolchange_custom'"
msgstr ""
"[WARNING_NOTCL] The used postprocessor file has to have in it's name: "
"'toolchange_custom'"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5651
msgid "[ERROR] There is no postprocessor file."
msgstr "[ERROR] There is no postprocessor file."

View File

@ -1,37 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 02:14+0200\n"
"PO-Revision-Date: 2019-03-10 02:41+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:75
msgid "Open cancelled."
msgstr "Open cancelled."
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:397
msgid "Object renamed from %s to %s"
msgstr "Object renamed from %s to %s"
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:691
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:694
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:697
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:700
msgid "[selected]<span style=\"color:%s;\">%s</span> selected"
msgstr "[selected]<span style=\"color:%s;\">%s</span> selected"
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:731
msgid "[ERROR] Cause of error: %s"
msgstr "[ERROR] Cause of error: %s"

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,199 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 16:22+0200\n"
"PO-Revision-Date: 2019-03-10 16:24+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:26
msgid "Calculators"
msgstr "Calculators"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:27
msgid "V-Shape Tool Calculator"
msgstr "V-Shape Tool Calculator"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:28
msgid "Units Calculator"
msgstr "Units Calculator"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:29
msgid "ElectroPlating Calculator"
msgstr "ElectroPlating Calculator"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:70
msgid "Here you enter the value to be converted from INCH to MM"
msgstr "Here you enter the value to be converted from INCH to MM"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:75
msgid "Here you enter the value to be converted from MM to INCH"
msgstr "Here you enter the value to be converted from MM to INCH"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:96
msgid "Tip Diameter:"
msgstr "Tip Diameter:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:100
msgid ""
"This is the diameter of the tool tip.\n"
"The manufacturer specifies it."
msgstr ""
"This is the diameter of the tool tip.\n"
"The manufacturer specifies it."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:103
msgid "Tip Angle:"
msgstr "Tip Angle:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:107
msgid ""
"This is the angle of the tip of the tool.\n"
"It is specified by manufacturer."
msgstr ""
"This is the angle of the tip of the tool.\n"
"It is specified by manufacturer."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:110
msgid "Cut Z:"
msgstr "Cut Z:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:114
msgid ""
"This is the depth to cut into the material.\n"
"In the CNCJob is the CutZ parameter."
msgstr ""
"This is the depth to cut into the material.\n"
"In the CNCJob is the CutZ parameter."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:117
msgid "Tool Diameter:"
msgstr "Tool Diameter:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:121
msgid ""
"This is the tool diameter to be entered into\n"
"FlatCAM Gerber section.\n"
"In the CNCJob section it is called >Tool dia<."
msgstr ""
"This is the tool diameter to be entered into\n"
"FlatCAM Gerber section.\n"
"In the CNCJob section it is called >Tool dia<."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:133
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:216
msgid "Calculate"
msgstr "Calculate"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:136
msgid ""
"Calculate either the Cut Z or the effective tool diameter,\n"
" depending on which is desired and which is known. "
msgstr ""
"Calculate either the Cut Z or the effective tool diameter,\n"
" depending on which is desired and which is known. "
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:154
msgid ""
"This calculator is useful for those who plate the via/pad/drill holes,\n"
"using a method like grahite ink or calcium hypophosphite ink or palladium "
"chloride."
msgstr ""
"This calculator is useful for those who plate the via/pad/drill holes,\n"
"using a method like grahite ink or calcium hypophosphite ink or palladium "
"chloride."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:163
msgid "Board Length:"
msgstr "Board Length:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:167
msgid "This is the board length. In centimeters."
msgstr "This is the board length. In centimeters."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:169
msgid "Board Width:"
msgstr "Board Width:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:173
msgid "This is the board width.In centimeters."
msgstr "This is the board width.In centimeters."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:175
msgid "Current Density:"
msgstr "Current Density:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:179
msgid ""
"Current density to pass through the board. \n"
"In Amps per Square Feet ASF."
msgstr ""
"Current density to pass through the board. \n"
"In Amps per Square Feet ASF."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:183
msgid "Copper Growth:"
msgstr "Copper Growth:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:187
msgid ""
"How thick the copper growth is intended to be.\n"
"In microns."
msgstr ""
"How thick the copper growth is intended to be.\n"
"In microns."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:192
msgid "Current Value:"
msgstr "Current Value:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:196
msgid ""
"This is the current intensity value\n"
"to be set on the Power Supply. In Amps."
msgstr ""
"This is the current intensity value\n"
"to be set on the Power Supply. In Amps."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:200
msgid "Time:"
msgstr "Time:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:204
msgid ""
"This is the calculated time required for the procedure.\n"
"In minutes."
msgstr ""
"This is the calculated time required for the procedure.\n"
"In minutes."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:219
msgid ""
"Calculate the current intensity value and the procedure time,\n"
" depending on the parameters above"
msgstr ""
"Calculate the current intensity value and the procedure time,\n"
" depending on the parameters above"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:306
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:317
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:329
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:344
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:357
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:371
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:382
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:393
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:404
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."

Binary file not shown.

View File

@ -1,379 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:03+0200\n"
"PO-Revision-Date: 2019-03-10 13:22+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:13
msgid "Cutout PCB"
msgstr "Cutout PCB"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:49
msgid "Obj Type:"
msgstr "Obj Type:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:51
msgid ""
"Specify the type of object to be cutout.\n"
"It can be of type: Gerber or Geometry.\n"
"What is selected here will dictate the kind\n"
"of objects that will populate the 'Object' combobox."
msgstr ""
"Specify the type of object to be cutout.\n"
"It can be of type: Gerber or Geometry.\n"
"What is selected here will dictate the kind\n"
"of objects that will populate the 'Object' combobox."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:65
msgid "Object:"
msgstr "Object:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:67
msgid "Object to be cutout. "
msgstr "Object to be cutout. "
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:73
msgid "Tool Dia:"
msgstr "Tool Dia:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:75
msgid ""
"Diameter of the tool used to cutout\n"
"the PCB shape out of the surrounding material."
msgstr ""
"Diameter of the tool used to cutout\n"
"the PCB shape out of the surrounding material."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:82
msgid "Margin:"
msgstr "Margin:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:84
msgid ""
"Margin over bounds. A positive value here\n"
"will make the cutout of the PCB further from\n"
"the actual PCB border"
msgstr ""
"Margin over bounds. A positive value here\n"
"will make the cutout of the PCB further from\n"
"the actual PCB border"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:92
msgid "Gap size:"
msgstr "Gap size:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:94
msgid ""
"The size of the bridge gaps in the cutout\n"
"used to keep the board connected to\n"
"the surrounding material (the one \n"
"from which the PCB is cutout)."
msgstr ""
"The size of the bridge gaps in the cutout\n"
"used to keep the board connected to\n"
"the surrounding material (the one \n"
"from which the PCB is cutout)."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:110
msgid "A. Automatic Bridge Gaps"
msgstr "A. Automatic Bridge Gaps"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:112
msgid "This section handle creation of automatic bridge gaps."
msgstr "This section handle creation of automatic bridge gaps."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:121
msgid "Gaps:"
msgstr "Gaps:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:123
msgid ""
"Number of gaps used for the Automatic cutout.\n"
"There can be maximum 8 bridges/gaps.\n"
"The choices are:\n"
"- lr - left + right\n"
"- tb - top + bottom\n"
"- 4 - left + right +top + bottom\n"
"- 2lr - 2*left + 2*right\n"
"- 2tb - 2*top + 2*bottom\n"
"- 8 - 2*left + 2*right +2*top + 2*bottom"
msgstr ""
"Number of gaps used for the Automatic cutout.\n"
"There can be maximum 8 bridges/gaps.\n"
"The choices are:\n"
"- lr - left + right\n"
"- tb - top + bottom\n"
"- 4 - left + right +top + bottom\n"
"- 2lr - 2*left + 2*right\n"
"- 2tb - 2*top + 2*bottom\n"
"- 8 - 2*left + 2*right +2*top + 2*bottom"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:146
msgid "FreeForm:"
msgstr "FreeForm:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:148
msgid ""
"The cutout shape can be of ny shape.\n"
"Useful when the PCB has a non-rectangular shape."
msgstr ""
"The cutout shape can be of ny shape.\n"
"Useful when the PCB has a non-rectangular shape."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:155
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:175
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:226
msgid "Generate Geo"
msgstr "Generate Geo"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:157
msgid ""
"Cutout the selected object.\n"
"The cutout shape can be of any shape.\n"
"Useful when the PCB has a non-rectangular shape."
msgstr ""
"Cutout the selected object.\n"
"The cutout shape can be of any shape.\n"
"Useful when the PCB has a non-rectangular shape."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:166
msgid "Rectangular:"
msgstr "Rectangular:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:168
msgid ""
"The resulting cutout shape is\n"
"always a rectangle shape and it will be\n"
"the bounding box of the Object."
msgstr ""
"The resulting cutout shape is\n"
"always a rectangle shape and it will be\n"
"the bounding box of the Object."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:177
msgid ""
"Cutout the selected object.\n"
"The resulting cutout shape is\n"
"always a rectangle shape and it will be\n"
"the bounding box of the Object."
msgstr ""
"Cutout the selected object.\n"
"The resulting cutout shape is\n"
"always a rectangle shape and it will be\n"
"the bounding box of the Object."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:185
msgid "B. Manual Bridge Gaps"
msgstr "B. Manual Bridge Gaps"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:187
msgid ""
"This section handle creation of manual bridge gaps.\n"
"This is done by mouse clicking on the perimeter of the\n"
"Geometry object that is used as a cutout object. "
msgstr ""
"This section handle creation of manual bridge gaps.\n"
"This is done by mouse clicking on the perimeter of the\n"
"Geometry object that is used as a cutout object. "
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:203
msgid "Geo Obj:"
msgstr "Geo Obj:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:205
msgid "Geometry object used to create the manual cutout."
msgstr "Geometry object used to create the manual cutout."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:216
msgid "Manual Geo:"
msgstr "Manual Geo:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:218
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:228
msgid ""
"If the object to be cutout is a Gerber\n"
"first create a Geometry that surrounds it,\n"
"to be used as the cutout, if one doesn't exist yet.\n"
"Select the source Gerber file in the top object combobox."
msgstr ""
"If the object to be cutout is a Gerber\n"
"first create a Geometry that surrounds it,\n"
"to be used as the cutout, if one doesn't exist yet.\n"
"Select the source Gerber file in the top object combobox."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:238
msgid "Manual Add Bridge Gaps:"
msgstr "Manual Add Bridge Gaps:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:240
msgid ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
"the surrounding material."
msgstr ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
"the surrounding material."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:247
msgid "Generate Gap"
msgstr "Generate Gap"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:249
msgid ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
"the surrounding material.\n"
"The LMB click has to be done on the perimeter of\n"
"the Geometry object used as a cutout geometry."
msgstr ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
"the surrounding material.\n"
"The LMB click has to be done on the perimeter of\n"
"the Geometry object used as a cutout geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:322
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:461
msgid "[ERROR_NOTCL]Could not retrieve object: %s"
msgstr "[ERROR_NOTCL]Could not retrieve object: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:326
msgid ""
"[ERROR_NOTCL]There is no object selected for Cutout.\n"
"Select one and try again."
msgstr ""
"[ERROR_NOTCL]There is no object selected for Cutout.\n"
"Select one and try again."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:336
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:474
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:594
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:699
msgid ""
"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
"retry."
msgstr ""
"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
"retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:342
msgid ""
"[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
msgstr ""
"[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:352
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:489
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:714
msgid ""
"[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
msgstr ""
"[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:363
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:500
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:609
msgid ""
"[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
msgstr ""
"[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:370
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:507
msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
msgstr "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:374
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:511
msgid ""
"[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
"or 8. Fill in a correct value and retry. "
msgstr ""
"[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 "
"or 8. Fill in a correct value and retry. "
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:379
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:516
msgid ""
"[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
"Optionally, this Multi-geo Geometry can be converted to Single-geo "
"Geometry,\n"
"and after that perform Cutout."
msgstr ""
"[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
"Optionally, this Multi-geo Geometry can be converted to Single-geo "
"Geometry,\n"
"and after that perform Cutout."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:445
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:579
msgid "[success] Any form CutOut operation finished."
msgstr "[success] Any form CutOut operation finished."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:465
msgid "[ERROR_NOTCL]Object not found: %s"
msgstr "[ERROR_NOTCL]Object not found: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:479
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:599
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:704
msgid ""
"[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
msgstr ""
"[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:584
msgid ""
"Click on the selected geometry object perimeter to create a bridge gap ..."
msgstr ""
"Click on the selected geometry object perimeter to create a bridge gap ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:625
msgid "Making manual bridge gap..."
msgstr "Making manual bridge gap..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:648
msgid "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
msgstr "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:652
msgid "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
msgstr "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:662
msgid "[success] Added manual Bridge Gap."
msgstr "[success] Added manual Bridge Gap."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:679
msgid "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
msgstr "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:683
msgid ""
"[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
"Select one and try again."
msgstr ""
"[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
"Select one and try again."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:688
msgid ""
"[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
"Select a Gerber file and try again."
msgstr ""
"[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
"Select a Gerber file and try again."

View File

@ -1,298 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:05+0200\n"
"PO-Revision-Date: 2019-03-10 13:23+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:16
msgid "2-Sided PCB"
msgstr "2-Sided PCB"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:50
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:74
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:98
msgid "Mirror"
msgstr "Mirror"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:52
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:76
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:100
msgid ""
"Mirrors (flips) the specified object around \n"
"the specified axis. Does not create a new \n"
"object, but modifies it."
msgstr ""
"Mirrors (flips) the specified object around \n"
"the specified axis. Does not create a new \n"
"object, but modifies it."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:71
msgid "Excellon Object to be mirrored."
msgstr "Excellon Object to be mirrored."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:95
msgid "Geometry Obj to be mirrored."
msgstr "Geometry Obj to be mirrored."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:114
msgid "Mirror Axis:"
msgstr "Mirror Axis:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:116
msgid "Mirror vertically (X) or horizontally (Y)."
msgstr "Mirror vertically (X) or horizontally (Y)."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:127
msgid "Axis Ref:"
msgstr "Axis Ref:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:129
msgid ""
"The axis should pass through a <b>point</b> or cut\n"
" a specified <b>box</b> (in a FlatCAM object) through \n"
"the center."
msgstr ""
"The axis should pass through a <b>point</b> or cut\n"
" a specified <b>box</b> (in a FlatCAM object) through \n"
"the center."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:142
msgid "Point/Box Reference:"
msgstr "Point/Box Reference:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:144
msgid ""
"If 'Point' is selected above it store the coordinates (x, y) through which\n"
"the mirroring axis passes.\n"
"If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
"Geo).\n"
"Through the center of this object pass the mirroring axis selected above."
msgstr ""
"If 'Point' is selected above it store the coordinates (x, y) through which\n"
"the mirroring axis passes.\n"
"If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or "
"Geo).\n"
"Through the center of this object pass the mirroring axis selected above."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:150
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:198
msgid "Add"
msgstr "Add"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:152
msgid ""
"Add the coordinates in format <b>(x, y)</b> through which the mirroring "
"axis \n"
" selected in 'MIRROR AXIS' pass.\n"
"The (x, y) coordinates are captured by pressing SHIFT key\n"
"and left mouse button click on canvas or you can enter the coords manually."
msgstr ""
"Add the coordinates in format <b>(x, y)</b> through which the mirroring "
"axis \n"
" selected in 'MIRROR AXIS' pass.\n"
"The (x, y) coordinates are captured by pressing SHIFT key\n"
"and left mouse button click on canvas or you can enter the coords manually."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:172
msgid "Gerber Reference Box Object"
msgstr "Gerber Reference Box Object"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:173
msgid "Excellon Reference Box Object"
msgstr "Excellon Reference Box Object"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:174
msgid "Geometry Reference Box Object"
msgstr "Geometry Reference Box Object"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:183
msgid ">Alignment Drill Coordinates:"
msgstr ">Alignment Drill Coordinates:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:185
msgid ""
"Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
"each set of (x, y) coordinates\n"
"entered here, a pair of drills will be created:\n"
"\n"
"- one drill at the coordinates from the field\n"
"- one drill in mirror position over the axis selected above in the 'Mirror "
"Axis'."
msgstr ""
"Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For "
"each set of (x, y) coordinates\n"
"entered here, a pair of drills will be created:\n"
"\n"
"- one drill at the coordinates from the field\n"
"- one drill in mirror position over the axis selected above in the 'Mirror "
"Axis'."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:200
msgid ""
"Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
"on one side of the mirror axis.\n"
"\n"
"The coordinates set can be obtained:\n"
"- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
"- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
"field.\n"
"- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
"field and click Paste.\n"
"- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
msgstr ""
"Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
"on one side of the mirror axis.\n"
"\n"
"The coordinates set can be obtained:\n"
"- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
"- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the "
"field.\n"
"- press SHIFT key and left mouse clicking on canvas. Then RMB click in the "
"field and click Paste.\n"
"- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:214
msgid "Alignment Drill Diameter"
msgstr "Alignment Drill Diameter"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:216
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:227
msgid "Diameter of the drill for the alignment holes."
msgstr "Diameter of the drill for the alignment holes."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:225
msgid "Drill diam.:"
msgstr "Drill diam.:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:234
msgid "Create Excellon Object"
msgstr "Create Excellon Object"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:236
msgid ""
"Creates an Excellon Object containing the\n"
"specified alignment holes and their mirror\n"
"images."
msgstr ""
"Creates an Excellon Object containing the\n"
"specified alignment holes and their mirror\n"
"images."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:243
msgid "Reset"
msgstr "Reset"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:245
msgid "Resets all the fields."
msgstr "Resets all the fields."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:287
msgid "2-Sided Tool"
msgstr "2-Sided Tool"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:312
msgid ""
"[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
"missing. Add them and retry."
msgstr ""
"[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are "
"missing. Add them and retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:331
msgid ""
"[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
msgstr ""
"[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:348
msgid ""
"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
"retry."
msgstr ""
"[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and "
"retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:353
msgid ""
"[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
msgstr ""
"[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:360
msgid ""
"[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
"and retry."
msgstr ""
"[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them "
"and retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:382
msgid "[success] Excellon object with alignment drills created..."
msgstr "[success] Excellon object with alignment drills created..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:391
msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
msgstr "[WARNING_NOTCL] There is no Gerber object loaded ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:395
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:438
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:482
msgid ""
"[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
msgstr ""
"[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:405
msgid ""
"[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
"mirroring reference."
msgstr ""
"[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as "
"mirroring reference."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:415
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:459
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:496
msgid "[WARNING_NOTCL] There is no Box object loaded ..."
msgstr "[WARNING_NOTCL] There is no Box object loaded ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:425
msgid "[success] Gerber %s was mirrored..."
msgstr "[success] Gerber %s was mirrored..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:434
msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
msgstr "[WARNING_NOTCL] There is no Excellon object loaded ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:449
msgid ""
"[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
"coords and try again ..."
msgstr ""
"[WARNING_NOTCL] There are no Point coordinates in the Point field. Add "
"coords and try again ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:469
msgid "[success] Excellon %s was mirrored..."
msgstr "[success] Excellon %s was mirrored..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:478
msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
msgstr "[WARNING_NOTCL] There is no Geometry object loaded ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:506
msgid "[success] Geometry %s was mirrored..."
msgstr "[success] Geometry %s was mirrored..."

Binary file not shown.

View File

@ -1,197 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:06+0200\n"
"PO-Revision-Date: 2019-03-10 13:23+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:13
msgid "Film PCB"
msgstr "Film PCB"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:44
msgid "Object Type:"
msgstr "Object Type:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:46
msgid ""
"Specify the type of object for which to create the film.\n"
"The object can be of type: Gerber or Geometry.\n"
"The selection here decide the type of objects that will be\n"
"in the Film Object combobox."
msgstr ""
"Specify the type of object for which to create the film.\n"
"The object can be of type: Gerber or Geometry.\n"
"The selection here decide the type of objects that will be\n"
"in the Film Object combobox."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:59
msgid "Film Object:"
msgstr "Film Object:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:61
msgid "Object for which to create the film."
msgstr "Object for which to create the film."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:77
msgid "Box Type:"
msgstr "Box Type:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:79
msgid ""
"Specify the type of object to be used as an container for\n"
"film creation. It can be: Gerber or Geometry type.The selection here decide "
"the type of objects that will be\n"
"in the Box Object combobox."
msgstr ""
"Specify the type of object to be used as an container for\n"
"film creation. It can be: Gerber or Geometry type.The selection here decide "
"the type of objects that will be\n"
"in the Box Object combobox."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:92
msgid "Box Object:"
msgstr "Box Object:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:94
msgid ""
"The actual object that is used a container for the\n"
" selected object for which we create the film.\n"
"Usually it is the PCB outline but it can be also the\n"
"same object for which the film is created."
msgstr ""
"The actual object that is used a container for the\n"
" selected object for which we create the film.\n"
"Usually it is the PCB outline but it can be also the\n"
"same object for which the film is created."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:104
msgid "Film Type:"
msgstr "Film Type:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:106
msgid ""
"Generate a Positive black film or a Negative film.\n"
"Positive means that it will print the features\n"
"with black on a white canvas.\n"
"Negative means that it will print the features\n"
"with white on a black canvas.\n"
"The Film format is SVG."
msgstr ""
"Generate a Positive black film or a Negative film.\n"
"Positive means that it will print the features\n"
"with black on a white canvas.\n"
"Negative means that it will print the features\n"
"with white on a black canvas.\n"
"The Film format is SVG."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:118
msgid "Border:"
msgstr "Border:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:120
msgid ""
"Specify a border around the object.\n"
"Only for negative film.\n"
"It helps if we use as a Box Object the same \n"
"object as in Film Object. It will create a thick\n"
"black bar around the actual print allowing for a\n"
"better delimitation of the outline features which are of\n"
"white color like the rest and which may confound with the\n"
"surroundings if not for this border."
msgstr ""
"Specify a border around the object.\n"
"Only for negative film.\n"
"It helps if we use as a Box Object the same \n"
"object as in Film Object. It will create a thick\n"
"black bar around the actual print allowing for a\n"
"better delimitation of the outline features which are of\n"
"white color like the rest and which may confound with the\n"
"surroundings if not for this border."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:132
msgid "Scale Stroke:"
msgstr "Scale Stroke:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:134
msgid ""
"Scale the line stroke thickness of each feature in the SVG file.\n"
"It means that the line that envelope each SVG feature will be thicker or "
"thinner,\n"
"therefore the fine features may be more affected by this parameter."
msgstr ""
"Scale the line stroke thickness of each feature in the SVG file.\n"
"It means that the line that envelope each SVG feature will be thicker or "
"thinner,\n"
"therefore the fine features may be more affected by this parameter."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:145
msgid "Save Film"
msgstr "Save Film"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:147
msgid ""
"Create a Film for the selected object, within\n"
"the specified box. Does not create a new \n"
" FlatCAM object, but directly save it in SVG format\n"
"which can be opened with Inkscape."
msgstr ""
"Create a Film for the selected object, within\n"
"the specified box. Does not create a new \n"
" FlatCAM object, but directly save it in SVG format\n"
"which can be opened with Inkscape."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:188
msgid "Film Tool"
msgstr "Film Tool"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:209
msgid ""
"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
msgstr ""
"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:215
msgid ""
"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
msgstr ""
"[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:225
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:232
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:239
msgid "Generating Film ..."
msgstr "Generating Film ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:244
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:248
msgid "Export SVG positive"
msgstr "Export SVG positive"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:253
msgid "[WARNING_NOTCL]Export SVG positive cancelled."
msgstr "[WARNING_NOTCL]Export SVG positive cancelled."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:260
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:264
msgid "Export SVG negative"
msgstr "Export SVG negative"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:269
msgid "[WARNING_NOTCL]Export SVG negative cancelled."
msgstr "[WARNING_NOTCL]Export SVG negative cancelled."

Binary file not shown.

View File

@ -1,142 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:07+0200\n"
"PO-Revision-Date: 2019-03-10 13:23+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:13
msgid "Image as Object"
msgstr "Image as Object"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:19
msgid "Image to PCB"
msgstr "Image to PCB"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:41
msgid "Object Type:"
msgstr "Object Type:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:43
msgid ""
"Specify the type of object to create from the image.\n"
"It can be of type: Gerber or Geometry."
msgstr ""
"Specify the type of object to create from the image.\n"
"It can be of type: Gerber or Geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:51
msgid "DPI value:"
msgstr "DPI value:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:53
msgid "Specify a DPI value for the image."
msgstr "Specify a DPI value for the image."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:60
msgid "Level of detail"
msgstr "Level of detail"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:69
msgid "Image type"
msgstr "Image type"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:71
msgid ""
"Choose a method for the image interpretation.\n"
"B/W means a black & white image. Color means a colored image."
msgstr ""
"Choose a method for the image interpretation.\n"
"B/W means a black & white image. Color means a colored image."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:78
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:91
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:102
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:113
msgid "Mask value"
msgstr "Mask value"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:80
msgid ""
"Mask for monochrome image.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry.\n"
"0 means no detail and 255 means everything \n"
"(which is totally black)."
msgstr ""
"Mask for monochrome image.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry.\n"
"0 means no detail and 255 means everything \n"
"(which is totally black)."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:93
msgid ""
"Mask for RED color.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry."
msgstr ""
"Mask for RED color.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:104
msgid ""
"Mask for GREEN color.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry."
msgstr ""
"Mask for GREEN color.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:115
msgid ""
"Mask for BLUE color.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry."
msgstr ""
"Mask for BLUE color.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:127
msgid "Import image"
msgstr "Import image"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:129
msgid "Open a image of raster type and then import it in FlatCAM."
msgstr "Open a image of raster type and then import it in FlatCAM."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:155
msgid "Image Tool"
msgstr "Image Tool"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:185
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:188
msgid "Import IMAGE"
msgstr "Import IMAGE"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:198
msgid "Open cancelled."
msgstr "Open cancelled."

View File

@ -1,92 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:08+0200\n"
"PO-Revision-Date: 2019-03-10 13:24+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:16
msgid "Measurement"
msgstr "Measurement"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:37
msgid "Start"
msgstr "Start"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:37
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:40
msgid "Coords"
msgstr "Coords"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:38
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:89
msgid "This is measuring Start point coordinates."
msgstr "This is measuring Start point coordinates."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:40
msgid "Stop"
msgstr "Stop"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:41
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:94
msgid "This is the measuring Stop point coordinates."
msgstr "This is the measuring Stop point coordinates."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:44
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:99
msgid "This is the distance measured over the X axis."
msgstr "This is the distance measured over the X axis."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:47
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:105
msgid "This is the distance measured over the Y axis."
msgstr "This is the distance measured over the Y axis."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:49
msgid "DISTANCE"
msgstr "DISTANCE"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:50
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:111
msgid "This is the point to point Euclidian distance."
msgstr "This is the point to point Euclidian distance."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:53
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:60
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:67
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:74
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:81
msgid "Those are the units in which the distance is measured."
msgstr "Those are the units in which the distance is measured."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:114
msgid "Measure"
msgstr "Measure"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:173
msgid "Meas. Tool"
msgstr "Meas. Tool"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:266
msgid "MEASURING: Click on the Start point ..."
msgstr "MEASURING: Click on the Start point ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:295
msgid "MEASURING: Click on the Destination point ..."
msgstr "MEASURING: Click on the Destination point ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:316
msgid "MEASURING: Result D(x) = %.4f | D(y) = %.4f | Distance = %.4f"
msgstr "MEASURING: Result D(x) = %.4f | D(y) = %.4f | Distance = %.4f"

Binary file not shown.

View File

@ -1,62 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:08+0200\n"
"PO-Revision-Date: 2019-03-10 13:24+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:15
msgid "Move"
msgstr "Move"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:70
msgid "MOVE: Click on the Start point ..."
msgstr "MOVE: Click on the Start point ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:77
msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
msgstr "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:99
msgid "MOVE: Click on the Destination point ..."
msgstr "MOVE: Click on the Destination point ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:117
msgid "Moving ..."
msgstr "Moving ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:124
msgid "[WARNING_NOTCL] No object(s) selected."
msgstr "[WARNING_NOTCL] No object(s) selected."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:147
msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:153
msgid "[success]%s object was moved ..."
msgstr "[success]%s object was moved ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:163
msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
msgstr "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:191
msgid "[WARNING_NOTCL]Move action cancelled."
msgstr "[WARNING_NOTCL]Move action cancelled."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:203
msgid "[WARNING_NOTCL]Object(s) not selected"
msgstr "[WARNING_NOTCL]Object(s) not selected"

View File

@ -1,337 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:09+0200\n"
"PO-Revision-Date: 2019-03-10 13:24+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:13
msgid "Non-Copper Clearing"
msgstr "Non-Copper Clearing"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:51
msgid "Gerber object to be cleared of excess copper. "
msgstr "Gerber object to be cleared of excess copper. "
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:59
msgid "Tools Table"
msgstr "Tools Table"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:61
msgid ""
"Tools pool from which the algorithm\n"
"will pick the ones used for copper clearing."
msgstr ""
"Tools pool from which the algorithm\n"
"will pick the ones used for copper clearing."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:70
msgid "Diameter"
msgstr "Diameter"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:76
msgid ""
"This is the Tool Number.\n"
"Non copper clearing will start with the tool with the biggest \n"
"diameter, continuing until there are no more tools.\n"
"Only tools that create NCC clearing geometry will still be present\n"
"in the resulting geometry. This is because with some tools\n"
"this function will not be able to create painting geometry."
msgstr ""
"This is the Tool Number.\n"
"Non copper clearing will start with the tool with the biggest \n"
"diameter, continuing until there are no more tools.\n"
"Only tools that create NCC clearing geometry will still be present\n"
"in the resulting geometry. This is because with some tools\n"
"this function will not be able to create painting geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:84
msgid ""
"Tool Diameter. It's value (in current FlatCAM units) \n"
"is the cut width into the material."
msgstr ""
"Tool Diameter. It's value (in current FlatCAM units) \n"
"is the cut width into the material."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:88
msgid ""
"The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
"informative only. Being circular, <BR>the cut width in material is exactly "
"the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
"to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
"parameter in the resulting geometry UI form and enable two additional UI "
"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
"those two values will adjust the Z-Cut parameter such as the cut width into "
"material will be equal with the value in the Tool Diameter column of this "
"table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
"the Operation Type in the resulting geometry as Isolation."
msgstr ""
"The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
"informative only. Being circular, <BR>the cut width in material is exactly "
"the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
"to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
"parameter in the resulting geometry UI form and enable two additional UI "
"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
"those two values will adjust the Z-Cut parameter such as the cut width into "
"material will be equal with the value in the Tool Diameter column of this "
"table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
"the Operation Type in the resulting geometry as Isolation."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:107
msgid "Tool Dia"
msgstr "Tool Dia"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:109
msgid "Diameter for the new tool to add in the Tool Table"
msgstr "Diameter for the new tool to add in the Tool Table"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:121
msgid "Add"
msgstr "Add"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:123
msgid ""
"Add a new tool to the Tool Table\n"
"with the diameter specified above."
msgstr ""
"Add a new tool to the Tool Table\n"
"with the diameter specified above."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:133
msgid "Delete"
msgstr "Delete"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:135
msgid ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
msgstr ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:152
msgid "Overlap:"
msgstr "Overlap:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:154
msgid ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
"Example:\n"
"A value here of 0.25 means 25% from the tool diameter found above.\n"
"\n"
"Adjust the value starting with lower values\n"
"and increasing it if areas that should be cleared are still \n"
"not cleared.\n"
"Lower values = faster processing, faster execution on PCB.\n"
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
msgstr ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
"Example:\n"
"A value here of 0.25 means 25% from the tool diameter found above.\n"
"\n"
"Adjust the value starting with lower values\n"
"and increasing it if areas that should be cleared are still \n"
"not cleared.\n"
"Lower values = faster processing, faster execution on PCB.\n"
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:168
msgid "Margin:"
msgstr "Margin:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:170
msgid "Bounding box margin."
msgstr "Bounding box margin."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:177
msgid "Method:"
msgstr "Method:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:179
msgid ""
"Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
"<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
"lines."
msgstr ""
"Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
"<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
"lines."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:193
msgid "Connect:"
msgstr "Connect:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:195
msgid ""
"Draw lines between resulting\n"
"segments to minimize tool lifts."
msgstr ""
"Draw lines between resulting\n"
"segments to minimize tool lifts."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:202
msgid "Contour:"
msgstr "Contour:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:204
msgid ""
"Cut around the perimeter of the polygon\n"
"to trim rough edges."
msgstr ""
"Cut around the perimeter of the polygon\n"
"to trim rough edges."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:211
msgid "Rest M.:"
msgstr "Rest M.:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:213
msgid ""
"If checked, use 'rest machining'.\n"
"Basically it will clear copper outside PCB features,\n"
"using the biggest tool and continue with the next tools,\n"
"from bigger to smaller, to clear areas of copper that\n"
"could not be cleared by previous tool, until there is\n"
"no more copper to clear or there are no more tools.\n"
"If not checked, use the standard algorithm."
msgstr ""
"If checked, use 'rest machining'.\n"
"Basically it will clear copper outside PCB features,\n"
"using the biggest tool and continue with the next tools,\n"
"from bigger to smaller, to clear areas of copper that\n"
"could not be cleared by previous tool, until there is\n"
"no more copper to clear or there are no more tools.\n"
"If not checked, use the standard algorithm."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:225
msgid "Generate Geometry"
msgstr "Generate Geometry"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:227
msgid ""
"Create the Geometry Object\n"
"for non-copper routing."
msgstr ""
"Create the Geometry Object\n"
"for non-copper routing."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:267
msgid "NCC Tool"
msgstr "NCC Tool"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:462
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:609
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:621
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:467
msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:471
msgid ""
"[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
"format."
msgstr ""
"[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
"format."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:495
msgid "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
msgstr "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:500
msgid "[success] New tool added to Tool Table."
msgstr "[success] New tool added to Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:533
msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
msgstr "[ERROR_NOTCL] Wrong value format entered, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:542
msgid "[success] Tool from Tool Table was edited."
msgstr "[success] Tool from Tool Table was edited."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:553
msgid ""
"[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
"Table."
msgstr ""
"[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
"Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:592
msgid "[WARNING_NOTCL]Delete failed. Select a tool to delete."
msgstr "[WARNING_NOTCL]Delete failed. Select a tool to delete."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:597
msgid "[success] Tool(s) deleted from Tool Table."
msgstr "[success] Tool(s) deleted from Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:643
msgid "[ERROR_NOTCL]Could not retrieve object: %s"
msgstr "[ERROR_NOTCL]Could not retrieve object: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:650
msgid "[ERROR_NOTCL]No Gerber file available."
msgstr "[ERROR_NOTCL]No Gerber file available."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:688
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:810
msgid "Clearing Non-Copper areas."
msgstr "Clearing Non-Copper areas."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:706
msgid "[success] Non-Copper Clearing with ToolDia = %s started."
msgstr "[success] Non-Copper Clearing with ToolDia = %s started."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:775
msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:780
msgid "[success] NCC Tool finished."
msgstr "[success] NCC Tool finished."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:782
msgid ""
"[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
"cleared. Check the result."
msgstr ""
"[WARNING_NOTCL] NCC Tool finished but some PCB features could not be "
"cleared. Check the result."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:790
msgid "Tools"
msgstr "Tools"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:828
msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
msgstr "[success] Non-Copper Rest Clearing with ToolDia = %s started."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:926
msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
msgstr "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:934
msgid ""
"[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
"settings."
msgstr ""
"[ERROR_NOTCL] NCC Tool finished but could not clear the object with current "
"settings."

Binary file not shown.

View File

@ -1,404 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:11+0200\n"
"PO-Revision-Date: 2019-03-10 13:25+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:12
msgid "Paint Area"
msgstr "Paint Area"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:48
msgid "Geometry:"
msgstr "Geometry:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:50
msgid "Geometry object to be painted. "
msgstr "Geometry object to be painted. "
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:57
msgid "Tools Table"
msgstr "Tools Table"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:59
msgid ""
"Tools pool from which the algorithm\n"
"will pick the ones used for painting."
msgstr ""
"Tools pool from which the algorithm\n"
"will pick the ones used for painting."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:68
msgid "Diameter"
msgstr "Diameter"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:74
msgid ""
"This is the Tool Number.\n"
"Painting will start with the tool with the biggest diameter,\n"
"continuing until there are no more tools.\n"
"Only tools that create painting geometry will still be present\n"
"in the resulting geometry. This is because with some tools\n"
"this function will not be able to create painting geometry."
msgstr ""
"This is the Tool Number.\n"
"Painting will start with the tool with the biggest diameter,\n"
"continuing until there are no more tools.\n"
"Only tools that create painting geometry will still be present\n"
"in the resulting geometry. This is because with some tools\n"
"this function will not be able to create painting geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:82
msgid ""
"Tool Diameter. It's value (in current FlatCAM units) \n"
"is the cut width into the material."
msgstr ""
"Tool Diameter. It's value (in current FlatCAM units) \n"
"is the cut width into the material."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:86
msgid ""
"The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
"informative only. Being circular, <BR>the cut width in material is exactly "
"the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
"to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
"parameter in the resulting geometry UI form and enable two additional UI "
"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
"those two values will adjust the Z-Cut parameter such as the cut width into "
"material will be equal with the value in the Tool Diameter column of this "
"table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
"the Operation Type in the resulting geometry as Isolation."
msgstr ""
"The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is "
"informative only. Being circular, <BR>the cut width in material is exactly "
"the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference "
"to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut "
"parameter in the resulting geometry UI form and enable two additional UI "
"form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting "
"those two values will adjust the Z-Cut parameter such as the cut width into "
"material will be equal with the value in the Tool Diameter column of this "
"table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select "
"the Operation Type in the resulting geometry as Isolation."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:105
msgid "Tool Dia"
msgstr "Tool Dia"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:107
msgid "Diameter for the new tool."
msgstr "Diameter for the new tool."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:119
msgid "Add"
msgstr "Add"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:121
msgid ""
"Add a new tool to the Tool Table\n"
"with the diameter specified above."
msgstr ""
"Add a new tool to the Tool Table\n"
"with the diameter specified above."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:131
msgid "Delete"
msgstr "Delete"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:133
msgid ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
msgstr ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:148
msgid "Overlap:"
msgstr "Overlap:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:150
msgid ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
"Example:\n"
"A value here of 0.25 means 25% from the tool diameter found above.\n"
"\n"
"Adjust the value starting with lower values\n"
"and increasing it if areas that should be painted are still \n"
"not painted.\n"
"Lower values = faster processing, faster execution on PCB.\n"
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
msgstr ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
"Example:\n"
"A value here of 0.25 means 25% from the tool diameter found above.\n"
"\n"
"Adjust the value starting with lower values\n"
"and increasing it if areas that should be painted are still \n"
"not painted.\n"
"Lower values = faster processing, faster execution on PCB.\n"
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:165
msgid "Margin:"
msgstr "Margin:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:167
msgid ""
"Distance by which to avoid\n"
"the edges of the polygon to\n"
"be painted."
msgstr ""
"Distance by which to avoid\n"
"the edges of the polygon to\n"
"be painted."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:176
msgid "Method:"
msgstr "Method:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:178
msgid ""
"Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
"<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
"lines."
msgstr ""
"Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards."
"<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel "
"lines."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:192
msgid "Connect:"
msgstr "Connect:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:194
msgid ""
"Draw lines between resulting\n"
"segments to minimize tool lifts."
msgstr ""
"Draw lines between resulting\n"
"segments to minimize tool lifts."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:201
msgid "Contour:"
msgstr "Contour:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:203
msgid ""
"Cut around the perimeter of the polygon\n"
"to trim rough edges."
msgstr ""
"Cut around the perimeter of the polygon\n"
"to trim rough edges."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:210
msgid "Rest M.:"
msgstr "Rest M.:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:212
msgid ""
"If checked, use 'rest machining'.\n"
"Basically it will clear copper outside PCB features,\n"
"using the biggest tool and continue with the next tools,\n"
"from bigger to smaller, to clear areas of copper that\n"
"could not be cleared by previous tool, until there is\n"
"no more copper to clear or there are no more tools.\n"
"\n"
"If not checked, use the standard algorithm."
msgstr ""
"If checked, use 'rest machining'.\n"
"Basically it will clear copper outside PCB features,\n"
"using the biggest tool and continue with the next tools,\n"
"from bigger to smaller, to clear areas of copper that\n"
"could not be cleared by previous tool, until there is\n"
"no more copper to clear or there are no more tools.\n"
"\n"
"If not checked, use the standard algorithm."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:225
msgid "Selection:"
msgstr "Selection:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:227
msgid ""
"How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
"mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
"polygons."
msgstr ""
"How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left "
"mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all "
"polygons."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:242
msgid "Create Paint Geometry"
msgstr "Create Paint Geometry"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:244
msgid ""
"After clicking here, click inside<BR>the polygon you wish to be painted if "
"<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
"start after click.<BR>A new Geometry object with the tool<BR>paths will be "
"created."
msgstr ""
"After clicking here, click inside<BR>the polygon you wish to be painted if "
"<B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will "
"start after click.<BR>A new Geometry object with the tool<BR>paths will be "
"created."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:325
msgid "Paint Tool"
msgstr "Paint Tool"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:522
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:592
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:727
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:818
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:973
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:528
msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
msgstr "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:552
msgid "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
msgstr "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:557
msgid "[success] New tool added to Tool Table."
msgstr "[success] New tool added to Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:600
msgid "[success] Tool from Tool Table was edited."
msgstr "[success] Tool from Tool Table was edited."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:611
msgid ""
"[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
"Table."
msgstr ""
"[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
"Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:708
msgid "[WARNING_NOTCL]Delete failed. Select a tool to delete."
msgstr "[WARNING_NOTCL]Delete failed. Select a tool to delete."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:713
msgid "[success] Tool(s) deleted from Tool Table."
msgstr "[success] Tool(s) deleted from Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:717
msgid "geometry_on_paint_button"
msgstr "geometry_on_paint_button"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:719
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:764
msgid "[WARNING_NOTCL]Click inside the desired polygon."
msgstr "[WARNING_NOTCL]Click inside the desired polygon."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:741
msgid "[ERROR_NOTCL]Could not retrieve object: %s"
msgstr "[ERROR_NOTCL]Could not retrieve object: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:745
msgid "[ERROR_NOTCL]Object not found: %s"
msgstr "[ERROR_NOTCL]Object not found: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:751
msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
msgstr "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:773
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:977
msgid "Painting polygon..."
msgstr "Painting polygon..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:825
msgid "[WARNING] No polygon found."
msgstr "[WARNING] No polygon found."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:828
msgid "Painting polygon."
msgstr "Painting polygon."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:870
msgid "[ERROR_NOTCL] Geometry could not be painted completely"
msgstr "[ERROR_NOTCL] Geometry could not be painted completely"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:896
msgid ""
"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
"different strategy of paint\n"
"%s"
msgstr ""
"[ERROR] Could not do Paint. Try a different combination of parameters. Or a "
"different strategy of paint\n"
"%s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:938
msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
msgstr "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:944
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1236
msgid "Polygon Paint started ..."
msgstr "Polygon Paint started ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1092
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1181
msgid ""
"[ERROR] Could not do Paint All. Try a different combination of parameters. "
"Or a different Method of paint\n"
"%s"
msgstr ""
"[ERROR] Could not do Paint All. Try a different combination of parameters. "
"Or a different Method of paint\n"
"%s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1116
msgid ""
"[ERROR] There is no Painting Geometry in the file.\n"
"Usually it means that the tool diameter is too big for the painted "
"geometry.\n"
"Change the painting parameters and try again."
msgstr ""
"[ERROR] There is no Painting Geometry in the file.\n"
"Usually it means that the tool diameter is too big for the painted "
"geometry.\n"
"Change the painting parameters and try again."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1125
msgid "[success] Paint All Done."
msgstr "[success] Paint All Done."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1211
msgid ""
"[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
"Usually it means that the tool diameter is too big for the painted "
"geometry.\n"
"Change the painting parameters and try again."
msgstr ""
"[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
"Usually it means that the tool diameter is too big for the painted "
"geometry.\n"
"Change the painting parameters and try again."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1220
msgid "[success] Paint All with Rest-Machining done."
msgstr "[success] Paint All with Rest-Machining done."

View File

@ -1,239 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:11+0200\n"
"PO-Revision-Date: 2019-03-10 13:25+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:13
msgid "Panelize PCB"
msgstr "Panelize PCB"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:44
msgid "Object Type:"
msgstr "Object Type:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:46
msgid ""
"Specify the type of object to be panelized\n"
"It can be of type: Gerber, Excellon or Geometry.\n"
"The selection here decide the type of objects that will be\n"
"in the Object combobox."
msgstr ""
"Specify the type of object to be panelized\n"
"It can be of type: Gerber, Excellon or Geometry.\n"
"The selection here decide the type of objects that will be\n"
"in the Object combobox."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:59
msgid "Object:"
msgstr "Object:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:61
msgid ""
"Object to be panelized. This means that it will\n"
"be duplicated in an array of rows and columns."
msgstr ""
"Object to be panelized. This means that it will\n"
"be duplicated in an array of rows and columns."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:77
msgid "Box Type:"
msgstr "Box Type:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:79
msgid ""
"Specify the type of object to be used as an container for\n"
"panelization. It can be: Gerber or Geometry type.\n"
"The selection here decide the type of objects that will be\n"
"in the Box Object combobox."
msgstr ""
"Specify the type of object to be used as an container for\n"
"panelization. It can be: Gerber or Geometry type.\n"
"The selection here decide the type of objects that will be\n"
"in the Box Object combobox."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:92
msgid "Box Object:"
msgstr "Box Object:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:94
msgid ""
"The actual object that is used a container for the\n"
" selected object that is to be panelized."
msgstr ""
"The actual object that is used a container for the\n"
" selected object that is to be panelized."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:101
msgid "Spacing cols:"
msgstr "Spacing cols:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:103
msgid ""
"Spacing between columns of the desired panel.\n"
"In current units."
msgstr ""
"Spacing between columns of the desired panel.\n"
"In current units."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:110
msgid "Spacing rows:"
msgstr "Spacing rows:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:112
msgid ""
"Spacing between rows of the desired panel.\n"
"In current units."
msgstr ""
"Spacing between rows of the desired panel.\n"
"In current units."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:119
msgid "Columns:"
msgstr "Columns:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:121
msgid "Number of columns of the desired panel"
msgstr "Number of columns of the desired panel"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:127
msgid "Rows:"
msgstr "Rows:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:129
msgid "Number of rows of the desired panel"
msgstr "Number of rows of the desired panel"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:136
msgid "Panel Type:"
msgstr "Panel Type:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:138
msgid ""
"Choose the type of object for the panel object:\n"
"- Geometry\n"
"- Gerber"
msgstr ""
"Choose the type of object for the panel object:\n"
"- Geometry\n"
"- Gerber"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:146
msgid "Constrain panel within:"
msgstr "Constrain panel within:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:148
msgid ""
"Area define by DX and DY within to constrain the panel.\n"
"DX and DY values are in current units.\n"
"Regardless of how many columns and rows are desired,\n"
"the final panel will have as many columns and rows as\n"
"they fit completely within selected area."
msgstr ""
"Area define by DX and DY within to constrain the panel.\n"
"DX and DY values are in current units.\n"
"Regardless of how many columns and rows are desired,\n"
"the final panel will have as many columns and rows as\n"
"they fit completely within selected area."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:157
msgid "Width (DX):"
msgstr "Width (DX):"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:159
msgid ""
"The width (DX) within which the panel must fit.\n"
"In current units."
msgstr ""
"The width (DX) within which the panel must fit.\n"
"In current units."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:165
msgid "Height (DY):"
msgstr "Height (DY):"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:167
msgid ""
"The height (DY)within which the panel must fit.\n"
"In current units."
msgstr ""
"The height (DY)within which the panel must fit.\n"
"In current units."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:180
msgid "Panelize Object"
msgstr "Panelize Object"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:182
msgid ""
"Panelize the specified object around the specified box.\n"
"In other words it creates multiple copies of the source object,\n"
"arranged in a 2D array of rows and columns."
msgstr ""
"Panelize the specified object around the specified box.\n"
"In other words it creates multiple copies of the source object,\n"
"arranged in a 2D array of rows and columns."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:278
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:292
msgid "[ERROR_NOTCL]Could not retrieve object: %s"
msgstr "[ERROR_NOTCL]Could not retrieve object: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:284
msgid "[ERROR_NOTCL]Object not found: %s"
msgstr "[ERROR_NOTCL]Object not found: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:296
msgid "[WARNING]No object Box. Using instead %s"
msgstr "[WARNING]No object Box. Using instead %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:308
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:320
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:333
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:346
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:358
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:369
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:377
msgid ""
"[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
"integer."
msgstr ""
"[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive "
"integer."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:481
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:590
msgid "Generating panel ... Please wait."
msgstr "Generating panel ... Please wait."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:584
msgid "[success]Panel done..."
msgstr "[success]Panel done..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:587
msgid ""
"[WARNING] Too big for the constrain area. Final panel has %s columns and %s "
"rows"
msgstr ""
"[WARNING] Too big for the constrain area. Final panel has %s columns and %s "
"rows"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:595
msgid "[success]Panel created successfully."
msgstr "[success]Panel created successfully."

View File

@ -1,38 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:12+0200\n"
"PO-Revision-Date: 2019-03-10 13:25+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:13
msgid "Properties"
msgstr "Properties"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:87
msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
msgstr "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:88
msgid "Tools"
msgstr "Tools"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:94
msgid "[success] Object Properties are displayed."
msgstr "[success] Object Properties are displayed."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:95
msgid "Properties Tool"
msgstr "Properties Tool"

Binary file not shown.

View File

@ -1,26 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:13+0200\n"
"PO-Revision-Date: 2019-03-10 13:26+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolShell.py:65
msgid "...proccessing..."
msgstr "...proccessing..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolShell.py:67
msgid "...proccessing... [%s]"
msgstr "...proccessing... [%s]"

View File

@ -1,507 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:14+0200\n"
"PO-Revision-Date: 2019-03-10 13:26+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:26
msgid "Solder Paste Tool"
msgstr "Solder Paste Tool"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:54
msgid "Gerber Solder paste object. "
msgstr "Gerber Solder paste object. "
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:59
msgid "Tools Table"
msgstr "Tools Table"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:61
msgid ""
"Tools pool from which the algorithm\n"
"will pick the ones used for dispensing solder paste."
msgstr ""
"Tools pool from which the algorithm\n"
"will pick the ones used for dispensing solder paste."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:70
msgid "Diameter"
msgstr "Diameter"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:76
msgid ""
"This is the Tool Number.\n"
"The solder dispensing will start with the tool with the biggest \n"
"diameter, continuing until there are no more Nozzle tools.\n"
"If there are no longer tools but there are still pads not covered\n"
" with solder paste, the app will issue a warning message box."
msgstr ""
"This is the Tool Number.\n"
"The solder dispensing will start with the tool with the biggest \n"
"diameter, continuing until there are no more Nozzle tools.\n"
"If there are no longer tools but there are still pads not covered\n"
" with solder paste, the app will issue a warning message box."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:83
msgid ""
"Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
"is the width of the solder paste dispensed."
msgstr ""
"Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
"is the width of the solder paste dispensed."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:90
msgid "New Nozzle Tool"
msgstr "New Nozzle Tool"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:92
msgid "Diameter for the new Nozzle tool to add in the Tool Table"
msgstr "Diameter for the new Nozzle tool to add in the Tool Table"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:104
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:464
msgid "Add"
msgstr "Add"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:106
msgid ""
"Add a new nozzle tool to the Tool Table\n"
"with the diameter specified above."
msgstr ""
"Add a new nozzle tool to the Tool Table\n"
"with the diameter specified above."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:110
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:466
msgid "Delete"
msgstr "Delete"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:112
msgid ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
msgstr ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:116
msgid "Generate Geo"
msgstr "Generate Geo"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:118
msgid "Generate solder paste dispensing geometry."
msgstr "Generate solder paste dispensing geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:131
msgid "STEP 1"
msgstr "STEP 1"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:133
msgid ""
"First step is to select a number of nozzle tools for usage\n"
"and then optionally modify the GCode parameters bellow."
msgstr ""
"First step is to select a number of nozzle tools for usage\n"
"and then optionally modify the GCode parameters bellow."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:136
msgid ""
"Select tools.\n"
"Modify parameters."
msgstr ""
"Select tools.\n"
"Modify parameters."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:155
msgid "Z Dispense Start:"
msgstr "Z Dispense Start:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:157
msgid "The height (Z) when solder paste dispensing starts."
msgstr "The height (Z) when solder paste dispensing starts."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:163
msgid "Z Dispense:"
msgstr "Z Dispense:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:165
msgid "The height (Z) when doing solder paste dispensing."
msgstr "The height (Z) when doing solder paste dispensing."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:172
msgid "Z Dispense Stop:"
msgstr "Z Dispense Stop:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:174
msgid "The height (Z) when solder paste dispensing stops."
msgstr "The height (Z) when solder paste dispensing stops."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:180
msgid "Z Travel:"
msgstr "Z Travel:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:182
msgid ""
"The height (Z) for travel between pads\n"
"(without dispensing solder paste)."
msgstr ""
"The height (Z) for travel between pads\n"
"(without dispensing solder paste)."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:189
msgid "Z Toolchange:"
msgstr "Z Toolchange:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:191
msgid "The height (Z) for tool (nozzle) change."
msgstr "The height (Z) for tool (nozzle) change."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:197
msgid "XY Toolchange:"
msgstr "XY Toolchange:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:199
msgid ""
"The X,Y location for tool (nozzle) change.\n"
"The format is (x, y) where x and y are real numbers."
msgstr ""
"The X,Y location for tool (nozzle) change.\n"
"The format is (x, y) where x and y are real numbers."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:206
msgid "Feedrate X-Y:"
msgstr "Feedrate X-Y:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:208
msgid "Feedrate (speed) while moving on the X-Y plane."
msgstr "Feedrate (speed) while moving on the X-Y plane."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:214
msgid "Feedrate Z:"
msgstr "Feedrate Z:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:216
msgid ""
"Feedrate (speed) while moving vertically\n"
"(on Z plane)."
msgstr ""
"Feedrate (speed) while moving vertically\n"
"(on Z plane)."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:223
msgid "Feedrate Z Dispense:"
msgstr "Feedrate Z Dispense:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:225
msgid ""
"Feedrate (speed) while moving up vertically\n"
" to Dispense position (on Z plane)."
msgstr ""
"Feedrate (speed) while moving up vertically\n"
" to Dispense position (on Z plane)."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:232
msgid "Spindle Speed FWD:"
msgstr "Spindle Speed FWD:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:234
msgid ""
"The dispenser speed while pushing solder paste\n"
"through the dispenser nozzle."
msgstr ""
"The dispenser speed while pushing solder paste\n"
"through the dispenser nozzle."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:241
msgid "Dwell FWD:"
msgstr "Dwell FWD:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:243
msgid "Pause after solder dispensing."
msgstr "Pause after solder dispensing."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:249
msgid "Spindle Speed REV:"
msgstr "Spindle Speed REV:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:251
msgid ""
"The dispenser speed while retracting solder paste\n"
"through the dispenser nozzle."
msgstr ""
"The dispenser speed while retracting solder paste\n"
"through the dispenser nozzle."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:258
msgid "Dwell REV:"
msgstr "Dwell REV:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:260
msgid ""
"Pause after solder paste dispenser retracted,\n"
"to allow pressure equilibrium."
msgstr ""
"Pause after solder paste dispenser retracted,\n"
"to allow pressure equilibrium."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:266
msgid "PostProcessors:"
msgstr "PostProcessors:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:268
msgid "Files that control the GCode generation."
msgstr "Files that control the GCode generation."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:279
msgid "Generate GCode"
msgstr "Generate GCode"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:281
msgid ""
"Generate GCode for Solder Paste dispensing\n"
"on PCB pads."
msgstr ""
"Generate GCode for Solder Paste dispensing\n"
"on PCB pads."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:297
msgid "STEP 2:"
msgstr "STEP 2:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:299
msgid ""
"Second step is to create a solder paste dispensing\n"
"geometry out of an Solder Paste Mask Gerber file."
msgstr ""
"Second step is to create a solder paste dispensing\n"
"geometry out of an Solder Paste Mask Gerber file."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:315
msgid "Geo Result:"
msgstr "Geo Result:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:317
msgid ""
"Geometry Solder Paste object.\n"
"The name of the object has to end in:\n"
"'_solderpaste' as a protection."
msgstr ""
"Geometry Solder Paste object.\n"
"The name of the object has to end in:\n"
"'_solderpaste' as a protection."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:326
msgid "STEP 3:"
msgstr "STEP 3:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:328
msgid ""
"Third step is to select a solder paste dispensing geometry,\n"
"and then generate a CNCJob object.\n"
"\n"
"REMEMBER: if you want to create a CNCJob with new parameters,\n"
"first you need to generate a geometry with those new params,\n"
"and only after that you can generate an updated CNCJob."
msgstr ""
"Third step is to select a solder paste dispensing geometry,\n"
"and then generate a CNCJob object.\n"
"\n"
"REMEMBER: if you want to create a CNCJob with new parameters,\n"
"first you need to generate a geometry with those new params,\n"
"and only after that you can generate an updated CNCJob."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:348
msgid "CNC Result:"
msgstr "CNC Result:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:350
msgid ""
"CNCJob Solder paste object.\n"
"In order to enable the GCode save section,\n"
"the name of the object has to end in:\n"
"'_solderpaste' as a protection."
msgstr ""
"CNCJob Solder paste object.\n"
"In order to enable the GCode save section,\n"
"the name of the object has to end in:\n"
"'_solderpaste' as a protection."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:360
msgid "View GCode"
msgstr "View GCode"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:362
msgid ""
"View the generated GCode for Solder Paste dispensing\n"
"on PCB pads."
msgstr ""
"View the generated GCode for Solder Paste dispensing\n"
"on PCB pads."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:366
msgid "Save GCode"
msgstr "Save GCode"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:368
msgid ""
"Save the generated GCode for Solder Paste dispensing\n"
"on PCB pads, to a file."
msgstr ""
"Save the generated GCode for Solder Paste dispensing\n"
"on PCB pads, to a file."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:372
msgid "STEP 4:"
msgstr "STEP 4:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:374
msgid ""
"Fourth step (and last) is to select a CNCJob made from \n"
"a solder paste dispensing geometry, and then view/save it's GCode."
msgstr ""
"Fourth step (and last) is to select a CNCJob made from \n"
"a solder paste dispensing geometry, and then view/save it's GCode."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:402
msgid "Delete Object"
msgstr "Delete Object"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:741
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:812
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:746
msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
msgstr ""
"[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:750
msgid ""
"[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
"format."
msgstr ""
"[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float "
"format."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:774
msgid ""
"[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
msgstr ""
"[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:779
msgid "[success] New Nozzle tool added to Tool Table."
msgstr "[success] New Nozzle tool added to Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:821
msgid "[success] Nozzle tool from Tool Table was edited."
msgstr "[success] Nozzle tool from Tool Table was edited."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:832
msgid ""
"[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
"Table."
msgstr ""
"[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool "
"Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:877
msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
msgstr "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:882
msgid "[success] Nozzle tool(s) deleted from Tool Table."
msgstr "[success] Nozzle tool(s) deleted from Tool Table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:937
msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
msgstr "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:954
msgid "Creating Solder Paste dispensing geometry."
msgstr "Creating Solder Paste dispensing geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:966
msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
msgstr "[WARNING_NOTCL] No Nozzle tools in the tool table."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1092
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1147
msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
msgstr "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1095
msgid "[success] Solder Paste geometry generated successfully..."
msgstr "[success] Solder Paste geometry generated successfully..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1101
msgid ""
"[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
"diameters..."
msgstr ""
"[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle "
"diameters..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1115
msgid "Generating Solder Paste dispensing geometry..."
msgstr "Generating Solder Paste dispensing geometry..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1135
msgid "[WARNING_NOTCL] There is no Geometry object available."
msgstr "[WARNING_NOTCL] There is no Geometry object available."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1139
msgid ""
"[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
"geometry."
msgstr ""
"[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool "
"geometry."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1244
msgid "[success] ToolSolderPaste CNCjob created: %s"
msgstr "[success] ToolSolderPaste CNCjob created: %s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1276
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1280
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1331
msgid ""
"[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
"solder_paste_tool CNCJob object."
msgstr ""
"[WARNING_NOTCL] This CNCJob object can't be processed. NOT a "
"solder_paste_tool CNCJob object."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1303
msgid "[ERROR_NOTCL] No Gcode in the object..."
msgstr "[ERROR_NOTCL] No Gcode in the object..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1312
msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
msgstr "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1349
msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
msgstr "[WARNING_NOTCL] Export Machine Code cancelled ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1375
msgid "[WARNING_NOTCL] No such file or directory"
msgstr "[WARNING_NOTCL] No such file or directory"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1379
msgid "[success] Solder paste dispenser GCode file saved to: %s"
msgstr "[success] Solder paste dispenser GCode file saved to: %s"

View File

@ -1,412 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:16+0200\n"
"PO-Revision-Date: 2019-03-10 13:26+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:14
msgid "Object Transform"
msgstr "Object Transform"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:15
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:73
msgid "Rotate"
msgstr "Rotate"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:16
msgid "Skew/Shear"
msgstr "Skew/Shear"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:17
msgid "Scale"
msgstr "Scale"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:18
msgid "Mirror (Flip)"
msgstr "Mirror (Flip)"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:19
msgid "Offset"
msgstr "Offset"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:59
msgid "Angle:"
msgstr "Angle:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:61
msgid ""
"Angle for Rotation action, in degrees.\n"
"Float number between -360 and 359.\n"
"Positive numbers for CW motion.\n"
"Negative numbers for CCW motion."
msgstr ""
"Angle for Rotation action, in degrees.\n"
"Float number between -360 and 359.\n"
"Positive numbers for CW motion.\n"
"Negative numbers for CCW motion."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:75
msgid ""
"Rotate the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects."
msgstr ""
"Rotate the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:98
msgid "Angle X:"
msgstr "Angle X:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:100
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:118
msgid ""
"Angle for Skew action, in degrees.\n"
"Float number between -360 and 359."
msgstr ""
"Angle for Skew action, in degrees.\n"
"Float number between -360 and 359."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:109
msgid "Skew X"
msgstr "Skew X"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:111
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:129
msgid ""
"Skew/shear the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects."
msgstr ""
"Skew/shear the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:116
msgid "Angle Y:"
msgstr "Angle Y:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:127
msgid "Skew Y"
msgstr "Skew Y"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:155
msgid "Factor X:"
msgstr "Factor X:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:157
msgid "Factor for Scale action over X axis."
msgstr "Factor for Scale action over X axis."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:165
msgid "Scale X"
msgstr "Scale X"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:167
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:184
msgid ""
"Scale the selected object(s).\n"
"The point of reference depends on \n"
"the Scale reference checkbox state."
msgstr ""
"Scale the selected object(s).\n"
"The point of reference depends on \n"
"the Scale reference checkbox state."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:172
msgid "Factor Y:"
msgstr "Factor Y:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:174
msgid "Factor for Scale action over Y axis."
msgstr "Factor for Scale action over Y axis."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:182
msgid "Scale Y"
msgstr "Scale Y"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:191
msgid "Link"
msgstr "Link"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:193
msgid ""
"Scale the selected object(s)\n"
"using the Scale Factor X for both axis."
msgstr ""
"Scale the selected object(s)\n"
"using the Scale Factor X for both axis."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:199
msgid "Scale Reference"
msgstr "Scale Reference"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:201
msgid ""
"Scale the selected object(s)\n"
"using the origin reference when checked,\n"
"and the center of the biggest bounding box\n"
"of the selected objects when unchecked."
msgstr ""
"Scale the selected object(s)\n"
"using the origin reference when checked,\n"
"and the center of the biggest bounding box\n"
"of the selected objects when unchecked."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:229
msgid "Value X:"
msgstr "Value X:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:231
msgid "Value for Offset action on X axis."
msgstr "Value for Offset action on X axis."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:239
msgid "Offset X"
msgstr "Offset X"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:241
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:258
msgid ""
"Offset the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects.\n"
msgstr ""
"Offset the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects.\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:246
msgid "Value Y:"
msgstr "Value Y:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:248
msgid "Value for Offset action on Y axis."
msgstr "Value for Offset action on Y axis."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:256
msgid "Offset Y"
msgstr "Offset Y"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:286
msgid "Flip on X"
msgstr "Flip on X"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:288
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:296
msgid ""
"Flip the selected object(s) over the X axis.\n"
"Does not create a new object.\n"
" "
msgstr ""
"Flip the selected object(s) over the X axis.\n"
"Does not create a new object.\n"
" "
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:294
msgid "Flip on Y"
msgstr "Flip on Y"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:303
msgid "Ref Pt"
msgstr "Ref Pt"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:305
msgid ""
"Flip the selected object(s)\n"
"around the point in Point Entry Field.\n"
"\n"
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
"SHIFT key. \n"
"Then click Add button to insert coordinates.\n"
"Or enter the coords in format (x, y) in the\n"
"Point Entry field and click Flip on X(Y)"
msgstr ""
"Flip the selected object(s)\n"
"around the point in Point Entry Field.\n"
"\n"
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
"SHIFT key. \n"
"Then click Add button to insert coordinates.\n"
"Or enter the coords in format (x, y) in the\n"
"Point Entry field and click Flip on X(Y)"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:316
msgid "Point:"
msgstr "Point:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:318
msgid ""
"Coordinates in format (x, y) used as reference for mirroring.\n"
"The 'x' in (x, y) will be used when using Flip on X and\n"
"the 'y' in (x, y) will be used when using Flip on Y and"
msgstr ""
"Coordinates in format (x, y) used as reference for mirroring.\n"
"The 'x' in (x, y) will be used when using Flip on X and\n"
"the 'y' in (x, y) will be used when using Flip on Y and"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:328
msgid "Add"
msgstr "Add"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:330
msgid ""
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
"SHIFT key. Then click Add button to insert."
msgstr ""
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
"SHIFT key. Then click Add button to insert."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:386
msgid "Transform Tool"
msgstr "Transform Tool"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:456
msgid "[ERROR_NOTCL]Wrong value format entered for Rotate, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered for Rotate, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:490
msgid "[ERROR_NOTCL]Wrong value format entered for Skew X, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered for Skew X, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:508
msgid "[ERROR_NOTCL]Wrong value format entered for Skew Y, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered for Skew Y, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:526
msgid "[ERROR_NOTCL]Wrong value format entered for Scale X, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered for Scale X, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:560
msgid "[ERROR_NOTCL]Wrong value format entered for Scale Y, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered for Scale Y, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:589
msgid "[ERROR_NOTCL]Wrong value format entered for Offset X, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered for Offset X, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:607
msgid "[ERROR_NOTCL]Wrong value format entered for Offset Y, use a number."
msgstr "[ERROR_NOTCL]Wrong value format entered for Offset Y, use a number."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:625
msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
msgstr "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:628
msgid "Appying Rotate"
msgstr "Appying Rotate"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:653
msgid "CNCJob objects can't be rotated."
msgstr "CNCJob objects can't be rotated."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:662
msgid "[success]Rotate done ..."
msgstr "[success]Rotate done ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:666
msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
msgstr "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:677
msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
msgstr "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:680
msgid "Applying Flip"
msgstr "Applying Flip"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:712
msgid "CNCJob objects can't be mirrored/flipped."
msgstr "CNCJob objects can't be mirrored/flipped."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:723
msgid "[success]Flip on the Y axis done ..."
msgstr "[success]Flip on the Y axis done ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:733
msgid "[success]Flip on the X axis done ..."
msgstr "[success]Flip on the X axis done ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:738
msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
msgstr "[ERROR_NOTCL] Due of %s, Flip action was not executed."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:747
msgid "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
msgstr "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:750
msgid "Applying Skew"
msgstr "Applying Skew"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:769
msgid "CNCJob objects can't be skewed."
msgstr "CNCJob objects can't be skewed."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:781
msgid "[success]Skew on the %s axis done ..."
msgstr "[success]Skew on the %s axis done ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:785
msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
msgstr "[ERROR_NOTCL] Due of %s, Skew action was not executed."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:796
msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
msgstr "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:799
msgid "Applying Scale"
msgstr "Applying Scale"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:829
msgid "CNCJob objects can't be scaled."
msgstr "CNCJob objects can't be scaled."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:837
msgid "[success] Scale on the %s axis done ..."
msgstr "[success] Scale on the %s axis done ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:840
msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
msgstr "[ERROR_NOTCL] Due of %s, Scale action was not executed."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:849
msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
msgstr "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:852
msgid "Applying Offset"
msgstr "Applying Offset"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:870
msgid "CNCJob objects can't be offseted."
msgstr "CNCJob objects can't be offseted."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:882
msgid "[success]Offset on the %s axis done ..."
msgstr "[success]Offset on the %s axis done ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:886
msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
msgstr "[ERROR_NOTCL] Due of %s, Offset action was not executed."

Binary file not shown.

View File

@ -1,233 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 02:11+0200\n"
"PO-Revision-Date: 2019-03-10 02:35+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
#: D:\1.DEV\FlatCAM_beta\camlib.py:202
msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
msgstr "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
#: D:\1.DEV\FlatCAM_beta\camlib.py:1389
msgid "[success]Object was mirrored ..."
msgstr "[success]Object was mirrored ..."
#: D:\1.DEV\FlatCAM_beta\camlib.py:1391
msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
msgstr "[ERROR_NOTCL] Failed to mirror. No object selected"
#: D:\1.DEV\FlatCAM_beta\camlib.py:1427
msgid "[success]Object was rotated ..."
msgstr "[success]Object was rotated ..."
#: D:\1.DEV\FlatCAM_beta\camlib.py:1429
msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
msgstr "[ERROR_NOTCL] Failed to rotate. No object selected"
#: D:\1.DEV\FlatCAM_beta\camlib.py:1463
msgid "[success]Object was skewed ..."
msgstr "[success]Object was skewed ..."
#: D:\1.DEV\FlatCAM_beta\camlib.py:1465
msgid "[ERROR_NOTCL] Failed to skew. No object selected"
msgstr "[ERROR_NOTCL] Failed to skew. No object selected"
#: D:\1.DEV\FlatCAM_beta\camlib.py:2641 D:\1.DEV\FlatCAM_beta\camlib.py:2701
msgid "[WARNING] Coordinates missing, line ignored: %s"
msgstr "[WARNING] Coordinates missing, line ignored: %s"
#: D:\1.DEV\FlatCAM_beta\camlib.py:2642 D:\1.DEV\FlatCAM_beta\camlib.py:2702
msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
msgstr "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
#: D:\1.DEV\FlatCAM_beta\camlib.py:2671
msgid ""
"[ERROR] Region does not have enough points. File will be processed but there "
"are parser errors. Line number: %s"
msgstr ""
"[ERROR] Region does not have enough points. File will be processed but there "
"are parser errors. Line number: %s"
#: D:\1.DEV\FlatCAM_beta\camlib.py:3025
msgid ""
"[ERROR]Gerber Parser ERROR.\n"
"%s:"
msgstr ""
"[ERROR]Gerber Parser ERROR.\n"
"%s:"
#: D:\1.DEV\FlatCAM_beta\camlib.py:3203 D:\1.DEV\FlatCAM_beta\camlib.py:3212
msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
msgstr "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
#: D:\1.DEV\FlatCAM_beta\camlib.py:3241
msgid "[success]Gerber Scale done."
msgstr "[success]Gerber Scale done."
#: D:\1.DEV\FlatCAM_beta\camlib.py:3274
msgid ""
"[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only "
"one value in the Offset field."
msgstr ""
"[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only "
"one value in the Offset field."
#: D:\1.DEV\FlatCAM_beta\camlib.py:3298
msgid "[success]Gerber Offset done."
msgstr "[success]Gerber Offset done."
#: D:\1.DEV\FlatCAM_beta\camlib.py:3674
msgid "[ERROR_NOTCL] This is GCODE mark: %s"
msgstr "[ERROR_NOTCL] This is GCODE mark: %s"
#: D:\1.DEV\FlatCAM_beta\camlib.py:4203
msgid "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
msgstr "[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
#: D:\1.DEV\FlatCAM_beta\camlib.py:4204
msgid ""
"[ERROR] Excellon Parser error.\n"
"Parsing Failed. Line %d: %s\n"
msgstr ""
"[ERROR] Excellon Parser error.\n"
"Parsing Failed. Line %d: %s\n"
#: D:\1.DEV\FlatCAM_beta\camlib.py:4281
msgid ""
"[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
"not having a tool associated.\n"
"Check the resulting GCode."
msgstr ""
"[WARNING] Excellon.create_geometry() -> a drill location was skipped due of "
"not having a tool associated.\n"
"Check the resulting GCode."
#: D:\1.DEV\FlatCAM_beta\camlib.py:4817
msgid "[ERROR] There is no such parameter: %s"
msgstr "[ERROR] There is no such parameter: %s"
#: D:\1.DEV\FlatCAM_beta\camlib.py:4882
msgid ""
"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
"drill into material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative. Check the resulting "
"CNC code (Gcode etc)."
msgstr ""
"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
"drill into material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative. Check the resulting "
"CNC code (Gcode etc)."
#: D:\1.DEV\FlatCAM_beta\camlib.py:4889 D:\1.DEV\FlatCAM_beta\camlib.py:5357
#: D:\1.DEV\FlatCAM_beta\camlib.py:5628
msgid ""
"[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
msgstr ""
"[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
#: D:\1.DEV\FlatCAM_beta\camlib.py:4903 D:\1.DEV\FlatCAM_beta\camlib.py:5334
#: D:\1.DEV\FlatCAM_beta\camlib.py:5605
msgid ""
"[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
"format (x, y) \n"
"but now there is only one value, not two. "
msgstr ""
"[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the "
"format (x, y) \n"
"but now there is only one value, not two. "
#: D:\1.DEV\FlatCAM_beta\camlib.py:5105 D:\1.DEV\FlatCAM_beta\camlib.py:5195
#: D:\1.DEV\FlatCAM_beta\camlib.py:5246
msgid "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
msgstr "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
#: D:\1.DEV\FlatCAM_beta\camlib.py:5200
msgid "[ERROR_NOTCL] Wrong optimization type selected."
msgstr "[ERROR_NOTCL] Wrong optimization type selected."
#: D:\1.DEV\FlatCAM_beta\camlib.py:5345 D:\1.DEV\FlatCAM_beta\camlib.py:5616
msgid ""
"[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
"combinations of other parameters."
msgstr ""
"[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad "
"combinations of other parameters."
#: D:\1.DEV\FlatCAM_beta\camlib.py:5350 D:\1.DEV\FlatCAM_beta\camlib.py:5621
msgid ""
"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
"cut into material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative.Check the resulting CNC "
"code (Gcode etc)."
msgstr ""
"[WARNING] The Cut Z parameter has positive value. It is the depth value to "
"cut into material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo "
"therefore the app will convert the value to negative.Check the resulting CNC "
"code (Gcode etc)."
#: D:\1.DEV\FlatCAM_beta\camlib.py:5362 D:\1.DEV\FlatCAM_beta\camlib.py:5633
msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
msgstr "[ERROR_NOTCL] Travel Z parameter is None or zero."
#: D:\1.DEV\FlatCAM_beta\camlib.py:5366 D:\1.DEV\FlatCAM_beta\camlib.py:5637
msgid ""
"[WARNING] The Travel Z parameter has negative value. It is the height value "
"to travel between cuts.\n"
"The Z Travel parameter needs to have a positive value, assuming it is a typo "
"therefore the app will convert the value to positive.Check the resulting CNC "
"code (Gcode etc)."
msgstr ""
"[WARNING] The Travel Z parameter has negative value. It is the height value "
"to travel between cuts.\n"
"The Z Travel parameter needs to have a positive value, assuming it is a typo "
"therefore the app will convert the value to positive.Check the resulting CNC "
"code (Gcode etc)."
#: D:\1.DEV\FlatCAM_beta\camlib.py:5373 D:\1.DEV\FlatCAM_beta\camlib.py:5644
msgid ""
"[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
msgstr ""
"[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
#: D:\1.DEV\FlatCAM_beta\camlib.py:5503
msgid "[ERROR]Expected a Geometry, got %s"
msgstr "[ERROR]Expected a Geometry, got %s"
#: D:\1.DEV\FlatCAM_beta\camlib.py:5509
msgid ""
"[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without "
"solid_geometry."
msgstr ""
"[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without "
"solid_geometry."
#: D:\1.DEV\FlatCAM_beta\camlib.py:5548
msgid ""
"[ERROR_NOTCL]The Tool Offset value is too negative to use for the "
"current_geometry.\n"
"Raise the value (in module) and try again."
msgstr ""
"[ERROR_NOTCL]The Tool Offset value is too negative to use for the "
"current_geometry.\n"
"Raise the value (in module) and try again."
#: D:\1.DEV\FlatCAM_beta\camlib.py:5770
msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
msgstr "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,204 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 16:22+0200\n"
"PO-Revision-Date: 2019-03-10 16:30+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && "
"n%100<=19) ? 1 : 2);\n"
"Language: ro\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:26
msgid "Calculators"
msgstr "Calculatoare"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:27
msgid "V-Shape Tool Calculator"
msgstr "Calculator Unealta V-Shape"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:28
msgid "Units Calculator"
msgstr "Calculator Unitati"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:29
msgid "ElectroPlating Calculator"
msgstr "Calculator ElectroPlacare"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:70
msgid "Here you enter the value to be converted from INCH to MM"
msgstr ""
"Aici se introduce valoarea care trebuie convertita din Inch in milimetri."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:75
msgid "Here you enter the value to be converted from MM to INCH"
msgstr ""
"Aici se introduce valoarea care trebuie convertita din milimetri in Inch."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:96
msgid "Tip Diameter:"
msgstr "Diametrul Varf:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:100
msgid ""
"This is the diameter of the tool tip.\n"
"The manufacturer specifies it."
msgstr ""
"Acesta este diametrul varfului uneltei.\n"
"Este specificat de producatorul uneltei."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:103
msgid "Tip Angle:"
msgstr "Unghi Varf:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:107
msgid ""
"This is the angle of the tip of the tool.\n"
"It is specified by manufacturer."
msgstr ""
"Acesta este unghiul la varf al uneltei.\n"
"Este specificat de producatorul uneltei."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:110
msgid "Cut Z:"
msgstr "Z taiere:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:114
msgid ""
"This is the depth to cut into the material.\n"
"In the CNCJob is the CutZ parameter."
msgstr ""
"Aceasta este adancimea la care se taie in material.\n"
"In CNCJob este parametrul >Z taiere<."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:117
msgid "Tool Diameter:"
msgstr "Diametru Unealta:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:121
msgid ""
"This is the tool diameter to be entered into\n"
"FlatCAM Gerber section.\n"
"In the CNCJob section it is called >Tool dia<."
msgstr ""
"Acesta este diametrul uneltei care trebuie introdusa in\n"
"sectiunea FlatCAM Gerber.\n"
"In sectiunea CNCJob este denumit >Dia. Unealta<."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:133
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:216
msgid "Calculate"
msgstr "Calculeaza"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:136
msgid ""
"Calculate either the Cut Z or the effective tool diameter,\n"
" depending on which is desired and which is known. "
msgstr ""
"Calculeaza ori param. >Z taiere< ori diametrul efectiv al uneltei\n"
"in functie de care se doreste si care este cunoscut. "
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:154
msgid ""
"This calculator is useful for those who plate the via/pad/drill holes,\n"
"using a method like grahite ink or calcium hypophosphite ink or palladium "
"chloride."
msgstr ""
"Acest calculator este util pentru aceia care acopera cu Cupru via/gauri,\n"
"folosind o metoda cum ar fi: clorura de paladiu, hipofosfitul de calciu\n"
"sau cerneala pe baza de grafit."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:163
msgid "Board Length:"
msgstr "Lungimea placii:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:167
msgid "This is the board length. In centimeters."
msgstr "Aceasta este lungimea placii. In centimetri."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:169
msgid "Board Width:"
msgstr "Latimea placii:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:173
msgid "This is the board width.In centimeters."
msgstr "Aceasta este latimea placii. In centimetri."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:175
msgid "Current Density:"
msgstr "Densitatea de current:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:179
msgid ""
"Current density to pass through the board. \n"
"In Amps per Square Feet ASF."
msgstr ""
"Densitatea curentului care trece prin palca.\n"
"In amperi / picior la patrat (ASF)."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:183
msgid "Copper Growth:"
msgstr "Grosime Cupru:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:187
msgid ""
"How thick the copper growth is intended to be.\n"
"In microns."
msgstr ""
"Valoarea cu cat se creste grosimea cuprului.\n"
"In micron."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:192
msgid "Current Value:"
msgstr "Valoare Int. Curent:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:196
msgid ""
"This is the current intensity value\n"
"to be set on the Power Supply. In Amps."
msgstr ""
"Aceasta este intensitatea curentului electric\n"
"care se seteaza in sursa de tensiune. In amperi."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:200
msgid "Time:"
msgstr "Durata:"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:204
msgid ""
"This is the calculated time required for the procedure.\n"
"In minutes."
msgstr ""
"Aceasta este durata necesara pentru procedura.\n"
"In minute."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:219
msgid ""
"Calculate the current intensity value and the procedure time,\n"
" depending on the parameters above"
msgstr ""
"Calculeaza intensitatea curentului cat si durata procedurii,\n"
"in functie de parametrii de mai sus."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:306
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:317
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:329
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:344
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:357
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:371
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:382
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:393
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:404
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr ""
"[ERROR_NOTCL] A fost introdusa o valoare in format gresit, foloseste un "
"numar."

View File

@ -1,92 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"POT-Creation-Date: 2019-03-10 13:08+0200\n"
"PO-Revision-Date: 2019-03-10 15:43+0200\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
"X-Generator: Poedit 2.2.1\n"
"Last-Translator: \n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && n%100<=19) ? 1 : 2);\n"
"Language: ro\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:16
msgid "Measurement"
msgstr "Măsurare"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:37
msgid "Start"
msgstr "Start"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:37
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:40
msgid "Coords"
msgstr "Coord."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:38
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:89
msgid "This is measuring Start point coordinates."
msgstr "Acestea sunt coordonatele punctului de start al masuratorii."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:40
msgid "Stop"
msgstr "Stop"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:41
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:94
msgid "This is the measuring Stop point coordinates."
msgstr "Acestea sunt coordonatele punctului de stop al masuratorii."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:44
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:99
msgid "This is the distance measured over the X axis."
msgstr "Distanta masurata de-a lungul axei X."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:47
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:105
msgid "This is the distance measured over the Y axis."
msgstr "Distanta masurata de-a lungul axei Y."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:49
msgid "DISTANCE"
msgstr "Distanta"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:50
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:111
msgid "This is the point to point Euclidian distance."
msgstr "Distanta euclidiana de la punct la punct."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:53
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:60
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:67
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:74
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:81
msgid "Those are the units in which the distance is measured."
msgstr "Unitatile in care este masurata distanta"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:114
msgid "Measure"
msgstr "Masoara"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:173
msgid "Meas. Tool"
msgstr "Unealta de masurare"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:266
msgid "MEASURING: Click on the Start point ..."
msgstr "Masurare: Click pe punctul de Start ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:295
msgid "MEASURING: Click on the Destination point ..."
msgstr "Masurare: Click pe punctul Destinatie ..."
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:316
msgid "MEASURING: Result D(x) = %.4f | D(y) = %.4f | Distance = %.4f"
msgstr "Masurare: RezultatD(x) = %.4f | D(y) = %.4f | Distanta = %.4f"

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,808 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 02:00+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:854
msgid "[ERROR] Could not find the Language files. The App strings are missing."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1676
msgid "Open cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1690
msgid "Open Config file failed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1871
msgid "[WARNING_NOTCL] Editing a MultiGeo Geometry is not possible for the moment."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1892
msgid "[WARNING_NOTCL]Select a Geometry or Excellon Object to edit."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1903
msgid "[WARNING_NOTCL]Editor is activated ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1938
msgid "[WARNING] Object empty after edit."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1947
msgid "[WARNING_NOTCL]Select a Geometry or Excellon Object to update."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:1960
msgid "[selected] %s is updated, returning to App..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2283
msgid "[ERROR] Could not load defaults file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2295
msgid "[ERROR] Failed to parse defaults file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2324
msgid "[WARNING_NOTCL]FlatCAM preferences import cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2332
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2806
msgid "[ERROR_NOTCL] Could not load defaults file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2340
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2815
msgid "[ERROR_NOTCL] Failed to parse defaults file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2343
msgid "[success]Imported Defaults from %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2363
msgid "[WARNING_NOTCL]FlatCAM preferences export cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2379
msgid "[ERROR_NOTCL]Could not load defaults file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2398
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2829
msgid "[ERROR_NOTCL] Failed to write defaults to file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2450
msgid "[ERROR_NOTCL]Failed to open recent files file for writing."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2535
msgid ""
"[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2536
msgid ""
"Object (%s) failed because: %s \n"
"\n"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2556
msgid "Converting units to "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2617
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2620
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2623
msgid "[selected]%s created/selected: <span style=\"color:%s;\">%s</span>"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2861
msgid "[success]Defaults saved."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2882
msgid "[ERROR_NOTCL] Could not load factory defaults file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2891
msgid "[ERROR_NOTCL] Failed to parse factory defaults file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2905
msgid "[ERROR_NOTCL] Failed to write factory defaults to file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2909
msgid "Factory defaults saved."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2915
msgid ""
"There are files/objects modified in FlatCAM. \n"
"Do you want to Save the project?"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2918
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5176
msgid "Save changes"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:2967
msgid ""
"[ERROR] Failed join. The Geometry objects are of different types.\n"
"At least one is MultiGeo type and the other is SingleGeo type. A possibility is to convert from one to another and retry joining \n"
"but in the case of converting from MultiGeo to SingleGeo, informations may be lost and the result may not be what was expected. \n"
"Check the generated GCODE."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3008
msgid "[ERROR_NOTCL]Failed. Excellon joining works only on Excellon objects."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3030
msgid "[ERROR_NOTCL]Failed. Gerber joining works only on Gerber objects."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3045
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3070
msgid "[ERROR_NOTCL]Failed. Select a Geometry Object and try again."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3049
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3074
msgid "[ERROR_NOTCL]Expected a FlatCAMGeometry, got %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3062
msgid "[success] A Geometry object was converted to MultiGeo type."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3088
msgid "[success] A Geometry object was converted to SingleGeo type."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3272
msgid "[success]Converted units to %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3283
msgid "[WARNING_NOTCL]Units conversion cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3907
msgid "[WARNING_NOTCL]Export Code cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3917
msgid "[WARNING] No such file or directory"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3924
msgid "Saved to: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3987
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4019
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4030
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4041
msgid "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3992
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4024
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4035
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4046
msgid "[WARNING_NOTCL] Adding Tool cancelled ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:3995
msgid ""
"Adding Tool works only when Advanced is checked.\n"
"Go to Preferences -> General - Show Advanced Options."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4100
msgid "Object(s) deleted ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4104
msgid "Failed. No object(s) selected..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4106
msgid "Save the work in Editor and try again ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4119
msgid "Click to set the origin ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4131
msgid "Jump to ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4132
msgid "Enter the coordinates in format X,Y:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4139
msgid "Wrong coordinates. Enter coordinates in format: X,Y"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4154
msgid "Done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4286
msgid "[success] Origin set ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4324
msgid "[WARNING_NOTCL] No object selected to Flip on Y axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4349
msgid "[success] Flip on Y axis done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4351
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4391
msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4364
msgid "[WARNING_NOTCL] No object selected to Flip on X axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4389
msgid "[success] Flip on X axis done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4404
msgid "[WARNING_NOTCL] No object selected to Rotate."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4407
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4452
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4483
msgid "Enter the Angle value:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4407
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4452
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4483
msgid "Transform"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4437
msgid "[success] Rotation done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4439
msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4450
msgid "[WARNING_NOTCL] No object selected to Skew/Shear on X axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4471
msgid "[success] Skew on X axis done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4481
msgid "[WARNING_NOTCL] No object selected to Skew/Shear on Y axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4502
msgid "[success] Skew on Y axis done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4598
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4625
msgid "[WARNING_NOTCL] Please enter a grid value with non-zero value, in Float format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4604
msgid "[success] New Grid added ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4607
msgid "[WARNING_NOTCL] Grid already exists ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4610
msgid "[WARNING_NOTCL] Adding New Grid cancelled ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4632
msgid "[ERROR_NOTCL] Grid Value does not exist ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4635
msgid "[success] Grid Value deleted ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4638
msgid "[WARNING_NOTCL] Delete Grid value cancelled ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4677
msgid "[WARNING_NOTCL]No object selected to copy it's name"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4681
msgid "Name copied on clipboard ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4976
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4979
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4982
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4985
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:4999
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5002
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5005
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5008
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5047
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5050
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5053
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5056
msgid "[selected]<span style=\"color:%s;\">%s</span> selected"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5173
msgid ""
"There are files/objects opened in FlatCAM.\n"
"Creating a New project will delete them.\n"
"Do you want to Save the project?"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5191
msgid "[success] New Project created..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5272
msgid "[WARNING_NOTCL] Select an Gerber or Excellon file to view it's source file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5279
msgid "[WARNING_NOTCL] There is no selected object for which to see it's source file code."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5283
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6723
msgid "Code Editor"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5296
msgid "[ERROR]App.on_view_source() -->%s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5342
msgid "[WARNING_NOTCL]Open Gerber cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5371
msgid "[WARNING_NOTCL]Open Excellon cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5401
msgid "[WARNING_NOTCL]Open G-Code cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5430
msgid "[WARNING_NOTCL]Open Project cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5455
msgid "[WARNING_NOTCL]Open COnfig cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5470
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5667
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7583
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7603
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7624
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7646
msgid "[WARNING_NOTCL] No object selected."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5471
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5668
msgid "Please Select a Geometry object to export"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5482
msgid "[ERROR_NOTCL] Only Geometry, Gerber and CNCJob objects can be used."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5504
msgid "[WARNING_NOTCL]Export SVG cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5518
msgid "[[WARNING_NOTCL]] Data must be a 3D array with last dimension 3 or 4"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5528
msgid "Export PNG Image"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5533
msgid "Export PNG cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5550
msgid "[WARNING_NOTCL] No object selected. Please select an Gerber object to export."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5555
msgid "[ERROR_NOTCL] Failed. Only Gerber objects can be saved as Gerber files..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5567
msgid "Save Gerber source file"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5572
msgid "[WARNING_NOTCL]Save Gerber source file cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5589
msgid "[WARNING_NOTCL] No object selected. Please select an Excellon object to export."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5594
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5633
msgid "[ERROR_NOTCL] Failed. Only Excellon objects can be saved as Excellon files..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5606
msgid "Save Excellon source file"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5611
msgid "[WARNING_NOTCL]Saving Excellon source file cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5628
msgid "[WARNING_NOTCL] No object selected. Please Select an Excellon object to export."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5645
msgid "Export Excellon"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5650
msgid "[WARNING_NOTCL]Export Excellon cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5678
msgid "[ERROR_NOTCL] Only Geometry objects can be used."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5695
msgid "Export DXF"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5700
msgid "[WARNING_NOTCL] Export DXF cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5729
msgid "[WARNING_NOTCL]Open SVG cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5748
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5751
msgid "Import DXF"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5759
msgid "[WARNING_NOTCL]Open DXF cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5777
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5780
msgid "Open TCL script"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5788
msgid "[WARNING_NOTCL]Open TCL script cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5840
msgid "Save Project As ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5845
msgid "[WARNING_NOTCL]Save Project cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5900
msgid "Exporting SVG"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5933
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6038
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6152
msgid "[success] SVG file exported to %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:5964
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6084
msgid "[WARNING_NOTCL]No object Box. Using instead %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6041
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6155
msgid "Generating Film ... Please wait."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6302
msgid "[success] Excellon file exported to %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6309
msgid "Exporting Excellon"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6314
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6321
msgid "[ERROR_NOTCL] Could not export Excellon file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6360
msgid "[success] DXF file exported to %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6366
msgid "Exporting DXF"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6371
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6378
msgid "[[WARNING_NOTCL]] Could not export DXF file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6398
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6440
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6481
msgid "[ERROR_NOTCL] Not supported type is picked as parameter. Only Geometry and Gerber are supported"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6408
msgid "Importing SVG"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6419
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6461
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6501
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6577
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6644
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6709
msgid "[success] Opened: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6450
msgid "Importing DXF"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6489
msgid "Importing Image"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6530
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6532
msgid "[ERROR_NOTCL] Failed to open file: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6535
msgid "[ERROR_NOTCL] Failed to parse file: %s. %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6541
msgid ""
"[ERROR] An internal error has ocurred. See shell.\n"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6550
msgid "[ERROR_NOTCL] Object is not Gerber file or empty. Aborting object creation."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6558
msgid "Opening Gerber"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6568
msgid "[ERROR_NOTCL] Open Gerber failed. Probable not a Gerber file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6603
msgid "[ERROR_NOTCL] This is not Excellon file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6606
msgid "[ERROR_NOTCL] Cannot open file: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6611
msgid ""
"[ERROR_NOTCL] An internal error has occurred. See shell.\n"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6627
msgid "[ERROR_NOTCL] No geometry found in file: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6630
msgid "Opening Excellon."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6637
msgid "[ERROR_NOTCL] Open Excellon file failed. Probable not an Excellon file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6676
msgid "[ERROR_NOTCL] Failed to open %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6686
msgid "[ERROR_NOTCL] This is not GCODE"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6692
msgid "Opening G-Code."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6700
msgid ""
"[ERROR_NOTCL] Failed to create CNCJob Object. Probable not a GCode file.\n"
" Attempting to create a FlatCAM CNCJob Object from G-Code file failed during processing"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6740
msgid "[ERROR_NOTCL] Failed to open config file: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6765
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6782
msgid "[ERROR_NOTCL] Failed to open project file: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6772
msgid "[ERROR_NOTCL] Failed to parse project file: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6808
msgid "[success] Project loaded from: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6938
msgid ""
"Available commands:\n"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:6940
msgid ""
"\n"
"\n"
"Type help <command_name> for usage.\n"
" Example: help open_gerber"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7088
msgid "Shows list of commands."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7141
msgid "[ERROR_NOTCL] Failed to load recent item list."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7148
msgid "[ERROR_NOTCL] Failed to parse recent item list."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7209
msgid "<b>Shortcut Key List</b>"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7216
msgid ""
"\n"
"<p><span style=\"font-size:14px\"><strong>Selected Tab - Choose an Item from Project Tab</strong></span></p>\n"
"\n"
"<p><span style=\"font-size:10px\"><strong>Details</strong>:<br />\n"
"The normal flow when working in FlatCAM is the following:</span></p>\n"
"\n"
"<ol>\n"
"\t<li><span style=\"font-size:10px\">Loat/Import a Gerber, Excellon, Gcode, DXF, Raster Image or SVG file into FlatCAM using either the menu&#39;s, toolbars, key shortcuts or even dragging and dropping the files on the GUI.<br />\n"
"\t<br />\n"
"\tYou can also load a <strong>FlatCAM project</strong> by double clicking on the project file, drag &amp; drop of the file into the FLATCAM GUI or through the menu/toolbar links offered within the app.</span><br />\n"
"\t&nbsp;</li>\n"
"\t<li><span style=\"font-size:10px\">Once an object is available in the Project Tab, by selecting it and then focusing on <strong>SELECTED TAB </strong>(more simpler is to double click the object name in the Project Tab), <strong>SELECTED TAB </strong>will be updated with the object properties according to it&#39;s kind: Gerber, Excellon, Geometry or CNCJob object.<br />\n"
"\t<br />\n"
"\tIf the selection of the object is done on the canvas by single click instead, and the <strong>SELECTED TAB</strong> is in focus, again the object properties will be displayed into the Selected Tab. Alternatively, double clicking on the object on the canvas will bring the <strong>SELECTED TAB</strong> and populate it even if it was out of focus.<br />\n"
"\t<br />\n"
"\tYou can change the parameters in this screen and the flow direction is like this:<br />\n"
"\t<br />\n"
"\t<strong>Gerber/Excellon Object</strong> -&gt; Change Param -&gt; Generate Geometry -&gt;<strong> Geometry Object </strong>-&gt; Add tools (change param in Selected Tab) -&gt; Generate CNCJob -&gt;<strong> CNCJob Object </strong>-&gt; Verify GCode (through Edit CNC Code) and/or append/prepend to GCode (again, done in <strong>SELECTED TAB)&nbsp;</strong>-&gt; Save GCode</span></li>\n"
"</ol>\n"
"\n"
"<p><span style=\"font-size:10px\">A list of key shortcuts is available through an menu entry in <strong>Help -&gt; Shortcuts List</strong>&nbsp;or through it&#39;s own key shortcut: <strng>F3</strong>.</span></p>\n"
"\n"
" "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7320
msgid "[WARNING_NOTCL] Failed checking for latest version. Could not connect."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7327
msgid "[ERROR_NOTCL] Could not parse information about latest version."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7337
msgid "[success] FlatCAM is up to date!"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7342
msgid "Newer Version Available"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7343
msgid "There is a newer version of FlatCAM available for download:<br><br><b>%s</b><br>%s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7364
msgid "[success]All plots disabled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7370
msgid "[success]All non selected plots disabled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7376
msgid "[success]All plots enabled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7486
msgid "Saving FlatCAM Project"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7507
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7538
msgid "[success] Project saved to: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7525
msgid "[ERROR_NOTCL] Failed to verify project file: %s. Retry to save it."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7532
msgid "[ERROR_NOTCL] Failed to parse saved project file: %s. Retry to save it."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMApp.py:7540
msgid "[ERROR_NOTCL] Failed to save project file: %s. Retry to save it."
msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,332 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 02:05+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:196
msgid "[success]Name changed from %s to %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:534
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1888
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3151
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5298
msgid "<span style=\"color:green;\"><b>Basic</b></span>"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:546
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1904
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3173
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5304
msgid "<span style=\"color:red;\"><b>Advanced</b></span>"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:901
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:956
msgid "[success]Isolation geometry created: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1031
msgid "[ERROR_NOTCL] The aperture scale factor value is missing or wrong format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1046
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1081
msgid "[WARNING_NOTCL] No aperture to scale. Select at least one aperture and try again."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1066
msgid "[ERROR_NOTCL] The aperture buffer value is missing or wrong format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1139
msgid "Generating Gerber"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1146
msgid "[ERROR_NOTCL] Cretion of Gerber failed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1154
msgid "[success] Created: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1274
msgid "Plotting Apertures"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1728
msgid "Total Drills"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1754
msgid "Total Slots"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:1960
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3223
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3529
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3716
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3729
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3846
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4254
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4487
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4893
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2184
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2275
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2390
msgid "[ERROR_NOTCL]Please select one or more tools from the list and try again."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2191
msgid "[ERROR_NOTCL] Milling tool for DRILLS is larger than hole size. Cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2206
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2300
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2411
msgid "Diameter"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2206
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2300
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2411
msgid "Drills_Nr"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2206
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2300
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2411
msgid "Slots_Nr"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2206
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2300
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2411
msgid "Tool_nr"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2285
msgid "[ERROR_NOTCL] Milling tool for SLOTS is larger than hole size. Cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2448
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4142
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4353
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4668
msgid "[ERROR_NOTCL]Wrong value format for self.defaults[\"z_pdepth\"] or self.options[\"z_pdepth\"]"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2460
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4154
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4365
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4680
msgid "[ERROR_NOTCL]Wrong value format for self.defaults[\"feedrate_probe\"] or self.options[\"feedrate_probe\"]"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2493
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4556
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4561
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4707
msgid "Generating CNC Code"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2518
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4852
msgid ""
"[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, y) \n"
"but now there is only one value, not two. "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2866
msgid "In"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2866
msgid "Out"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2866
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3108
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3393
msgid "Path"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2866
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3189
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3762
msgid "Custom"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2867
msgid "Finish"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2867
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3110
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3395
msgid "Rough"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:2867
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3773
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3774
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3783
msgid "Iso"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3145
msgid "Copy"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3147
msgid "Delete"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3364
msgid "[ERROR_NOTCL] Please enter the desired tool diameter in Float format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3439
msgid "[success] Tool added in Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3444
msgid "[ERROR_NOTCL]Default Tool added. Wrong value format entered."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3474
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3484
msgid "[WARNING_NOTCL]Failed. Select a tool to copy."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3513
msgid "[success] Tool was copied in Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3546
msgid "[success] Tool was edited in Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3577
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3587
msgid "[WARNING_NOTCL]Failed. Select a tool to delete."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:3611
msgid "[success] Tool was deleted in Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4025
msgid "[WARNING_NOTCL]This Geometry can't be processed because it is %s geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4042
msgid "[ERROR_NOTCL]Wrong Tool Dia value format entered, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4069
msgid "[ERROR_NOTCL] Failed. No tool selected in the tool table ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4107
msgid ""
"[ERROR] An internal error has ocurred. See shell.\n"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4108
msgid "FlatCAMObj.FlatCAMGeometry.mtool_gen_cncjob() --> %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4263
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4496
msgid ""
"[WARNING] Tool Offset is selected in Tool Table but no value is provided.\n"
"Add a Tool Offset or change the Offset Type."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4377
msgid "[ERROR_NOTCL]Cancelled. Empty file, it has no geometry..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4739
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4749
msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4787
msgid "[success]Geometry Scale done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4804
msgid "[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only one value in the Offset field."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:4824
msgid "[success]Geometry Offset done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5372
msgid "Export Machine Code ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5377
msgid "[WARNING_NOTCL]Export Machine Code cancelled ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5389
msgid "[success] Machine Code file saved to: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5401
msgid "Code Editor"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5420
msgid "[ERROR]FlatCAMCNNJob.on_modifygcode_button_click() -->%s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5526
msgid "[WARNING_NOTCL]This CNCJob object can't be processed because it is a %s CNCJob object."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5578
msgid "[ERROR_NOTCL] G-code does not have a units code: either G20 or G21"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5591
msgid "[ERROR_NOTCL] Cancelled. The Toolchange Custom code is enabled but it's empty."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5598
msgid "[success] Toolchange G-code was replaced by a custom code."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5613
msgid "[WARNING_NOTCL] No such file or directory"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5633
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5645
msgid "[WARNING_NOTCL] The used postprocessor file has to have in it's name: 'toolchange_custom'"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\FlatCAMObj.py:5651
msgid "[ERROR] There is no postprocessor file."
msgstr ""

View File

@ -1,36 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 02:14+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:75
msgid "Open cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:397
msgid "Object renamed from %s to %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:691
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:694
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:697
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:700
msgid "[selected]<span style=\"color:%s;\">%s</span> selected"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\ObjectCollection.py:731
msgid "[ERROR] Cause of error: %s"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -1,173 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 16:22+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:26
msgid "Calculators"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:27
msgid "V-Shape Tool Calculator"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:28
msgid "Units Calculator"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:29
msgid "ElectroPlating Calculator"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:70
msgid "Here you enter the value to be converted from INCH to MM"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:75
msgid "Here you enter the value to be converted from MM to INCH"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:96
msgid "Tip Diameter:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:100
msgid ""
"This is the diameter of the tool tip.\n"
"The manufacturer specifies it."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:103
msgid "Tip Angle:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:107
msgid ""
"This is the angle of the tip of the tool.\n"
"It is specified by manufacturer."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:110
msgid "Cut Z:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:114
msgid ""
"This is the depth to cut into the material.\n"
"In the CNCJob is the CutZ parameter."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:117
msgid "Tool Diameter:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:121
msgid ""
"This is the tool diameter to be entered into\n"
"FlatCAM Gerber section.\n"
"In the CNCJob section it is called >Tool dia<."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:133
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:216
msgid "Calculate"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:136
msgid ""
"Calculate either the Cut Z or the effective tool diameter,\n"
" depending on which is desired and which is known. "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:154
msgid ""
"This calculator is useful for those who plate the via/pad/drill holes,\n"
"using a method like grahite ink or calcium hypophosphite ink or palladium chloride."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:163
msgid "Board Length:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:167
msgid "This is the board length. In centimeters."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:169
msgid "Board Width:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:173
msgid "This is the board width.In centimeters."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:175
msgid "Current Density:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:179
msgid ""
"Current density to pass through the board. \n"
"In Amps per Square Feet ASF."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:183
msgid "Copper Growth:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:187
msgid ""
"How thick the copper growth is intended to be.\n"
"In microns."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:192
msgid "Current Value:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:196
msgid ""
"This is the current intensity value\n"
"to be set on the Power Supply. In Amps."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:200
msgid "Time:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:204
msgid ""
"This is the calculated time required for the procedure.\n"
"In minutes."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:219
msgid ""
"Calculate the current intensity value and the procedure time,\n"
" depending on the parameters above"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:306
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:317
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:329
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:344
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:357
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:371
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:382
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:393
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCalculators.py:404
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr ""

View File

@ -1,300 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:03+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:13
msgid "Cutout PCB"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:49
msgid "Obj Type:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:51
msgid ""
"Specify the type of object to be cutout.\n"
"It can be of type: Gerber or Geometry.\n"
"What is selected here will dictate the kind\n"
"of objects that will populate the 'Object' combobox."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:65
msgid "Object:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:67
msgid "Object to be cutout. "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:73
msgid "Tool Dia:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:75
msgid ""
"Diameter of the tool used to cutout\n"
"the PCB shape out of the surrounding material."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:82
msgid "Margin:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:84
msgid ""
"Margin over bounds. A positive value here\n"
"will make the cutout of the PCB further from\n"
"the actual PCB border"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:92
msgid "Gap size:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:94
msgid ""
"The size of the bridge gaps in the cutout\n"
"used to keep the board connected to\n"
"the surrounding material (the one \n"
"from which the PCB is cutout)."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:110
msgid "A. Automatic Bridge Gaps"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:112
msgid "This section handle creation of automatic bridge gaps."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:121
msgid "Gaps:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:123
msgid ""
"Number of gaps used for the Automatic cutout.\n"
"There can be maximum 8 bridges/gaps.\n"
"The choices are:\n"
"- lr - left + right\n"
"- tb - top + bottom\n"
"- 4 - left + right +top + bottom\n"
"- 2lr - 2*left + 2*right\n"
"- 2tb - 2*top + 2*bottom\n"
"- 8 - 2*left + 2*right +2*top + 2*bottom"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:146
msgid "FreeForm:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:148
msgid ""
"The cutout shape can be of ny shape.\n"
"Useful when the PCB has a non-rectangular shape."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:155
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:175
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:226
msgid "Generate Geo"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:157
msgid ""
"Cutout the selected object.\n"
"The cutout shape can be of any shape.\n"
"Useful when the PCB has a non-rectangular shape."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:166
msgid "Rectangular:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:168
msgid ""
"The resulting cutout shape is\n"
"always a rectangle shape and it will be\n"
"the bounding box of the Object."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:177
msgid ""
"Cutout the selected object.\n"
"The resulting cutout shape is\n"
"always a rectangle shape and it will be\n"
"the bounding box of the Object."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:185
msgid "B. Manual Bridge Gaps"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:187
msgid ""
"This section handle creation of manual bridge gaps.\n"
"This is done by mouse clicking on the perimeter of the\n"
"Geometry object that is used as a cutout object. "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:203
msgid "Geo Obj:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:205
msgid "Geometry object used to create the manual cutout."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:216
msgid "Manual Geo:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:218
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:228
msgid ""
"If the object to be cutout is a Gerber\n"
"first create a Geometry that surrounds it,\n"
"to be used as the cutout, if one doesn't exist yet.\n"
"Select the source Gerber file in the top object combobox."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:238
msgid "Manual Add Bridge Gaps:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:240
msgid ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
"the surrounding material."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:247
msgid "Generate Gap"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:249
msgid ""
"Use the left mouse button (LMB) click\n"
"to create a bridge gap to separate the PCB from\n"
"the surrounding material.\n"
"The LMB click has to be done on the perimeter of\n"
"the Geometry object used as a cutout geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:322
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:461
msgid "[ERROR_NOTCL]Could not retrieve object: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:326
msgid ""
"[ERROR_NOTCL]There is no object selected for Cutout.\n"
"Select one and try again."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:336
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:474
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:594
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:699
msgid "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:342
msgid "[WARNING_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:352
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:489
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:714
msgid "[WARNING_NOTCL] Margin value is missing or wrong format. Add it and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:363
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:500
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:609
msgid "[WARNING_NOTCL] Gap size value is missing or wrong format. Add it and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:370
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:507
msgid "[WARNING_NOTCL] Number of gaps value is missing. Add it and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:374
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:511
msgid "[WARNING_NOTCL] Gaps value can be only one of: 'lr', 'tb', '2lr', '2tb', 4 or 8. Fill in a correct value and retry. "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:379
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:516
msgid ""
"[ERROR]Cutout operation cannot be done on a multi-geo Geometry.\n"
"Optionally, this Multi-geo Geometry can be converted to Single-geo Geometry,\n"
"and after that perform Cutout."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:445
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:579
msgid "[success] Any form CutOut operation finished."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:465
msgid "[ERROR_NOTCL]Object not found: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:479
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:599
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:704
msgid "[ERROR_NOTCL]Tool Diameter is zero value. Change it to a positive integer."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:584
msgid "Click on the selected geometry object perimeter to create a bridge gap ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:625
msgid "Making manual bridge gap..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:648
msgid "[ERROR_NOTCL]Could not retrieve Geoemtry object: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:652
msgid "[ERROR_NOTCL]Geometry object for manual cutout not found: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:662
msgid "[success] Added manual Bridge Gap."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:679
msgid "[ERROR_NOTCL]Could not retrieve Gerber object: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:683
msgid ""
"[ERROR_NOTCL]There is no Gerber object selected for Cutout.\n"
"Select one and try again."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolCutOut.py:688
msgid ""
"[ERROR_NOTCL]The selected object has to be of Gerber type.\n"
"Select a Gerber file and try again."
msgstr ""

View File

@ -1,229 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:05+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:16
msgid "2-Sided PCB"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:50
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:74
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:98
msgid "Mirror"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:52
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:76
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:100
msgid ""
"Mirrors (flips) the specified object around \n"
"the specified axis. Does not create a new \n"
"object, but modifies it."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:71
msgid "Excellon Object to be mirrored."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:95
msgid "Geometry Obj to be mirrored."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:114
msgid "Mirror Axis:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:116
msgid "Mirror vertically (X) or horizontally (Y)."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:127
msgid "Axis Ref:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:129
msgid ""
"The axis should pass through a <b>point</b> or cut\n"
" a specified <b>box</b> (in a FlatCAM object) through \n"
"the center."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:142
msgid "Point/Box Reference:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:144
msgid ""
"If 'Point' is selected above it store the coordinates (x, y) through which\n"
"the mirroring axis passes.\n"
"If 'Box' is selected above, select here a FlatCAM object (Gerber, Exc or Geo).\n"
"Through the center of this object pass the mirroring axis selected above."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:150
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:198
msgid "Add"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:152
msgid ""
"Add the coordinates in format <b>(x, y)</b> through which the mirroring axis \n"
" selected in 'MIRROR AXIS' pass.\n"
"The (x, y) coordinates are captured by pressing SHIFT key\n"
"and left mouse button click on canvas or you can enter the coords manually."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:172
msgid "Gerber Reference Box Object"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:173
msgid "Excellon Reference Box Object"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:174
msgid "Geometry Reference Box Object"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:183
msgid ">Alignment Drill Coordinates:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:185
msgid ""
"Alignment holes (x1, y1), (x2, y2), ... on one side of the mirror axis. For each set of (x, y) coordinates\n"
"entered here, a pair of drills will be created:\n"
"\n"
"- one drill at the coordinates from the field\n"
"- one drill in mirror position over the axis selected above in the 'Mirror Axis'."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:200
msgid ""
"Add alignment drill holes coords in the format: (x1, y1), (x2, y2), ... \n"
"on one side of the mirror axis.\n"
"\n"
"The coordinates set can be obtained:\n"
"- press SHIFT key and left mouse clicking on canvas. Then click Add.\n"
"- press SHIFT key and left mouse clicking on canvas. Then CTRL+V in the field.\n"
"- press SHIFT key and left mouse clicking on canvas. Then RMB click in the field and click Paste.\n"
"- by entering the coords manually in the format: (x1, y1), (x2, y2), ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:214
msgid "Alignment Drill Diameter"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:216
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:227
msgid "Diameter of the drill for the alignment holes."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:225
msgid "Drill diam.:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:234
msgid "Create Excellon Object"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:236
msgid ""
"Creates an Excellon Object containing the\n"
"specified alignment holes and their mirror\n"
"images."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:243
msgid "Reset"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:245
msgid "Resets all the fields."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:287
msgid "2-Sided Tool"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:312
msgid "[WARNING_NOTCL] 'Point' reference is selected and 'Point' coordinates are missing. Add them and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:331
msgid "[WARNING_NOTCL] There is no Box reference object loaded. Load one and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:348
msgid "[WARNING_NOTCL] Tool diameter value is missing or wrong format. Add it and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:353
msgid "[WARNING_NOTCL]No value or wrong format in Drill Dia entry. Add it and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:360
msgid "[WARNING_NOTCL] There are no Alignment Drill Coordinates to use. Add them and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:382
msgid "[success] Excellon object with alignment drills created..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:391
msgid "[WARNING_NOTCL] There is no Gerber object loaded ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:395
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:438
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:482
msgid "[ERROR_NOTCL] Only Gerber, Excellon and Geometry objects can be mirrored."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:405
msgid "[WARNING_NOTCL] 'Point' coordinates missing. Using Origin (0, 0) as mirroring reference."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:415
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:459
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:496
msgid "[WARNING_NOTCL] There is no Box object loaded ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:425
msgid "[success] Gerber %s was mirrored..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:434
msgid "[WARNING_NOTCL] There is no Excellon object loaded ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:449
msgid "[WARNING_NOTCL] There are no Point coordinates in the Point field. Add coords and try again ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:469
msgid "[success] Excellon %s was mirrored..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:478
msgid "[WARNING_NOTCL] There is no Geometry object loaded ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolDblSided.py:506
msgid "[success] Geometry %s was mirrored..."
msgstr ""

View File

@ -1,156 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:06+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:13
msgid "Film PCB"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:44
msgid "Object Type:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:46
msgid ""
"Specify the type of object for which to create the film.\n"
"The object can be of type: Gerber or Geometry.\n"
"The selection here decide the type of objects that will be\n"
"in the Film Object combobox."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:59
msgid "Film Object:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:61
msgid "Object for which to create the film."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:77
msgid "Box Type:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:79
msgid ""
"Specify the type of object to be used as an container for\n"
"film creation. It can be: Gerber or Geometry type.The selection here decide the type of objects that will be\n"
"in the Box Object combobox."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:92
msgid "Box Object:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:94
msgid ""
"The actual object that is used a container for the\n"
" selected object for which we create the film.\n"
"Usually it is the PCB outline but it can be also the\n"
"same object for which the film is created."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:104
msgid "Film Type:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:106
msgid ""
"Generate a Positive black film or a Negative film.\n"
"Positive means that it will print the features\n"
"with black on a white canvas.\n"
"Negative means that it will print the features\n"
"with white on a black canvas.\n"
"The Film format is SVG."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:118
msgid "Border:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:120
msgid ""
"Specify a border around the object.\n"
"Only for negative film.\n"
"It helps if we use as a Box Object the same \n"
"object as in Film Object. It will create a thick\n"
"black bar around the actual print allowing for a\n"
"better delimitation of the outline features which are of\n"
"white color like the rest and which may confound with the\n"
"surroundings if not for this border."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:132
msgid "Scale Stroke:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:134
msgid ""
"Scale the line stroke thickness of each feature in the SVG file.\n"
"It means that the line that envelope each SVG feature will be thicker or thinner,\n"
"therefore the fine features may be more affected by this parameter."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:145
msgid "Save Film"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:147
msgid ""
"Create a Film for the selected object, within\n"
"the specified box. Does not create a new \n"
" FlatCAM object, but directly save it in SVG format\n"
"which can be opened with Inkscape."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:188
msgid "Film Tool"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:209
msgid "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Film and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:215
msgid "[ERROR_NOTCL] No FlatCAM object selected. Load an object for Box and retry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:225
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:232
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:239
msgid "Generating Film ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:244
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:248
msgid "Export SVG positive"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:253
msgid "[WARNING_NOTCL]Export SVG positive cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:260
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:264
msgid "Export SVG negative"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolFilm.py:269
msgid "[WARNING_NOTCL]Export SVG negative cancelled."
msgstr ""

View File

@ -1,119 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:07+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:13
msgid "Image as Object"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:19
msgid "Image to PCB"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:41
msgid "Object Type:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:43
msgid ""
"Specify the type of object to create from the image.\n"
"It can be of type: Gerber or Geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:51
msgid "DPI value:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:53
msgid "Specify a DPI value for the image."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:60
msgid "Level of detail"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:69
msgid "Image type"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:71
msgid ""
"Choose a method for the image interpretation.\n"
"B/W means a black & white image. Color means a colored image."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:78
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:91
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:102
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:113
msgid "Mask value"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:80
msgid ""
"Mask for monochrome image.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry.\n"
"0 means no detail and 255 means everything \n"
"(which is totally black)."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:93
msgid ""
"Mask for RED color.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:104
msgid ""
"Mask for GREEN color.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:115
msgid ""
"Mask for BLUE color.\n"
"Takes values between [0 ... 255].\n"
"Decides the level of details to include\n"
"in the resulting geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:127
msgid "Import image"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:129
msgid "Open a image of raster type and then import it in FlatCAM."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:155
msgid "Image Tool"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:185
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:188
msgid "Import IMAGE"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolImage.py:198
msgid "Open cancelled."
msgstr ""

View File

@ -1,91 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:08+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:16
msgid "Measurement"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:37
msgid "Start"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:37
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:40
msgid "Coords"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:38
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:89
msgid "This is measuring Start point coordinates."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:40
msgid "Stop"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:41
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:94
msgid "This is the measuring Stop point coordinates."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:44
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:99
msgid "This is the distance measured over the X axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:47
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:105
msgid "This is the distance measured over the Y axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:49
msgid "DISTANCE"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:50
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:111
msgid "This is the point to point Euclidian distance."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:53
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:60
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:67
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:74
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:81
msgid "Those are the units in which the distance is measured."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:114
msgid "Measure"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:173
msgid "Meas. Tool"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:266
msgid "MEASURING: Click on the Start point ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:295
msgid "MEASURING: Click on the Destination point ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMeasurement.py:316
msgid "MEASURING: Result D(x) = %.4f | D(y) = %.4f | Distance = %.4f"
msgstr ""

View File

@ -1,61 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:08+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:15
msgid "Move"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:70
msgid "MOVE: Click on the Start point ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:77
msgid "[WARNING_NOTCL] MOVE action cancelled. No object(s) to move."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:99
msgid "MOVE: Click on the Destination point ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:117
msgid "Moving ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:124
msgid "[WARNING_NOTCL] No object(s) selected."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:147
msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:153
msgid "[success]%s object was moved ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:163
msgid "[ERROR_NOTCL] ToolMove.on_left_click() --> Error when mouse left click."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:191
msgid "[WARNING_NOTCL]Move action cancelled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolMove.py:203
msgid "[WARNING_NOTCL]Object(s) not selected"
msgstr ""

View File

@ -1,257 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:09+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:13
msgid "Non-Copper Clearing"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:51
msgid "Gerber object to be cleared of excess copper. "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:59
msgid "Tools Table"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:61
msgid ""
"Tools pool from which the algorithm\n"
"will pick the ones used for copper clearing."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:70
msgid "Diameter"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:76
msgid ""
"This is the Tool Number.\n"
"Non copper clearing will start with the tool with the biggest \n"
"diameter, continuing until there are no more tools.\n"
"Only tools that create NCC clearing geometry will still be present\n"
"in the resulting geometry. This is because with some tools\n"
"this function will not be able to create painting geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:84
msgid ""
"Tool Diameter. It's value (in current FlatCAM units) \n"
"is the cut width into the material."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:88
msgid "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is informative only. Being circular, <BR>the cut width in material is exactly the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut parameter in the resulting geometry UI form and enable two additional UI form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter such as the cut width into material will be equal with the value in the Tool Diameter column of this table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select the Operation Type in the resulting geometry as Isolation."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:107
msgid "Tool Dia"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:109
msgid "Diameter for the new tool to add in the Tool Table"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:121
msgid "Add"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:123
msgid ""
"Add a new tool to the Tool Table\n"
"with the diameter specified above."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:133
msgid "Delete"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:135
msgid ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:152
msgid "Overlap:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:154
msgid ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
"Example:\n"
"A value here of 0.25 means 25% from the tool diameter found above.\n"
"\n"
"Adjust the value starting with lower values\n"
"and increasing it if areas that should be cleared are still \n"
"not cleared.\n"
"Lower values = faster processing, faster execution on PCB.\n"
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:168
msgid "Margin:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:170
msgid "Bounding box margin."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:177
msgid "Method:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:179
msgid "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards.<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel lines."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:193
msgid "Connect:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:195
msgid ""
"Draw lines between resulting\n"
"segments to minimize tool lifts."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:202
msgid "Contour:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:204
msgid ""
"Cut around the perimeter of the polygon\n"
"to trim rough edges."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:211
msgid "Rest M.:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:213
msgid ""
"If checked, use 'rest machining'.\n"
"Basically it will clear copper outside PCB features,\n"
"using the biggest tool and continue with the next tools,\n"
"from bigger to smaller, to clear areas of copper that\n"
"could not be cleared by previous tool, until there is\n"
"no more copper to clear or there are no more tools.\n"
"If not checked, use the standard algorithm."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:225
msgid "Generate Geometry"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:227
msgid ""
"Create the Geometry Object\n"
"for non-copper routing."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:267
msgid "NCC Tool"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:462
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:609
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:621
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:467
msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:471
msgid "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:495
msgid "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:500
msgid "[success] New tool added to Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:533
msgid "[ERROR_NOTCL] Wrong value format entered, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:542
msgid "[success] Tool from Tool Table was edited."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:553
msgid "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:592
msgid "[WARNING_NOTCL]Delete failed. Select a tool to delete."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:597
msgid "[success] Tool(s) deleted from Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:643
msgid "[ERROR_NOTCL]Could not retrieve object: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:650
msgid "[ERROR_NOTCL]No Gerber file available."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:688
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:810
msgid "Clearing Non-Copper areas."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:706
msgid "[success] Non-Copper Clearing with ToolDia = %s started."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:775
msgid "[ERROR_NOTCL] NCCTool.clear_non_copper() --> %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:780
msgid "[success] NCC Tool finished."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:782
msgid "[WARNING_NOTCL] NCC Tool finished but some PCB features could not be cleared. Check the result."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:790
msgid "Tools"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:828
msgid "[success] Non-Copper Rest Clearing with ToolDia = %s started."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:926
msgid "[ERROR_NOTCL] NCCTool.clear_non_copper_rest() --> %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolNonCopperClear.py:934
msgid "[ERROR_NOTCL] NCC Tool finished but could not clear the object with current settings."
msgstr ""

View File

@ -1,302 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:11+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:12
msgid "Paint Area"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:48
msgid "Geometry:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:50
msgid "Geometry object to be painted. "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:57
msgid "Tools Table"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:59
msgid ""
"Tools pool from which the algorithm\n"
"will pick the ones used for painting."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:68
msgid "Diameter"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:74
msgid ""
"This is the Tool Number.\n"
"Painting will start with the tool with the biggest diameter,\n"
"continuing until there are no more tools.\n"
"Only tools that create painting geometry will still be present\n"
"in the resulting geometry. This is because with some tools\n"
"this function will not be able to create painting geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:82
msgid ""
"Tool Diameter. It's value (in current FlatCAM units) \n"
"is the cut width into the material."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:86
msgid "The Tool Type (TT) can be:<BR>- <B>Circular</B> with 1 ... 4 teeth -> it is informative only. Being circular, <BR>the cut width in material is exactly the tool diameter.<BR>- <B>Ball</B> -> informative only and make reference to the Ball type endmill.<BR>- <B>V-Shape</B> -> it will disable de Z-Cut parameter in the resulting geometry UI form and enable two additional UI form fields in the resulting geometry: V-Tip Dia and V-Tip Angle. Adjusting those two values will adjust the Z-Cut parameter such as the cut width into material will be equal with the value in the Tool Diameter column of this table.<BR>Choosing the <B>V-Shape</B> Tool Type automatically will select the Operation Type in the resulting geometry as Isolation."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:105
msgid "Tool Dia"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:107
msgid "Diameter for the new tool."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:119
msgid "Add"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:121
msgid ""
"Add a new tool to the Tool Table\n"
"with the diameter specified above."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:131
msgid "Delete"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:133
msgid ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:148
msgid "Overlap:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:150
msgid ""
"How much (fraction) of the tool width to overlap each tool pass.\n"
"Example:\n"
"A value here of 0.25 means 25% from the tool diameter found above.\n"
"\n"
"Adjust the value starting with lower values\n"
"and increasing it if areas that should be painted are still \n"
"not painted.\n"
"Lower values = faster processing, faster execution on PCB.\n"
"Higher values = slow processing and slow execution on CNC\n"
"due of too many paths."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:165
msgid "Margin:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:167
msgid ""
"Distance by which to avoid\n"
"the edges of the polygon to\n"
"be painted."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:176
msgid "Method:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:178
msgid "Algorithm for non-copper clearing:<BR><B>Standard</B>: Fixed step inwards.<BR><B>Seed-based</B>: Outwards from seed.<BR><B>Line-based</B>: Parallel lines."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:192
msgid "Connect:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:194
msgid ""
"Draw lines between resulting\n"
"segments to minimize tool lifts."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:201
msgid "Contour:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:203
msgid ""
"Cut around the perimeter of the polygon\n"
"to trim rough edges."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:210
msgid "Rest M.:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:212
msgid ""
"If checked, use 'rest machining'.\n"
"Basically it will clear copper outside PCB features,\n"
"using the biggest tool and continue with the next tools,\n"
"from bigger to smaller, to clear areas of copper that\n"
"could not be cleared by previous tool, until there is\n"
"no more copper to clear or there are no more tools.\n"
"\n"
"If not checked, use the standard algorithm."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:225
msgid "Selection:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:227
msgid "How to select the polygons to paint.<BR>Options:<BR>- <B>Single</B>: left mouse click on the polygon to be painted.<BR>- <B>All</B>: paint all polygons."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:242
msgid "Create Paint Geometry"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:244
msgid "After clicking here, click inside<BR>the polygon you wish to be painted if <B>Single</B> is selected.<BR>If <B>All</B> is selected then the Paint will start after click.<BR>A new Geometry object with the tool<BR>paths will be created."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:325
msgid "Paint Tool"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:522
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:592
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:727
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:818
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:973
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:528
msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:552
msgid "[WARNING_NOTCL]Adding tool cancelled. Tool already in Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:557
msgid "[success] New tool added to Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:600
msgid "[success] Tool from Tool Table was edited."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:611
msgid "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:708
msgid "[WARNING_NOTCL]Delete failed. Select a tool to delete."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:713
msgid "[success] Tool(s) deleted from Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:717
msgid "geometry_on_paint_button"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:719
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:764
msgid "[WARNING_NOTCL]Click inside the desired polygon."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:741
msgid "[ERROR_NOTCL]Could not retrieve object: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:745
msgid "[ERROR_NOTCL]Object not found: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:751
msgid "[ERROR_NOTCL] Can't do Paint on MultiGeo geometries ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:773
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:977
msgid "Painting polygon..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:825
msgid "[WARNING] No polygon found."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:828
msgid "Painting polygon."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:870
msgid "[ERROR_NOTCL] Geometry could not be painted completely"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:896
msgid ""
"[ERROR] Could not do Paint. Try a different combination of parameters. Or a different strategy of paint\n"
"%s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:938
msgid "[ERROR_NOTCL] PaintTool.paint_poly() --> %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:944
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1236
msgid "Polygon Paint started ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1092
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1181
msgid ""
"[ERROR] Could not do Paint All. Try a different combination of parameters. Or a different Method of paint\n"
"%s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1116
msgid ""
"[ERROR] There is no Painting Geometry in the file.\n"
"Usually it means that the tool diameter is too big for the painted geometry.\n"
"Change the painting parameters and try again."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1125
msgid "[success] Paint All Done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1211
msgid ""
"[ERROR_NOTCL] There is no Painting Geometry in the file.\n"
"Usually it means that the tool diameter is too big for the painted geometry.\n"
"Change the painting parameters and try again."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPaint.py:1220
msgid "[success] Paint All with Rest-Machining done."
msgstr ""

View File

@ -1,199 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:11+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:13
msgid "Panelize PCB"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:44
msgid "Object Type:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:46
msgid ""
"Specify the type of object to be panelized\n"
"It can be of type: Gerber, Excellon or Geometry.\n"
"The selection here decide the type of objects that will be\n"
"in the Object combobox."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:59
msgid "Object:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:61
msgid ""
"Object to be panelized. This means that it will\n"
"be duplicated in an array of rows and columns."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:77
msgid "Box Type:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:79
msgid ""
"Specify the type of object to be used as an container for\n"
"panelization. It can be: Gerber or Geometry type.\n"
"The selection here decide the type of objects that will be\n"
"in the Box Object combobox."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:92
msgid "Box Object:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:94
msgid ""
"The actual object that is used a container for the\n"
" selected object that is to be panelized."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:101
msgid "Spacing cols:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:103
msgid ""
"Spacing between columns of the desired panel.\n"
"In current units."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:110
msgid "Spacing rows:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:112
msgid ""
"Spacing between rows of the desired panel.\n"
"In current units."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:119
msgid "Columns:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:121
msgid "Number of columns of the desired panel"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:127
msgid "Rows:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:129
msgid "Number of rows of the desired panel"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:136
msgid "Panel Type:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:138
msgid ""
"Choose the type of object for the panel object:\n"
"- Geometry\n"
"- Gerber"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:146
msgid "Constrain panel within:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:148
msgid ""
"Area define by DX and DY within to constrain the panel.\n"
"DX and DY values are in current units.\n"
"Regardless of how many columns and rows are desired,\n"
"the final panel will have as many columns and rows as\n"
"they fit completely within selected area."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:157
msgid "Width (DX):"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:159
msgid ""
"The width (DX) within which the panel must fit.\n"
"In current units."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:165
msgid "Height (DY):"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:167
msgid ""
"The height (DY)within which the panel must fit.\n"
"In current units."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:180
msgid "Panelize Object"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:182
msgid ""
"Panelize the specified object around the specified box.\n"
"In other words it creates multiple copies of the source object,\n"
"arranged in a 2D array of rows and columns."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:278
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:292
msgid "[ERROR_NOTCL]Could not retrieve object: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:284
msgid "[ERROR_NOTCL]Object not found: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:296
msgid "[WARNING]No object Box. Using instead %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:308
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:320
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:333
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:346
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:358
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:369
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:377
msgid "[ERROR_NOTCL]Columns or Rows are zero value. Change them to a positive integer."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:481
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:590
msgid "Generating panel ... Please wait."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:584
msgid "[success]Panel done..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:587
msgid "[WARNING] Too big for the constrain area. Final panel has %s columns and %s rows"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolPanelize.py:595
msgid "[success]Panel created successfully."
msgstr ""

View File

@ -1,37 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:12+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:13
msgid "Properties"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:87
msgid "[ERROR_NOTCL] Properties Tool was not displayed. No object selected."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:88
msgid "Tools"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:94
msgid "[success] Object Properties are displayed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolProperties.py:95
msgid "Properties Tool"
msgstr ""

View File

@ -1,25 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:13+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolShell.py:65
msgid "...proccessing..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolShell.py:67
msgid "...proccessing... [%s]"
msgstr ""

View File

@ -1,429 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:14+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:26
msgid "Solder Paste Tool"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:54
msgid "Gerber Solder paste object. "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:59
msgid "Tools Table"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:61
msgid ""
"Tools pool from which the algorithm\n"
"will pick the ones used for dispensing solder paste."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:70
msgid "Diameter"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:76
msgid ""
"This is the Tool Number.\n"
"The solder dispensing will start with the tool with the biggest \n"
"diameter, continuing until there are no more Nozzle tools.\n"
"If there are no longer tools but there are still pads not covered\n"
" with solder paste, the app will issue a warning message box."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:83
msgid ""
"Nozzle tool Diameter. It's value (in current FlatCAM units)\n"
"is the width of the solder paste dispensed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:90
msgid "New Nozzle Tool"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:92
msgid "Diameter for the new Nozzle tool to add in the Tool Table"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:104
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:464
msgid "Add"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:106
msgid ""
"Add a new nozzle tool to the Tool Table\n"
"with the diameter specified above."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:110
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:466
msgid "Delete"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:112
msgid ""
"Delete a selection of tools in the Tool Table\n"
"by first selecting a row(s) in the Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:116
msgid "Generate Geo"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:118
msgid "Generate solder paste dispensing geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:131
msgid "STEP 1"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:133
msgid ""
"First step is to select a number of nozzle tools for usage\n"
"and then optionally modify the GCode parameters bellow."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:136
msgid ""
"Select tools.\n"
"Modify parameters."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:155
msgid "Z Dispense Start:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:157
msgid "The height (Z) when solder paste dispensing starts."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:163
msgid "Z Dispense:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:165
msgid "The height (Z) when doing solder paste dispensing."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:172
msgid "Z Dispense Stop:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:174
msgid "The height (Z) when solder paste dispensing stops."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:180
msgid "Z Travel:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:182
msgid ""
"The height (Z) for travel between pads\n"
"(without dispensing solder paste)."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:189
msgid "Z Toolchange:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:191
msgid "The height (Z) for tool (nozzle) change."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:197
msgid "XY Toolchange:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:199
msgid ""
"The X,Y location for tool (nozzle) change.\n"
"The format is (x, y) where x and y are real numbers."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:206
msgid "Feedrate X-Y:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:208
msgid "Feedrate (speed) while moving on the X-Y plane."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:214
msgid "Feedrate Z:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:216
msgid ""
"Feedrate (speed) while moving vertically\n"
"(on Z plane)."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:223
msgid "Feedrate Z Dispense:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:225
msgid ""
"Feedrate (speed) while moving up vertically\n"
" to Dispense position (on Z plane)."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:232
msgid "Spindle Speed FWD:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:234
msgid ""
"The dispenser speed while pushing solder paste\n"
"through the dispenser nozzle."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:241
msgid "Dwell FWD:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:243
msgid "Pause after solder dispensing."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:249
msgid "Spindle Speed REV:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:251
msgid ""
"The dispenser speed while retracting solder paste\n"
"through the dispenser nozzle."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:258
msgid "Dwell REV:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:260
msgid ""
"Pause after solder paste dispenser retracted,\n"
"to allow pressure equilibrium."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:266
msgid "PostProcessors:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:268
msgid "Files that control the GCode generation."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:279
msgid "Generate GCode"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:281
msgid ""
"Generate GCode for Solder Paste dispensing\n"
"on PCB pads."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:297
msgid "STEP 2:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:299
msgid ""
"Second step is to create a solder paste dispensing\n"
"geometry out of an Solder Paste Mask Gerber file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:315
msgid "Geo Result:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:317
msgid ""
"Geometry Solder Paste object.\n"
"The name of the object has to end in:\n"
"'_solderpaste' as a protection."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:326
msgid "STEP 3:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:328
msgid ""
"Third step is to select a solder paste dispensing geometry,\n"
"and then generate a CNCJob object.\n"
"\n"
"REMEMBER: if you want to create a CNCJob with new parameters,\n"
"first you need to generate a geometry with those new params,\n"
"and only after that you can generate an updated CNCJob."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:348
msgid "CNC Result:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:350
msgid ""
"CNCJob Solder paste object.\n"
"In order to enable the GCode save section,\n"
"the name of the object has to end in:\n"
"'_solderpaste' as a protection."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:360
msgid "View GCode"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:362
msgid ""
"View the generated GCode for Solder Paste dispensing\n"
"on PCB pads."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:366
msgid "Save GCode"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:368
msgid ""
"Save the generated GCode for Solder Paste dispensing\n"
"on PCB pads, to a file."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:372
msgid "STEP 4:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:374
msgid ""
"Fourth step (and last) is to select a CNCJob made from \n"
"a solder paste dispensing geometry, and then view/save it's GCode."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:402
msgid "Delete Object"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:741
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:812
msgid "[ERROR_NOTCL]Wrong value format entered, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:746
msgid "[WARNING_NOTCL] Please enter a tool diameter to add, in Float format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:750
msgid "[WARNING_NOTCL] Please enter a tool diameter with non-zero value, in Float format."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:774
msgid "[WARNING_NOTCL] Adding Nozzle tool cancelled. Tool already in Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:779
msgid "[success] New Nozzle tool added to Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:821
msgid "[success] Nozzle tool from Tool Table was edited."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:832
msgid "[WARNING_NOTCL] Edit cancelled. New diameter value is already in the Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:877
msgid "[WARNING_NOTCL] Delete failed. Select a Nozzle tool to delete."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:882
msgid "[success] Nozzle tool(s) deleted from Tool Table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:937
msgid "[WARNING_NOTCL] No SolderPaste mask Gerber object loaded."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:954
msgid "Creating Solder Paste dispensing geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:966
msgid "[WARNING_NOTCL] No Nozzle tools in the tool table."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1092
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1147
msgid "[ERROR_NOTCL] Cancelled. Empty file, it has no geometry..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1095
msgid "[success] Solder Paste geometry generated successfully..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1101
msgid "[WARNING_NOTCL] Some or all pads have no solder due of inadequate nozzle diameters..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1115
msgid "Generating Solder Paste dispensing geometry..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1135
msgid "[WARNING_NOTCL] There is no Geometry object available."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1139
msgid "[WARNING_NOTCL] This Geometry can't be processed. NOT a solder_paste_tool geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1244
msgid "[success] ToolSolderPaste CNCjob created: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1276
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1280
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1331
msgid "[WARNING_NOTCL] This CNCJob object can't be processed. NOT a solder_paste_tool CNCJob object."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1303
msgid "[ERROR_NOTCL] No Gcode in the object..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1312
msgid "[ERROR] ToolSolderPaste.on_view_gcode() -->%s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1349
msgid "[WARNING_NOTCL] Export Machine Code cancelled ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1375
msgid "[WARNING_NOTCL] No such file or directory"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolSolderPaste.py:1379
msgid "[success] Solder paste dispenser GCode file saved to: %s"
msgstr ""

View File

@ -1,369 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 13:16+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:14
msgid "Object Transform"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:15
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:73
msgid "Rotate"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:16
msgid "Skew/Shear"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:17
msgid "Scale"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:18
msgid "Mirror (Flip)"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:19
msgid "Offset"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:59
msgid "Angle:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:61
msgid ""
"Angle for Rotation action, in degrees.\n"
"Float number between -360 and 359.\n"
"Positive numbers for CW motion.\n"
"Negative numbers for CCW motion."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:75
msgid ""
"Rotate the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:98
msgid "Angle X:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:100
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:118
msgid ""
"Angle for Skew action, in degrees.\n"
"Float number between -360 and 359."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:109
msgid "Skew X"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:111
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:129
msgid ""
"Skew/shear the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:116
msgid "Angle Y:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:127
msgid "Skew Y"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:155
msgid "Factor X:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:157
msgid "Factor for Scale action over X axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:165
msgid "Scale X"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:167
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:184
msgid ""
"Scale the selected object(s).\n"
"The point of reference depends on \n"
"the Scale reference checkbox state."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:172
msgid "Factor Y:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:174
msgid "Factor for Scale action over Y axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:182
msgid "Scale Y"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:191
msgid "Link"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:193
msgid ""
"Scale the selected object(s)\n"
"using the Scale Factor X for both axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:199
msgid "Scale Reference"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:201
msgid ""
"Scale the selected object(s)\n"
"using the origin reference when checked,\n"
"and the center of the biggest bounding box\n"
"of the selected objects when unchecked."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:229
msgid "Value X:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:231
msgid "Value for Offset action on X axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:239
msgid "Offset X"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:241
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:258
msgid ""
"Offset the selected object(s).\n"
"The point of reference is the middle of\n"
"the bounding box for all selected objects.\n"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:246
msgid "Value Y:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:248
msgid "Value for Offset action on Y axis."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:256
msgid "Offset Y"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:286
msgid "Flip on X"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:288
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:296
msgid ""
"Flip the selected object(s) over the X axis.\n"
"Does not create a new object.\n"
" "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:294
msgid "Flip on Y"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:303
msgid "Ref Pt"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:305
msgid ""
"Flip the selected object(s)\n"
"around the point in Point Entry Field.\n"
"\n"
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
"SHIFT key. \n"
"Then click Add button to insert coordinates.\n"
"Or enter the coords in format (x, y) in the\n"
"Point Entry field and click Flip on X(Y)"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:316
msgid "Point:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:318
msgid ""
"Coordinates in format (x, y) used as reference for mirroring.\n"
"The 'x' in (x, y) will be used when using Flip on X and\n"
"the 'y' in (x, y) will be used when using Flip on Y and"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:328
msgid "Add"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:330
msgid ""
"The point coordinates can be captured by\n"
"left click on canvas together with pressing\n"
"SHIFT key. Then click Add button to insert."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:386
msgid "Transform Tool"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:456
msgid "[ERROR_NOTCL]Wrong value format entered for Rotate, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:490
msgid "[ERROR_NOTCL]Wrong value format entered for Skew X, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:508
msgid "[ERROR_NOTCL]Wrong value format entered for Skew Y, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:526
msgid "[ERROR_NOTCL]Wrong value format entered for Scale X, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:560
msgid "[ERROR_NOTCL]Wrong value format entered for Scale Y, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:589
msgid "[ERROR_NOTCL]Wrong value format entered for Offset X, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:607
msgid "[ERROR_NOTCL]Wrong value format entered for Offset Y, use a number."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:625
msgid "[WARNING_NOTCL] No object selected. Please Select an object to rotate!"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:628
msgid "Appying Rotate"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:653
msgid "CNCJob objects can't be rotated."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:662
msgid "[success]Rotate done ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:666
msgid "[ERROR_NOTCL] Due of %s, rotation movement was not executed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:677
msgid "[WARNING_NOTCL] No object selected. Please Select an object to flip!"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:680
msgid "Applying Flip"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:712
msgid "CNCJob objects can't be mirrored/flipped."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:723
msgid "[success]Flip on the Y axis done ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:733
msgid "[success]Flip on the X axis done ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:738
msgid "[ERROR_NOTCL] Due of %s, Flip action was not executed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:747
msgid "[WARNING_NOTCL] No object selected. Please Select an object to shear/skew!"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:750
msgid "Applying Skew"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:769
msgid "CNCJob objects can't be skewed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:781
msgid "[success]Skew on the %s axis done ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:785
msgid "[ERROR_NOTCL] Due of %s, Skew action was not executed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:796
msgid "[WARNING_NOTCL] No object selected. Please Select an object to scale!"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:799
msgid "Applying Scale"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:829
msgid "CNCJob objects can't be scaled."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:837
msgid "[success] Scale on the %s axis done ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:840
msgid "[ERROR_NOTCL] Due of %s, Scale action was not executed."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:849
msgid "[WARNING_NOTCL] No object selected. Please Select an object to offset!"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:852
msgid "Applying Offset"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:870
msgid "CNCJob objects can't be offseted."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:882
msgid "[success]Offset on the %s axis done ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\flatcamTools\ToolTransform.py:886
msgid "[ERROR_NOTCL] Due of %s, Offset action was not executed."
msgstr ""

View File

@ -1,173 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2019-03-10 02:11+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=cp1252\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: D:\1.DEV\FlatCAM_beta\camlib.py:202
msgid "[ERROR_NOTCL] self.solid_geometry is neither BaseGeometry or list."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:1389
msgid "[success]Object was mirrored ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:1391
msgid "[ERROR_NOTCL] Failed to mirror. No object selected"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:1427
msgid "[success]Object was rotated ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:1429
msgid "[ERROR_NOTCL] Failed to rotate. No object selected"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:1463
msgid "[success]Object was skewed ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:1465
msgid "[ERROR_NOTCL] Failed to skew. No object selected"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:2641 D:\1.DEV\FlatCAM_beta\camlib.py:2701
msgid "[WARNING] Coordinates missing, line ignored: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:2642 D:\1.DEV\FlatCAM_beta\camlib.py:2702
msgid "[WARNING_NOTCL] GERBER file might be CORRUPT. Check the file !!!"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:2671
msgid "[ERROR] Region does not have enough points. File will be processed but there are parser errors. Line number: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:3025
msgid ""
"[ERROR]Gerber Parser ERROR.\n"
"%s:"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:3203 D:\1.DEV\FlatCAM_beta\camlib.py:3212
msgid "[ERROR_NOTCL] Scale factor has to be a number: integer or float."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:3241
msgid "[success]Gerber Scale done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:3274
msgid "[ERROR_NOTCL]An (x,y) pair of values are needed. Probable you entered only one value in the Offset field."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:3298
msgid "[success]Gerber Offset done."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:3674
msgid "[ERROR_NOTCL] This is GCODE mark: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:4203
msgid ""
"[ERROR_NOTCL] An internal error has ocurred. See shell.\n"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:4204
msgid ""
"[ERROR] Excellon Parser error.\n"
"Parsing Failed. Line %d: %s\n"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:4281
msgid ""
"[WARNING] Excellon.create_geometry() -> a drill location was skipped due of not having a tool associated.\n"
"Check the resulting GCode."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:4817
msgid "[ERROR] There is no such parameter: %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:4882
msgid ""
"[WARNING] The Cut Z parameter has positive value. It is the depth value to drill into material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo therefore the app will convert the value to negative. Check the resulting CNC code (Gcode etc)."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:4889 D:\1.DEV\FlatCAM_beta\camlib.py:5357
#: D:\1.DEV\FlatCAM_beta\camlib.py:5628
msgid "[WARNING] The Cut Z parameter is zero. There will be no cut, skipping %s file"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:4903 D:\1.DEV\FlatCAM_beta\camlib.py:5334
#: D:\1.DEV\FlatCAM_beta\camlib.py:5605
msgid ""
"[ERROR]The Toolchange X,Y field in Edit -> Preferences has to be in the format (x, y) \n"
"but now there is only one value, not two. "
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5105 D:\1.DEV\FlatCAM_beta\camlib.py:5195
#: D:\1.DEV\FlatCAM_beta\camlib.py:5246
msgid "[ERROR_NOTCL]The loaded Excellon file has no drills ..."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5200
msgid "[ERROR_NOTCL] Wrong optimization type selected."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5345 D:\1.DEV\FlatCAM_beta\camlib.py:5616
msgid "[ERROR_NOTCL] Cut_Z parameter is None or zero. Most likely a bad combinations of other parameters."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5350 D:\1.DEV\FlatCAM_beta\camlib.py:5621
msgid ""
"[WARNING] The Cut Z parameter has positive value. It is the depth value to cut into material.\n"
"The Cut Z parameter needs to have a negative value, assuming it is a typo therefore the app will convert the value to negative.Check the resulting CNC code (Gcode etc)."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5362 D:\1.DEV\FlatCAM_beta\camlib.py:5633
msgid "[ERROR_NOTCL] Travel Z parameter is None or zero."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5366 D:\1.DEV\FlatCAM_beta\camlib.py:5637
msgid ""
"[WARNING] The Travel Z parameter has negative value. It is the height value to travel between cuts.\n"
"The Z Travel parameter needs to have a positive value, assuming it is a typo therefore the app will convert the value to positive.Check the resulting CNC code (Gcode etc)."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5373 D:\1.DEV\FlatCAM_beta\camlib.py:5644
msgid "[WARNING] The Z Travel parameter is zero. This is dangerous, skipping %s file"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5503
msgid "[ERROR]Expected a Geometry, got %s"
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5509
msgid "[ERROR_NOTCL]Trying to generate a CNC Job from a Geometry object without solid_geometry."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5548
msgid ""
"[ERROR_NOTCL]The Tool Offset value is too negative to use for the current_geometry.\n"
"Raise the value (in module) and try again."
msgstr ""
#: D:\1.DEV\FlatCAM_beta\camlib.py:5770
msgid "[ERROR_NOTCL] There is no tool data in the SolderPaste geometry."
msgstr ""