Browse Source

Update strings

doc-issue-template
MrS0m30n3 8 years ago
parent
commit
2c8cd55ca8
2 changed files with 5 additions and 5 deletions
  1. 8
      youtube_dl_gui/mainframe.py
  2. 2
      youtube_dl_gui/optionsframe.py

8
youtube_dl_gui/mainframe.py

@ -124,12 +124,12 @@ class MainFrame(wx.Frame):
DOWNLOAD_STARTED = _("Downloads started")
CHOOSE_DIRECTORY = _("Choose Directory")
DOWNLOAD_ACTIVE = _("Download in progress. Please wait for all the downloads to complete")
UPDATE_ACTIVE = _("Update already in progress.")
DOWNLOAD_ACTIVE = _("Download in progress. Please wait for all downloads to complete")
UPDATE_ACTIVE = _("Update already in progress")
UPDATING_MSG = _("Downloading latest youtube-dl. Please wait...")
UPDATE_ERR_MSG = _("Youtube-dl download failed [{0}]")
UPDATE_SUCC_MSG = _("Youtube-dl downloaded correctly")
UPDATE_SUCC_MSG = _("Successfully downloaded youtube-dl")
OPEN_DIR_ERR = _("Unable to open directory: '{dir}'. "
"The specified path does not exist")
@ -505,7 +505,7 @@ class MainFrame(wx.Frame):
index = self._status_list.get_next_selected()
if index == -1:
dlg = ButtonsChoiceDialog(self, [_("Remove all"), _("Remove completed")], _("No items selected. Please pick an action."), _("Delete"))
dlg = ButtonsChoiceDialog(self, [_("Remove all"), _("Remove completed")], _("No items selected. Please pick an action"), _("Delete"))
ret_code = dlg.ShowModal()
dlg.Destroy()

2
youtube_dl_gui/optionsframe.py

@ -857,7 +857,7 @@ class ExtraTab(TabPanel):
def __init__(self, *args, **kwargs):
super(ExtraTab, self).__init__(*args, **kwargs)
self.cmdline_args_label = self.crt_statictext(_("Command line arguments (e.g. --help)"))
self.cmdline_args_label = self.crt_statictext(_("Youtube-dl command line options (e.g. --help)"))
self.cmdline_args_textctrl = self.crt_textctrl(wx.TE_MULTILINE | wx.TE_LINEWRAP)
self.extra_opts_label = self.crt_statictext(_("Extra options"))

Loading…
Cancel
Save