Skip to content

Commit

Permalink
Shortens some messages
Browse files Browse the repository at this point in the history
  • Loading branch information
AAClause committed Jul 17, 2020
1 parent f3eeba5 commit 48a8ed7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions addon/globalPlugins/brailleExtender/documentFormatting.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,16 +526,16 @@ def makeSettings(self, settingsSizer):
self.reportLineNumber.SetSelection(keys.index(conf["lineNumber"]))
bHelper = gui.guiHelper.ButtonHelper(orientation=wx.HORIZONTAL)
self.attributesBtn = bHelper.addButton(
self, label="%s..." % _("Representation of &attributes")
self, label="%s..." % _("Font &attributes")
)
self.attributesBtn.Bind(wx.EVT_BUTTON, self.onAttributesBtn)
self.alignmentsBtn = bHelper.addButton(
self, label="%s..." % _("Representation of a&lignments")
self, label="%s..." % _("A&lignments")
)
self.indentationBtn = bHelper.addButton(
self, label="%s..." % _("Representation of &indentations")
self, label="%s..." % _("&Indentations")
)
self.tagsBtn = bHelper.addButton(self, label="%s..." % _("Customize &tags"))
self.tagsBtn = bHelper.addButton(self, label="%s..." % _("&Tags"))
self.tagsBtn.Bind(wx.EVT_BUTTON, self.onTagsBtn)
sHelper.addItem(bHelper)

Expand Down
4 changes: 2 additions & 2 deletions addon/globalPlugins/brailleExtender/objectPresentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def __init__(
self,
parent=None,
# Translators: title of a dialog.
title=_("Manage properties order"),
title=_("Order Properties"),
):
super().__init__(parent, title=title)
mainSizer = wx.BoxSizer(wx.VERTICAL)
Expand Down Expand Up @@ -358,7 +358,7 @@ def makeSettings(self, settingsSizer):
self.selectedElement.SetSelection(itemToSelect)
bHelper = gui.guiHelper.ButtonHelper(orientation=wx.HORIZONTAL)
self.propertiesOrderBtn = bHelper.addButton(
self, label="%s..." % _("Manage properties &order")
self, label="%s..." % _("&Order Properties")
)
self.propertiesOrderBtn.Bind(wx.EVT_BUTTON, self.onPropertiesOrderBtn)
sHelper.addItem(bHelper)
Expand Down

0 comments on commit 48a8ed7

Please sign in to comment.