diff --git a/src/application.py b/src/application.py index f82393a..eead49b 100644 --- a/src/application.py +++ b/src/application.py @@ -4,9 +4,9 @@ version = "0.2" author = "Manuel Cortéz" authorEmail = "manuel@manuelcortez.net" copyright = "Copyright (C) 2018, Manuel Cortez" -description = name+" Is an application that will allow you to download music from popular sites such as youtube, zaycev.net." +description = name+_(" Is an application that will allow you to download music from popular sites such as youtube, zaycev.net.") url = "https://manuelcortez.net/music_dl" update_url = "https://manuelcortez.net/music_dl/update" # The short name will be used for detecting translation files. See languageHandler for more details. short_name = "musicdl" -translators = [] \ No newline at end of file +translators = [_("Manuel Cortez (Spanish)"), ] \ No newline at end of file diff --git a/src/wxUI/mainWindow.py b/src/wxUI/mainWindow.py index c7cbb72..38918ec 100644 --- a/src/wxUI/mainWindow.py +++ b/src/wxUI/mainWindow.py @@ -82,7 +82,7 @@ class mainWindow(wx.Frame): info.SetDescription(application.description) info.SetCopyright(application.copyright) info.SetWebSite(application.url) -# info.SetTranslators(application.translators) + info.SetTranslators(application.translators) # info.SetLicence(application.licence) info.AddDeveloper(application.author) wx.adv.AboutBox(info)