Skip to content

Commit

Permalink
Rename the Criteria Set name field for easier UI discovery (#24)
Browse files Browse the repository at this point in the history
 * Minor capitalization tweek on the dialog title
  • Loading branch information
JulienCochuyt committed Jul 29, 2024
1 parent e30e033 commit a076482
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addon/globalPlugins/webAccess/gui/criteriaEditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@



__version__ = "2021.06.26"
__version__ = "2021.06.28"
__author__ = "Shirley Noël <[email protected]>"


Expand Down Expand Up @@ -250,7 +250,7 @@ def makeSettings(self, settingsSizer):

row = 0
# Translator: The label for a field on the Criteria editor
item = wx.StaticText(self, label=_("&Name"))
item = wx.StaticText(self, label=_("Criteria Set &name"))
gbSizer.Add(item, pos=(row, 0))
gbSizer.Add(scale(guiHelper.SPACE_BETWEEN_ASSOCIATED_CONTROL_HORIZONTAL, 0), pos=(row, 1))
item = self.criteriaName = wx.TextCtrl(self)
Expand Down Expand Up @@ -993,7 +993,7 @@ def onSave(self):

class CriteriaEditorDialog(ContextualMultiCategorySettingsDialog):
# Translators: This is the label for the WebAccess criteria settings dialog.
title = _("WebAccess Criteria set editor")
title = _("WebAccess Criteria Set editor")
categoryClasses = [GeneralPanel, CriteriaPanel, PropertiesPanel, ActionsPanel]
INITIAL_SIZE = (900, 580)
def makeSettings(self, settingsSizer):
Expand Down

0 comments on commit a076482

Please sign in to comment.