Updated for Ukrainian i18n
This commit is contained in:
parent
5c11b2e63a
commit
a8f394477b
|
@ -215,6 +215,10 @@ MyApp::MyApp() : checker(NULL), server(NULL), connection(NULL),
|
||||||
break;
|
break;
|
||||||
case wxLANGUAGE_FRENCH:
|
case wxLANGUAGE_FRENCH:
|
||||||
systemLocale = wxLANGUAGE_FRENCH;
|
systemLocale = wxLANGUAGE_FRENCH;
|
||||||
|
break;
|
||||||
|
case wxLANGUAGE_UKRAINIAN:
|
||||||
|
systemLocale = wxLANGUAGE_UKRAINIAN;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
systemLocale = wxLANGUAGE_ENGLISH_US;
|
systemLocale = wxLANGUAGE_ENGLISH_US;
|
||||||
break;
|
break;
|
||||||
|
@ -1179,6 +1183,7 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
|
||||||
info.AddTranslator(_("Thomas Wenzel (German) <thowen@users.sourceforge.net>"));
|
info.AddTranslator(_("Thomas Wenzel (German) <thowen@users.sourceforge.net>"));
|
||||||
info.AddTranslator(_("SHiNE CsyFeK (Chinese Simplified) <csyfek@gmail.com>"));
|
info.AddTranslator(_("SHiNE CsyFeK (Chinese Simplified) <csyfek@gmail.com>"));
|
||||||
info.AddTranslator(_("HSU PICHAN, YANG SHUFUN, CHENG PAULIAN, CHUANG KUO-PING, Marcus Bingenheimer (Chinese Traditional)"));
|
info.AddTranslator(_("HSU PICHAN, YANG SHUFUN, CHENG PAULIAN, CHUANG KUO-PING, Marcus Bingenheimer (Chinese Traditional)"));
|
||||||
|
info.AddTranslator(_("Serhij Dubyk <dubyk@library.lviv.ua>"));
|
||||||
info.SetLicense(ABOUT_LICENSE);
|
info.SetLicense(ABOUT_LICENSE);
|
||||||
info.SetDescription(ABOUT_DESCRIPTION);
|
info.SetDescription(ABOUT_DESCRIPTION);
|
||||||
wxAboutBox(info);
|
wxAboutBox(info);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#define ENCODING_INFO _T("UTF-8, UTF-16, UTF-16LE, UTF-16BE, ISO-8859-1, US-ASCII")
|
#define ENCODING_INFO _T("UTF-8, UTF-16, UTF-16LE, UTF-16BE, ISO-8859-1, US-ASCII")
|
||||||
#define FILE_FILTER _("All files (*.*)|*.*|XML (*.xml)|*.xml|XHTML (*.html)|*.html|DTD (*.dtd)|*.dtd|XML Schema (*.xsd)|*.xsd|RELAX NG grammar (*.rng)|*.rng|XSL (*.xsl)|*.xsl")
|
#define FILE_FILTER _("All files (*.*)|*.*|XML (*.xml)|*.xml|XHTML (*.html)|*.html|DTD (*.dtd)|*.dtd|XML Schema (*.xsd)|*.xsd|RELAX NG grammar (*.rng)|*.rng|XSL (*.xsl)|*.xsl")
|
||||||
#define ABOUT_COPYRIGHT _("Copyright © 2005-2007 Gerald Schmidt <gnschmidt@users.sourceforge.net>")
|
#define ABOUT_COPYRIGHT _("Copyright © 2005-2007 Gerald Schmidt <gnschmidt@users.sourceforge.net>")
|
||||||
#define ABOUT_DESCRIPTION _("\nXML Copy Editor is free software released under the GNU\nGeneral Public License.\n\nMany thanks are due to Tim van Niekerk, Matt Smigielski,\nDavid Scholl, Jan Merka, Marcus Bingenheimer, Roberto\nRosselli Del Turco, Ken Zalewski, C.J. Meidlinger,\nThomas Zajic, Viliam Búr, David Håsäther, François\nBadier, Thomas Wenzel, Roger Sperberg, SHiNE CsyFeK,\nHSU PICHAN, YANG SHUFUN, CHENG PAULIAN,\nCHUANG KUO-PING and Justin Dearing.")
|
#define ABOUT_DESCRIPTION _("\nXML Copy Editor is free software released under the GNU\nGeneral Public License.\n\nMany thanks are due to Tim van Niekerk, Matt Smigielski,\nDavid Scholl, Jan Merka, Marcus Bingenheimer, Roberto\nRosselli Del Turco, Ken Zalewski, C.J. Meidlinger,\nThomas Zajic, Viliam Búr, David Håsäther, François\nBadier, Thomas Wenzel, Roger Sperberg, SHiNE CsyFeK,\nHSU PICHAN, YANG SHUFUN, CHENG PAULIAN,\nCHUANG KUO-PING, Justin Dearing and Serhij Dubyk.")
|
||||||
#define ABOUT_LICENSE _T(\
|
#define ABOUT_LICENSE _T(\
|
||||||
"This program is free software; you can redistribute it\n"\
|
"This program is free software; you can redistribute it\n"\
|
||||||
"and/or modify it under the terms of the GNU General Public\n"\
|
"and/or modify it under the terms of the GNU General Public\n"\
|
||||||
|
|
Loading…
Reference in New Issue