Added a translators' list in the about dialog

This commit is contained in:
Manuel Cortez 2016-04-05 08:35:25 -05:00
parent 37c03bbe85
commit d511e275ca
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
name = "Socializer" name = "Socializer"
version = "0.11" version = "0.12"
author = u"Manuel Cortéz" author = u"Manuel Cortéz"
authorEmail = "manuel@manuelcortez.net" authorEmail = "manuel@manuelcortez.net"
copyright = u"Copyright (C) 2016, Manuel cortéz." copyright = u"Copyright (C) 2016, Manuel cortéz."
@ -8,4 +8,5 @@ description = unicode(name+" Is an accessible VK client for Windows.")
url = "https://github.com/manuelcortez/socializer" url = "https://github.com/manuelcortez/socializer"
update_url = "https://raw.githubusercontent.com/manuelcortez/socializer/master/update-files/socializer.json" update_url = "https://raw.githubusercontent.com/manuelcortez/socializer/master/update-files/socializer.json"
# The short name will be used for detecting translation files. See languageHandler for more details. # The short name will be used for detecting translation files. See languageHandler for more details.
short_name = "socializer" short_name = "socializer"
translators = [u"Valeria K (Russian)", u"Manuel Cortez (Spanish)"]

View File

@ -82,7 +82,7 @@ class mainWindow(wx.Frame):
info.SetVersion(application.version) info.SetVersion(application.version)
info.SetDescription(application.description) info.SetDescription(application.description)
info.SetCopyright(application.copyright) info.SetCopyright(application.copyright)
# info.SetTranslators(application.translators) info.SetTranslators(application.translators)
# info.SetLicence(application.licence) # info.SetLicence(application.licence)
info.AddDeveloper(application.author) info.AddDeveloper(application.author)
wx.AboutBox(info) wx.AboutBox(info)