Skip to content

Commit

Permalink
Fixed dialog title
Browse files Browse the repository at this point in the history
  • Loading branch information
munawarb committed Mar 12, 2020
1 parent cbb40e5 commit cfb326e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions globalPlugins/timezone.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def run(self):

class TimezoneSelectorDialog(wx.Dialog):
def __init__(self, parent, globalPluginClass):
super(wx.Dialog, self).__init__(parent, title = _("Configure Timezone Ring..."))
super(wx.Dialog, self).__init__(parent, title = _("Configure Timezone Ring"))
self.gPlugin = globalPluginClass
sHelper = guiHelper.BoxSizerHelper(self, orientation=wx.VERTICAL)
self.filterElement = sHelper.addLabeledControl(_("Filter:"), wx.TextCtrl)
Expand Down Expand Up @@ -223,7 +223,7 @@ def __init__(self):
# For translators: Name of the menu of the add-on
self.topLevel = self.menu.AppendSubMenu(self.optionsMenu, _("Time Zoner"), "")
# For translators: Name of the sub-menu of the add-on
self.setTZOption = self.optionsMenu.Append(wx.ID_ANY, _("Configure Timezone Ring"), _("Allows the configuration of timezones"))
self.setTZOption = self.optionsMenu.Append(wx.ID_ANY, _("Configure Timezone Ring..."), _("Allows the configuration of timezones"))
gui.mainFrame.sysTrayIcon.Bind(wx.EVT_MENU, self.showTimezoneDialog, self.setTZOption)

self.lastSpeechThread = None
Expand Down

0 comments on commit cfb326e

Please sign in to comment.