- more strings updated; finished the Romanian translation update
This commit is contained in:
@@ -14,6 +14,7 @@ CAD program, and create G-Code for Isolation routing.
|
|||||||
- HPGL2 import: added support for circles, arcs and 3-point arcs. Everything works only for absolute coordinates.
|
- HPGL2 import: added support for circles, arcs and 3-point arcs. Everything works only for absolute coordinates.
|
||||||
- removed the .plt extension from Gcode extensions
|
- removed the .plt extension from Gcode extensions
|
||||||
- some strings updated; update on the Romanian translate
|
- some strings updated; update on the Romanian translate
|
||||||
|
- more strings updated; finished the Romanian translation update
|
||||||
|
|
||||||
12.12.2019
|
12.12.2019
|
||||||
|
|
||||||
|
|||||||
@@ -6123,7 +6123,7 @@ class Tools2CThievingPrefGroupUI(OptionsGroupUI):
|
|||||||
], orientation='vertical', stretch=False)
|
], orientation='vertical', stretch=False)
|
||||||
self.reference_label = QtWidgets.QLabel(_("Reference:"))
|
self.reference_label = QtWidgets.QLabel(_("Reference:"))
|
||||||
self.reference_label.setToolTip(
|
self.reference_label.setToolTip(
|
||||||
_("- 'Itself' - the copper Thieving extent is based on the object that is copper cleared.\n"
|
_("- 'Itself' - the copper Thieving extent is based on the object extent.\n"
|
||||||
"- 'Area Selection' - left mouse click to start selection of the area to be filled.\n"
|
"- 'Area Selection' - left mouse click to start selection of the area to be filled.\n"
|
||||||
"- 'Reference Object' - will do copper thieving within the area specified by another object.")
|
"- 'Reference Object' - will do copper thieving within the area specified by another object.")
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -401,7 +401,7 @@ class HPGL2:
|
|||||||
except Exception as err:
|
except Exception as err:
|
||||||
ex_type, ex, tb = sys.exc_info()
|
ex_type, ex, tb = sys.exc_info()
|
||||||
traceback.print_tb(tb)
|
traceback.print_tb(tb)
|
||||||
# print traceback.format_exc()
|
print(traceback.format_exc())
|
||||||
|
|
||||||
log.error("HPGL2 PARSING FAILED. Line %d: %s" % (line_num, gline))
|
log.error("HPGL2 PARSING FAILED. Line %d: %s" % (line_num, gline))
|
||||||
|
|
||||||
|
|||||||
@@ -172,9 +172,9 @@ class ToolCalibration(FlatCAMTool):
|
|||||||
|
|
||||||
step_1 = QtWidgets.QLabel('<b>%s</b>' % _("STEP 1: Acquire Calibration Points"))
|
step_1 = QtWidgets.QLabel('<b>%s</b>' % _("STEP 1: Acquire Calibration Points"))
|
||||||
step_1.setToolTip(
|
step_1.setToolTip(
|
||||||
_("Pick four points by clicking inside the drill holes.\n"
|
_("Pick four points by clicking on canvas.\n"
|
||||||
"Those four points should be in the four\n"
|
"Those four points should be in the four\n"
|
||||||
"(as much as possible) corners of the Excellon object.")
|
"(as much as possible) corners of the object.")
|
||||||
)
|
)
|
||||||
grid_lay.addWidget(step_1, 10, 0, 1, 3)
|
grid_lay.addWidget(step_1, 10, 0, 1, 3)
|
||||||
|
|
||||||
@@ -909,11 +909,11 @@ class ToolCalibration(FlatCAMTool):
|
|||||||
if len(self.click_points) == 1:
|
if len(self.click_points) == 1:
|
||||||
self.bottom_left_coordx_tgt.set_value(self.click_points[0][0])
|
self.bottom_left_coordx_tgt.set_value(self.click_points[0][0])
|
||||||
self.bottom_left_coordy_tgt.set_value(self.click_points[0][1])
|
self.bottom_left_coordy_tgt.set_value(self.click_points[0][1])
|
||||||
self.app.inform.emit(_("Get Second calibration point. Bottom Right..."))
|
self.app.inform.emit(_("Get Second calibration point. Bottom Right (Top Left)..."))
|
||||||
elif len(self.click_points) == 2:
|
elif len(self.click_points) == 2:
|
||||||
self.bottom_right_coordx_tgt.set_value(self.click_points[1][0])
|
self.bottom_right_coordx_tgt.set_value(self.click_points[1][0])
|
||||||
self.bottom_right_coordy_tgt.set_value(self.click_points[1][1])
|
self.bottom_right_coordy_tgt.set_value(self.click_points[1][1])
|
||||||
self.app.inform.emit(_("Get Third calibration point. Top Left..."))
|
self.app.inform.emit(_("Get Third calibration point. Top Left (Bottom Right)..."))
|
||||||
elif len(self.click_points) == 3:
|
elif len(self.click_points) == 3:
|
||||||
self.top_left_coordx_tgt.set_value(self.click_points[2][0])
|
self.top_left_coordx_tgt.set_value(self.click_points[2][0])
|
||||||
self.top_left_coordy_tgt.set_value(self.click_points[2][1])
|
self.top_left_coordy_tgt.set_value(self.click_points[2][1])
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ class ToolCopperThieving(FlatCAMTool):
|
|||||||
], orientation='vertical', stretch=False)
|
], orientation='vertical', stretch=False)
|
||||||
self.reference_label = QtWidgets.QLabel(_("Reference:"))
|
self.reference_label = QtWidgets.QLabel(_("Reference:"))
|
||||||
self.reference_label.setToolTip(
|
self.reference_label.setToolTip(
|
||||||
_("- 'Itself' - the copper thieving extent is based on the object that is copper cleared.\n"
|
_("- 'Itself' - the copper thieving extent is based on the object extent.\n"
|
||||||
"- 'Area Selection' - left mouse click to start selection of the area to be filled.\n"
|
"- 'Area Selection' - left mouse click to start selection of the area to be filled.\n"
|
||||||
"- 'Reference Object' - will do copper thieving within the area specified by another object.")
|
"- 'Reference Object' - will do copper thieving within the area specified by another object.")
|
||||||
)
|
)
|
||||||
|
|||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user