Start converting _() to _t()

This commit is contained in:
blitzmann
2020-06-20 15:07:14 -04:00
parent eb657e804c
commit 68f7e6c709
6 changed files with 33 additions and 33 deletions

View File

@@ -19,7 +19,7 @@
import config
import wx
_ = wx.GetTranslation
_t = wx.GetTranslation
try:
versionString = "{0}".format(config.getVersion())
@@ -28,10 +28,10 @@ except NameError:
versionString = "0.0"
licenses = (
_("pyfa is released under GNU GPLv3 - see included LICENSE file"),
_("All EVE-Online related materials are property of CCP hf."),
_("Silk Icons Set by famfamfam.com - Creative Commons Attribution 2.5 License"),
_("Fat Cow Icons by fatcow.com - Creative Commons Attribution 3.0 License")
_t("pyfa is released under GNU GPLv3 - see included LICENSE file"),
_t("All EVE-Online related materials are property of CCP hf."),
_t("Silk Icons Set by famfamfam.com - Creative Commons Attribution 2.5 License"),
_t("Fat Cow Icons by fatcow.com - Creative Commons Attribution 3.0 License")
)
developers = (
"blitzmann \tSable Blitzmann (maintainer)",
@@ -46,7 +46,7 @@ credits = (
"Corollax (Aamrr) \tVarious EOS / pyfa improvements",
"Dreae (Dreae)\tPyCrest")
description = (
_("Pyfa (the Python Fitting Assistant) is an open-source standalone application able to "
_t("Pyfa (the Python Fitting Assistant) is an open-source standalone application able to "
"create and simulate fittings for EVE-Online SciFi MMORPG with a very high degree of "
"accuracy. Pyfa can run on all platforms where Python and wxWidgets are supported.")
)