i18n
This commit is contained in:
parent
fbc9feed13
commit
a4b40c99a1
1
.gitignore
vendored
1
.gitignore
vendored
@ -14,7 +14,6 @@
|
|||||||
*.so.*
|
*.so.*
|
||||||
*_pch.h.cpp
|
*_pch.h.cpp
|
||||||
*_resource.rc
|
*_resource.rc
|
||||||
*.qm
|
|
||||||
.#*
|
.#*
|
||||||
*.*#
|
*.*#
|
||||||
core
|
core
|
||||||
|
@ -22,9 +22,12 @@ HEADERS += $$files($$PWD/include/*.h)
|
|||||||
FORMS += $$files($$PWD/resource/forms/*.ui)
|
FORMS += $$files($$PWD/resource/forms/*.ui)
|
||||||
|
|
||||||
TRANSLATIONS += \
|
TRANSLATIONS += \
|
||||||
resource/translation/akashi_en_US.ts
|
resource/translation/akashi_es.ts
|
||||||
|
|
||||||
# Default rules for deployment.
|
# Default rules for deployment.
|
||||||
qnx: target.path = /tmp/$${TARGET}/bin
|
qnx: target.path = /tmp/$${TARGET}/bin
|
||||||
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
||||||
!isEmpty(target.path): INSTALLS += target
|
!isEmpty(target.path): INSTALLS += target
|
||||||
|
|
||||||
|
RESOURCES += \
|
||||||
|
resources.qrc
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<!DOCTYPE TS>
|
|
||||||
<TS version="2.1" language="akashi_en_US"></TS>
|
|
BIN
resource/translation/akashi_es.qm
Normal file
BIN
resource/translation/akashi_es.qm
Normal file
Binary file not shown.
25
resource/translation/akashi_es.ts
Normal file
25
resource/translation/akashi_es.ts
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!DOCTYPE TS>
|
||||||
|
<TS version="2.1" language="es_ES">
|
||||||
|
<context>
|
||||||
|
<name>AkashiMain</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../forms/akashimain.ui" line="14"/>
|
||||||
|
<source>AkashiMain</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
<context>
|
||||||
|
<name>main</name>
|
||||||
|
<message>
|
||||||
|
<location filename="../../src/main.cpp" line="20"/>
|
||||||
|
<source>A server for Attorney Online 2</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../../src/main.cpp" line="24"/>
|
||||||
|
<source>Run the server without a GUI</source>
|
||||||
|
<translation>Empezar el servidor sin interfaz</translation>
|
||||||
|
</message>
|
||||||
|
</context>
|
||||||
|
</TS>
|
5
resources.qrc
Normal file
5
resources.qrc
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<RCC>
|
||||||
|
<qresource prefix="/">
|
||||||
|
<file>resource/translation/akashi_es.qm</file>
|
||||||
|
</qresource>
|
||||||
|
</RCC>
|
10
src/main.cpp
10
src/main.cpp
@ -4,6 +4,7 @@
|
|||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QCommandLineParser>
|
#include <QCommandLineParser>
|
||||||
#include <QCommandLineOption>
|
#include <QCommandLineOption>
|
||||||
|
#include <QTranslator>
|
||||||
|
|
||||||
int main(int argc, char *argv[])
|
int main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
@ -11,12 +12,17 @@ int main(int argc, char *argv[])
|
|||||||
QApplication::setApplicationName("akashi");
|
QApplication::setApplicationName("akashi");
|
||||||
QApplication::setApplicationVersion("0.0.1");
|
QApplication::setApplicationVersion("0.0.1");
|
||||||
|
|
||||||
|
QTranslator translator;
|
||||||
|
QString language = QLocale().bcp47Name();
|
||||||
|
translator.load("akashi_" + language, ":/resource/translation/");
|
||||||
|
app.installTranslator(&translator);
|
||||||
|
|
||||||
QCommandLineParser parser;
|
QCommandLineParser parser;
|
||||||
parser.setApplicationDescription("A server for Attorney Online 2");
|
parser.setApplicationDescription(app.translate("main", "A server for Attorney Online 2"));
|
||||||
parser.addHelpOption();
|
parser.addHelpOption();
|
||||||
parser.addVersionOption();
|
parser.addVersionOption();
|
||||||
|
|
||||||
QCommandLineOption headlessOption(QStringList() << "l" << "headless", "Run the server without a GUI");
|
QCommandLineOption headlessOption(QStringList() << "l" << "headless", app.translate("main", "Run the server without a GUI"));
|
||||||
parser.addOption(headlessOption);
|
parser.addOption(headlessOption);
|
||||||
|
|
||||||
parser.process(app);
|
parser.process(app);
|
||||||
|
Loading…
Reference in New Issue
Block a user