From e61b0855a1c007d1fedb89b18cdf9e55a6671381 Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Wed, 9 Nov 2016 18:05:41 +0200 Subject: [PATCH] Use uppercase for 'url' string --- youtube_dl_gui/mainframe.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/youtube_dl_gui/mainframe.py b/youtube_dl_gui/mainframe.py index fde4fb4..8dca3aa 100644 --- a/youtube_dl_gui/mainframe.py +++ b/youtube_dl_gui/mainframe.py @@ -133,13 +133,13 @@ class MainFrame(wx.Frame): ABOUT_LABEL = _("About") VIEWLOG_LABEL = _("View Log") - SUCC_REPORT_MSG = _("Successfully downloaded {0} url(s) in {1} " + SUCC_REPORT_MSG = _("Successfully downloaded {0} URL(s) in {1} " "day(s) {2} hour(s) {3} minute(s) {4} second(s)") DL_COMPLETED_MSG = _("Downloads completed") URL_REPORT_MSG = _("Total Progress: {0:.1f}% | Queued ({1}) Paused ({2}) Active ({3}) Completed ({4})") CLOSING_MSG = _("Stopping downloads") CLOSED_MSG = _("Downloads stopped") - PROVIDE_URL_MSG = _("You need to provide at least one url") + PROVIDE_URL_MSG = _("You need to provide at least one URL") DOWNLOAD_STARTED = _("Downloads started") CHOOSE_DIRECTORY = _("Choose Directory") @@ -251,7 +251,7 @@ class MainFrame(wx.Frame): ) statuslist_menu_data = ( - (_("Get url"), self._on_geturl), + (_("Get URL"), self._on_geturl), (_("Get command"), self._on_getcmd), (_("Open destination"), self._on_open_dest) )