|
@@ -320,7 +320,7 @@ class PreferencesDialog(PreferencesBaseDialog):
|
|
|
hideSearch = wx.CheckBox(
|
|
|
parent=panel,
|
|
|
id=wx.ID_ANY,
|
|
|
- label=_("Hide '%s' tab (requires GUI restart)") % _("Modules"),
|
|
|
+ label=_("Hide '%s' tab (requires GUI restart)") % _("Tools"),
|
|
|
name="IsChecked",
|
|
|
)
|
|
|
hideSearch.SetValue(
|
|
@@ -721,7 +721,7 @@ class PreferencesDialog(PreferencesBaseDialog):
|
|
|
#
|
|
|
row += 1
|
|
|
gridSizer.Add(
|
|
|
- StaticText(parent=panel, id=wx.ID_ANY, label=_("Module dialog style:")),
|
|
|
+ StaticText(parent=panel, id=wx.ID_ANY, label=_("Tool dialog style:")),
|
|
|
flag=wx.ALIGN_LEFT | wx.ALIGN_CENTER_VERTICAL,
|
|
|
pos=(row, 0),
|
|
|
)
|
|
@@ -1097,11 +1097,11 @@ class PreferencesDialog(PreferencesBaseDialog):
|
|
|
"""Create notebook page for commad dialog settings"""
|
|
|
panel = SP.ScrolledPanel(parent=notebook, id=wx.ID_ANY)
|
|
|
panel.SetupScrolling(scroll_x=False, scroll_y=True)
|
|
|
- notebook.AddPage(page=panel, text=_("Modules"))
|
|
|
+ notebook.AddPage(page=panel, text=_("Tools"))
|
|
|
|
|
|
border = wx.BoxSizer(wx.VERTICAL)
|
|
|
box = StaticBox(
|
|
|
- parent=panel, id=wx.ID_ANY, label=" %s " % _("Module dialog settings")
|
|
|
+ parent=panel, id=wx.ID_ANY, label=" %s " % _("Tool dialog settings")
|
|
|
)
|
|
|
sizer = wx.StaticBoxSizer(box, wx.VERTICAL)
|
|
|
|
|
@@ -1129,7 +1129,7 @@ class PreferencesDialog(PreferencesBaseDialog):
|
|
|
close = wx.CheckBox(
|
|
|
parent=panel,
|
|
|
id=wx.ID_ANY,
|
|
|
- label=_("Close dialog when module is successfully finished"),
|
|
|
+ label=_("Close dialog when completed successfully"),
|
|
|
name="IsChecked",
|
|
|
)
|
|
|
close.SetValue(self.settings.Get(group="cmd", key="closeDlg", subkey="enabled"))
|