This commit is contained in:
scatterflower 2020-08-22 15:04:41 -05:00
parent fbc9feed13
commit a4b40c99a1
7 changed files with 42 additions and 7 deletions

1
.gitignore vendored
View File

@ -14,7 +14,6 @@
*.so.*
*_pch.h.cpp
*_resource.rc
*.qm
.#*
*.*#
core

View File

@ -22,9 +22,12 @@ HEADERS += $$files($$PWD/include/*.h)
FORMS += $$files($$PWD/resource/forms/*.ui)
TRANSLATIONS += \
resource/translation/akashi_en_US.ts
resource/translation/akashi_es.ts
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
resources.qrc

View File

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="akashi_en_US"></TS>

Binary file not shown.

View 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
View File

@ -0,0 +1,5 @@
<RCC>
<qresource prefix="/">
<file>resource/translation/akashi_es.qm</file>
</qresource>
</RCC>

View File

@ -4,6 +4,7 @@
#include <QDebug>
#include <QCommandLineParser>
#include <QCommandLineOption>
#include <QTranslator>
int main(int argc, char *argv[])
{
@ -11,12 +12,17 @@ int main(int argc, char *argv[])
QApplication::setApplicationName("akashi");
QApplication::setApplicationVersion("0.0.1");
QTranslator translator;
QString language = QLocale().bcp47Name();
translator.load("akashi_" + language, ":/resource/translation/");
app.installTranslator(&translator);
QCommandLineParser parser;
parser.setApplicationDescription("A server for Attorney Online 2");
parser.setApplicationDescription(app.translate("main", "A server for Attorney Online 2"));
parser.addHelpOption();
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.process(app);