- fixed some more strings

- updated the Google-translations for the German, Spanish, French
- updated the Romanian translation
This commit is contained in:
Marius Stanciu
2020-06-02 17:39:48 +03:00
committed by Marius
parent 4630695c84
commit e239afd69b
32 changed files with 3693 additions and 4820 deletions

View File

@@ -54,7 +54,7 @@ class ToolCorners(AppTool):
# Gerber object #
self.object_label = QtWidgets.QLabel('<b>%s:</b>' % _("GERBER"))
self.object_label.setToolTip(
_("The Gerber object that to which will be added corner markers.")
_("The Gerber object to which will be added corner markers.")
)
self.object_combo = FCComboBox()
self.object_combo.setModel(self.app.collection)

View File

@@ -134,11 +134,11 @@ class ToolIsolation(AppTool, Gerber):
self.tools_table.horizontalHeaderItem(0).setToolTip(
_("This is the Tool Number.\n"
"Non copper clearing will start with the tool with the biggest \n"
"Isolation routing will start with the tool with the biggest \n"
"diameter, continuing until there are no more tools.\n"
"Only tools that create Isolation 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.")
"this function will not be able to create routing geometry.")
)
self.tools_table.horizontalHeaderItem(1).setToolTip(
_("Tool Diameter. It's value (in current FlatCAM units)\n"
@@ -495,7 +495,8 @@ class ToolIsolation(AppTool, Gerber):
self.select_label.setToolTip(
_("Isolation scope. Choose what to isolate:\n"
"- 'All' -> Isolate all the polygons in the object\n"
"- 'Selection' -> Isolate a selection of polygons.\n"
"- 'Area Selection' -> Isolate polygons within a selection area.\n"
"- 'Polygon Selection' -> Isolate a selection of polygons.\n"
"- 'Reference Object' - will process the area specified by another object.")
)
self.select_combo = FCComboBox()
@@ -2038,7 +2039,7 @@ class ToolIsolation(AppTool, Gerber):
# the tools are finished but the isolation is not finished therefore it failed
if work_geo:
self.app.inform.emit("[WARNING] %s" % _("Partial failure. The geometry was processed with all tools.\n"
"But there are still un-isolated geometry elements. "
"But there are still not-isolated geometry elements. "
"Try to include a tool with smaller diameter."))
self.app.shell_message(msg=_("The following are coordinates for the copper features "
"that could not be isolated:"))

View File

@@ -2264,7 +2264,7 @@ class NonCopperClear(AppTool, Gerber):
log.debug("NonCopperClear.clear_polygon_worker() Lines --> %s" % str(ee))
elif ncc_method == _("Combo"):
try:
self.app.inform.emit(_("Clearing polygon with method: lines."))
self.app.inform.emit(_("Clearing the polygon with the method: lines."))
cp = self.clear_polygon3(pol, tooldia,
steps_per_circle=self.grb_circle_steps,
overlap=ncc_overlap, contour=ncc_contour,
@@ -2274,7 +2274,7 @@ class NonCopperClear(AppTool, Gerber):
if cp and cp.objects:
pass
else:
self.app.inform.emit(_("Failed. Clearing polygon with method: seed."))
self.app.inform.emit(_("Failed. Clearing the polygon with the method: seed."))
cp = self.clear_polygon2(pol, tooldia,
steps_per_circle=self.grb_circle_steps,
overlap=ncc_overlap, contour=ncc_contour,
@@ -2283,7 +2283,7 @@ class NonCopperClear(AppTool, Gerber):
if cp and cp.objects:
pass
else:
self.app.inform.emit(_("Failed. Clearing polygon with method: standard."))
self.app.inform.emit(_("Failed. Clearing the polygon with the method: standard."))
cp = self.clear_polygon(pol, tooldia,
steps_per_circle=self.grb_circle_steps,
overlap=ncc_overlap, contour=ncc_contour,

View File

@@ -65,7 +65,7 @@ class SolderPaste(AppTool):
self.obj_combo.obj_type = "Gerber"
self.object_label = QtWidgets.QLabel('<b>%s</b>:'% _("GERBER"))
self.object_label.setToolTip(_("Gerber Solder paste object.")
self.object_label.setToolTip(_("Gerber Solderpaste object.")
)
obj_form_layout.addRow(self.object_label)
obj_form_layout.addRow(self.obj_combo)