From 35880a3b5a0e49cce70310e607d659363cb0c2f9 Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Mon, 12 Dec 2016 00:34:38 -0200 Subject: [PATCH] Remove all dots(.) from messages end --- youtube_dl_gui/optionsframe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dl_gui/optionsframe.py b/youtube_dl_gui/optionsframe.py index 1417fe2..9f5d7c2 100644 --- a/youtube_dl_gui/optionsframe.py +++ b/youtube_dl_gui/optionsframe.py @@ -415,7 +415,7 @@ class GeneralTab(TabPanel): def _on_language(self, event): """Event handler for the wx.EVT_COMBOBOX of the language_combobox.""" - wx.MessageBox(_("In order for the changes to take effect please restart {0}.").format(__appname__), + wx.MessageBox(_("In order for the changes to take effect please restart {0}").format(__appname__), _("Restart"), wx.OK | wx.ICON_INFORMATION, self) @@ -816,7 +816,7 @@ class AdvancedTab(TabPanel): def _on_enable_log(self, event): """Event handler for the wx.EVT_CHECKBOX of the enable_log_checkbox.""" - wx.MessageBox(_("In order for the changes to take effect please restart {0}.").format(__appname__), + wx.MessageBox(_("In order for the changes to take effect please restart {0}").format(__appname__), _("Restart"), wx.OK | wx.ICON_INFORMATION, self)