aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Kitaev <mbg033@gmail.com>2016-07-27 22:32:33 +0300
committerIlya Kitaev <mbg033@gmail.com>2016-07-27 22:32:33 +0300
commit9cd73dfbbed6e200852ca9e1c1494ea3e5eae6c3 (patch)
treefa372d5e1e06afdea7bd7112065df9c69d294910
parent1b35a1ae4b01c05224fdc3b1acf70b7afdd6328c (diff)
downloadmonzero-gui-9cd73dfbbed6e200852ca9e1c1494ea3e5eae6c3.tar.gz
monzero-gui-9cd73dfbbed6e200852ca9e1c1494ea3e5eae6c3.tar.xz
monzero-gui-9cd73dfbbed6e200852ca9e1c1494ea3e5eae6c3.zip
Translations are separate qm files
-rw-r--r--.gitignore1
-rw-r--r--TranslationManager.cpp6
-rwxr-xr-xbuild.sh9
-rw-r--r--main.cpp3
-rw-r--r--monero-core.pro84
-rw-r--r--qml.qrc6
6 files changed, 64 insertions, 45 deletions
diff --git a/.gitignore b/.gitignore
index a2ce1444..f2bec9c8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
*.user
*.user.*
+translations/*.qm
diff --git a/TranslationManager.cpp b/TranslationManager.cpp
index afd04ef6..fa39d35a 100644
--- a/TranslationManager.cpp
+++ b/TranslationManager.cpp
@@ -26,7 +26,11 @@ bool TranslationManager::setLanguage(const QString &language)
}
// translations are compiled into app binary
- QString dir = ":/translations";
+#ifdef Q_OS_MACX
+ QString dir = qApp->applicationDirPath() + "/../Resources/translations";
+#else
+ QString dir = qApp->applicationDirPath() + "/translations";
+#endif
QString filename = "monero-core_" + language;
diff --git a/build.sh b/build.sh
index 5cfea74d..3c3260f5 100755
--- a/build.sh
+++ b/build.sh
@@ -2,14 +2,17 @@
pushd $(pwd)
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+BITMOMERO_DIR=bitmonero
-#$SHELL get_libwallet_api.sh
+if [ ! -d $BITMOMERO_DIR ]; then
+ $SHELL get_libwallet_api.sh
+fi
if [ ! -d build ]; then mkdir build; fi
cd build
echo $(pwd)
-qmake ../monero-core.pro "CONFIG += release"
-make release
+qmake ../monero-core.pro "CONFIG+=release"
+make
make deploy
popd
diff --git a/main.cpp b/main.cpp
index 030a21c3..9f109e01 100644
--- a/main.cpp
+++ b/main.cpp
@@ -30,6 +30,7 @@
#include <QQmlApplicationEngine>
#include <QtQml>
#include <QStandardPaths>
+#include <QDebug>
#include "clipboardAdapter.h"
#include "filter.h"
#include "oscursor.h"
@@ -46,6 +47,8 @@ int main(int argc, char *argv[])
{
QApplication app(argc, argv);
+ qDebug() << "app startd";
+
app.setApplicationName("monero-core");
app.setOrganizationDomain("getmonero.org");
app.setOrganizationName("The Monero Project");
diff --git a/monero-core.pro b/monero-core.pro
index 0997d2bd..668cecdb 100644
--- a/monero-core.pro
+++ b/monero-core.pro
@@ -5,7 +5,6 @@ QT += qml quick widgets
WALLET_ROOT=$$PWD/bitmonero
CONFIG += c++11
-CONFIG += debug_and_release
# cleaning "auto-generated" bitmonero directory on "make distclean"
QMAKE_DISTCLEAN += -r $$WALLET_ROOT
@@ -13,8 +12,6 @@ QMAKE_DISTCLEAN += -r $$WALLET_ROOT
INCLUDEPATH += $$WALLET_ROOT/include \
$$PWD/src/libwalletqt
-
-
HEADERS += \
filter.h \
clipboardAdapter.h \
@@ -104,51 +101,59 @@ macx {
-lcrypto \
-ldl
- deploy.commands += macdeployqt $$sprintf("%1/release/%2.app", $$OUT_PWD,$$TARGET)
}
-deploy.commands +=
-
-# translations files;
-TRANSLATIONS = $$PWD/translations/monero-core_en.ts \ # English (could be untranslated)
- $$PWD/translations/monero-core_de.ts \ # Deutsch
- $$PWD/translations/monero-core_zh.ts \ # Chineese
- $$PWD/translations/monero-core_ru.ts \ # Russian
- $$PWD/translations/monero-core_it.ts \ # Italian
- $$PWD/translations/monero-core_pl.ts \ # Polish
-
-
-
-# extra make targets for lupdate and lrelease invocation
-# use "make lupdate" to update *.ts files and "make lrelease" to generate *.qm files
-trans_update.commands = lupdate $$_PRO_FILE_
-trans_update.depends = $$_PRO_FILE_
-
-trans_release.commands = lrelease $$_PRO_FILE_
-trans_release.depends = trans_update $$TRANSLATIONS
-
-#translate.commands = $(MKDIR) ${DESTDIR}/i18n && $(COPY) $$PWD/translations/*.qm ${DESTDIR}/i18n
-translate.depends = trans_release
+# translation stuff
+TRANSLATIONS = \ # English is default language, no explicit translation file
+ $$PWD/translations/monero-core_de.ts \ # Deutsch
+ $$PWD/translations/monero-core_zh.ts \ # Chineese
+ $$PWD/translations/monero-core_ru.ts \ # Russian
+ $$PWD/translations/monero-core_it.ts \ # Italian
+ $$PWD/translations/monero-core_pl.ts \ # Polish
+CONFIG(release, debug|release) {
+ DESTDIR = release
+ LANGUPD_OPTIONS = -locations relative -no-ui-lines
+ LANGREL_OPTIONS = -compress -nounfinished -removeidentical
+} else {
+ DESTDIR = debug
+ LANGUPD_OPTIONS =
+ LANGREL_OPTIONS = -markuntranslated "MISS_TR "
+}
-QMAKE_EXTRA_TARGETS += trans_update trans_release translate deploy
+TARGET_FULL_PATH = $$OUT_PWD/$$DESTDIR
-# updating transations only in release mode as this is requires to re-link project
-# even if no changes were made.
+macx {
+ TARGET_FULL_PATH = $$sprintf("%1/%2/%3.app", $$OUT_PWD, $$DESTDIR, $$TARGET)
+}
-#PRE_TARGETDEPS += translate
+TRANSLATION_TARGET_DIR = $$TARGET_FULL_PATH/Contents/Resources/translations
-CONFIG(release, debug|release) {
- DESTDIR=release
- PRE_TARGETDEPS += translate
+isEmpty(QMAKE_LUPDATE) {
+ win32:LANGUPD = $$[QT_INSTALL_BINS]\lupdate.exe
+ else:LANGUPD = $$[QT_INSTALL_BINS]/lupdate
}
-CONFIG(debug, debug|release) {
- DESTDIR=debug
+isEmpty(QMAKE_LRELEASE) {
+ win32:LANGREL = $$[QT_INSTALL_BINS]\lrelease.exe
+ else:LANGREL = $$[QT_INSTALL_BINS]/lrelease
}
+langupd.command = \
+ $$LANGUPD $$LANGUPD_OPTIONS $$shell_path($$_PRO_FILE) -ts $$_PRO_FILE_PWD/$$TRANSLATIONS
+
+langrel.depends = langupd
+langrel.input = TRANSLATIONS
+langrel.output = $$TRANSLATION_TARGET_DIR/${QMAKE_FILE_BASE}.qm
+langrel.commands = \
+ $$LANGREL $$LANGREL_OPTIONS ${QMAKE_FILE_IN} -qm $$TRANSLATION_TARGET_DIR/${QMAKE_FILE_BASE}.qm
+langrel.CONFIG += no_link
+
+QMAKE_EXTRA_TARGETS += langupd deploy
+QMAKE_EXTRA_COMPILERS += langrel
+PRE_TARGETDEPS += langupd compiler_langrel_make_all
RESOURCES += qml.qrc
@@ -157,6 +162,14 @@ QML_IMPORT_PATH =
# Default rules for deployment.
include(deployment.pri)
+macx {
+ deploy.commands += macdeployqt $$sprintf("%1/%2/%3.app", $$OUT_PWD, $$DESTDIR, $$TARGET)
+}
+
+win32 {
+ deploy.commands += windeployqt $$sprintf("%1/%2/%3", $$OUT_PWD, $$DESTDIR, $$TARGET)
+}
+
@@ -167,3 +180,4 @@ OTHER_FILES += \
DISTFILES += \
notes.txt
+
diff --git a/qml.qrc b/qml.qrc
index 152ea8f2..eca9f561 100644
--- a/qml.qrc
+++ b/qml.qrc
@@ -114,11 +114,5 @@
<file>pages/Receive.qml</file>
<file>components/IconButton.qml</file>
<file>lang/flags/italy.png</file>
- <file>translations/monero-core_de.qm</file>
- <file>translations/monero-core_en.qm</file>
- <file>translations/monero-core_it.qm</file>
- <file>translations/monero-core_pl.qm</file>
- <file>translations/monero-core_ru.qm</file>
- <file>translations/monero-core_zh.qm</file>
</qresource>
</RCC>