diff --git a/.gitignore b/.gitignore index fab7372..6e844ee 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,6 @@ *.so.* *_pch.h.cpp *_resource.rc -*.qm .#* *.*# core diff --git a/akashi.pro b/akashi.pro index 62dbdcb..a75c453 100644 --- a/akashi.pro +++ b/akashi.pro @@ -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 diff --git a/resource/translation/akashi_en_US.ts b/resource/translation/akashi_en_US.ts deleted file mode 100644 index 79e1ff8..0000000 --- a/resource/translation/akashi_en_US.ts +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/resource/translation/akashi_es.qm b/resource/translation/akashi_es.qm new file mode 100644 index 0000000..5015f0e Binary files /dev/null and b/resource/translation/akashi_es.qm differ diff --git a/resource/translation/akashi_es.ts b/resource/translation/akashi_es.ts new file mode 100644 index 0000000..e5eb798 --- /dev/null +++ b/resource/translation/akashi_es.ts @@ -0,0 +1,25 @@ + + + + + AkashiMain + + + AkashiMain + + + + + main + + + A server for Attorney Online 2 + + + + + Run the server without a GUI + Empezar el servidor sin interfaz + + + diff --git a/resources.qrc b/resources.qrc new file mode 100644 index 0000000..4117cd0 --- /dev/null +++ b/resources.qrc @@ -0,0 +1,5 @@ + + + resource/translation/akashi_es.qm + + diff --git a/src/main.cpp b/src/main.cpp index a078275..7a0e3ed 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4,6 +4,7 @@ #include #include #include +#include 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);