- some fixed due of recent changes and some strings changed
- added a validator for the FCColorEntry GUI element such that only the valid chars are accepted
This commit is contained in:
@@ -259,7 +259,7 @@ class ToolFiducials(AppTool):
|
||||
self.grb_object_combo.is_last = True
|
||||
self.grb_object_combo.obj_type = "Gerber"
|
||||
|
||||
self.grbobj_label = QtWidgets.QLabel("<b>%s:</b>" % _("Copper Gerber"))
|
||||
self.grbobj_label = QtWidgets.QLabel("<b>%s:</b>" % _("GERBER"))
|
||||
self.grbobj_label.setToolTip(
|
||||
_("Gerber Object to which will be added a copper thieving.")
|
||||
)
|
||||
|
||||
@@ -58,7 +58,7 @@ class RulesCheck(AppTool):
|
||||
self.grid_layout.setColumnStretch(1, 3)
|
||||
self.grid_layout.setColumnStretch(2, 0)
|
||||
|
||||
self.gerber_title_lbl = QtWidgets.QLabel('<b>%s</b>:' % _("Gerber Files"))
|
||||
self.gerber_title_lbl = QtWidgets.QLabel('<b>%s</b>:' % _("GERBER"))
|
||||
self.gerber_title_lbl.setToolTip(
|
||||
_("Gerber objects for which to check rules.")
|
||||
)
|
||||
@@ -196,7 +196,7 @@ class RulesCheck(AppTool):
|
||||
|
||||
self.grid_layout.addWidget(QtWidgets.QLabel(""), 8, 0, 1, 3)
|
||||
|
||||
self.excellon_title_lbl = QtWidgets.QLabel('<b>%s</b>:' % _("Excellon Objects"))
|
||||
self.excellon_title_lbl = QtWidgets.QLabel('<b>%s</b>:' % _("EXCELLON"))
|
||||
self.excellon_title_lbl.setToolTip(
|
||||
_("Excellon objects for which to check rules.")
|
||||
)
|
||||
|
||||
@@ -67,7 +67,7 @@ class ToolSub(AppTool):
|
||||
form_layout = QtWidgets.QFormLayout()
|
||||
self.tools_box.addLayout(form_layout)
|
||||
|
||||
self.gerber_title = QtWidgets.QLabel("<b>%s</b>" % _("Gerber Objects"))
|
||||
self.gerber_title = QtWidgets.QLabel("<b>%s</b>" % _("GERBER"))
|
||||
form_layout.addRow(self.gerber_title)
|
||||
|
||||
# Target Gerber Object
|
||||
@@ -122,7 +122,7 @@ class ToolSub(AppTool):
|
||||
form_geo_layout = QtWidgets.QFormLayout()
|
||||
self.tools_box.addLayout(form_geo_layout)
|
||||
|
||||
self.geo_title = QtWidgets.QLabel("<b>%s</b>" % _("Geometry Objects"))
|
||||
self.geo_title = QtWidgets.QLabel("<b>%s</b>" % _("GEOMETRY"))
|
||||
form_geo_layout.addRow(self.geo_title)
|
||||
|
||||
# Target Geometry Object
|
||||
|
||||
Reference in New Issue
Block a user