QMake: No need for 'make depend' anymore
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
90744ced60
commit
57c32eea58
18 changed files with 75 additions and 110 deletions
|
@ -31,6 +31,5 @@ checkinstall -D --default --nodoc --install=no --pkgname=gta5view-qt5 --pkgversi
|
||||||
cd .. && \
|
cd .. && \
|
||||||
cd qt4 && \
|
cd qt4 && \
|
||||||
qmake -qt=4 GTA5SYNC_PREFIX=/usr QMAKE_CXXFLAGS+=-std=gnu++11 ${QMAKE_FLAGS_QT4} ${QMAKE_BUILD_TYPE} "DEFINES+=GTA5SYNC_BUILDCODE=\\\\\\\"${PACKAGE_CODE}\\\\\\\"" "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"${APPLICATION_VERSION}\\\\\\\"" DEFINES+=GTA5SYNC_QCONF ../../gta5view.pro && \
|
qmake -qt=4 GTA5SYNC_PREFIX=/usr QMAKE_CXXFLAGS+=-std=gnu++11 ${QMAKE_FLAGS_QT4} ${QMAKE_BUILD_TYPE} "DEFINES+=GTA5SYNC_BUILDCODE=\\\\\\\"${PACKAGE_CODE}\\\\\\\"" "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"${APPLICATION_VERSION}\\\\\\\"" DEFINES+=GTA5SYNC_QCONF ../../gta5view.pro && \
|
||||||
make depend && \
|
|
||||||
make -j 4 && \
|
make -j 4 && \
|
||||||
checkinstall -D --default --nodoc --install=no --pkgname=gta5view-qt4 --pkgversion=${PACKAGE_VERSION} --pkgrelease=${PACKAGE_BUILD} --pkggroup=utility --maintainer="Syping \<dpkg@syping.de\>" --requires=libqtcore4,libqtgui4,libqt4-network,libqt4-svg,qtcore4-l10n --conflicts=gta5view,gta5view-qt5 --replaces=gta5view,gta5view-qt5 --pakdir=${PROJECT_DIR}/assets
|
checkinstall -D --default --nodoc --install=no --pkgname=gta5view-qt4 --pkgversion=${PACKAGE_VERSION} --pkgrelease=${PACKAGE_BUILD} --pkggroup=utility --maintainer="Syping \<dpkg@syping.de\>" --requires=libqtcore4,libqtgui4,libqt4-network,libqt4-svg,qtcore4-l10n --conflicts=gta5view,gta5view-qt5 --replaces=gta5view,gta5view-qt5 --pakdir=${PROJECT_DIR}/assets
|
||||||
|
|
|
@ -9,7 +9,6 @@ mkdir -p assets && \
|
||||||
cd build && \
|
cd build && \
|
||||||
|
|
||||||
/usr/local/opt/qt/bin/qmake ${QMAKE_FLAGS_QT5} ${QMAKE_BUILD_TYPE} "DEFINES+=GTA5SYNC_BUILDCODE=\\\\\\\"${PACKAGE_CODE}\\\\\\\"" "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"${APPLICATION_VERSION}\\\\\\\"" "DEFINES+=GTA5SYNC_COMMIT=\\\\\\\"${APPLICATION_COMMIT}\\\\\\\"" DEFINES+=GTA5SYNC_TELEMETRY "DEFINES+=GTA5SYNC_TELEMETRY_WEBURL=\\\\\\\"https://dev.syping.de/gta5view-userstats/\\\\\\\"" ../gta5view.pro && \
|
/usr/local/opt/qt/bin/qmake ${QMAKE_FLAGS_QT5} ${QMAKE_BUILD_TYPE} "DEFINES+=GTA5SYNC_BUILDCODE=\\\\\\\"${PACKAGE_CODE}\\\\\\\"" "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"${APPLICATION_VERSION}\\\\\\\"" "DEFINES+=GTA5SYNC_COMMIT=\\\\\\\"${APPLICATION_COMMIT}\\\\\\\"" DEFINES+=GTA5SYNC_TELEMETRY "DEFINES+=GTA5SYNC_TELEMETRY_WEBURL=\\\\\\\"https://dev.syping.de/gta5view-userstats/\\\\\\\"" ../gta5view.pro && \
|
||||||
make depend && \
|
|
||||||
make -j 4 && \
|
make -j 4 && \
|
||||||
/usr/local/opt/qt/bin/macdeployqt gta5view.app -dmg && \
|
/usr/local/opt/qt/bin/macdeployqt gta5view.app -dmg && \
|
||||||
cp -Rf gta5view.dmg ../assets/gta5view-osx_${APPLICATION_VERSION}.dmg
|
cp -Rf gta5view.dmg ../assets/gta5view-osx_${APPLICATION_VERSION}.dmg
|
||||||
|
|
|
@ -12,8 +12,7 @@ mkdir -p assets && \
|
||||||
|
|
||||||
# Starting build
|
# Starting build
|
||||||
cd build && \
|
cd build && \
|
||||||
qmake-static ${QMAKE_FLAGS_QT5} ${QMAKE_BUILD_TYPE} "DEFINES+=GTA5SYNC_BUILDCODE=\\\\\\\"${PACKAGE_CODE}\\\\\\\"" "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"${APPLICATION_VERSION}\\\\\\\"" "DEFINES+=GTA5SYNC_COMMIT=\\\\\\\"${APPLICATION_COMMIT}\\\\\\\"" DEFINES+=GTA5SYNC_TELEMETRY "DEFINES+=GTA5SYNC_TELEMETRY_WEBURL=\\\\\\\"https://dev.syping.de/gta5view-userstats/\\\\\\\"" DEFINES+=GTA5SYNC_DONATION "DEFINES+=GTA5SYNC_DONATION_EMAIL=\\\\\\\"paypal/at/syping.de\\\\\\\"" ../gta5view.pro && \
|
qmake-static ${QMAKE_FLAGS_QT5} ${QMAKE_BUILD_TYPE} "DEFINES+=GTA5SYNC_BUILDCODE=\\\\\\\"${PACKAGE_CODE}\\\\\\\"" "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"${APPLICATION_VERSION}\\\\\\\"" "DEFINES+=GTA5SYNC_COMMIT=\\\\\\\"${APPLICATION_COMMIT}\\\\\\\"" DEFINES+=GTA5SYNC_TELEMETRY "DEFINES+=GTA5SYNC_TELEMETRY_WEBURL=\\\\\\\"https://dev.syping.de/gta5view-userstats/\\\\\\\"" ../gta5view.pro && \
|
||||||
make depend && \
|
|
||||||
make -j 4 && \
|
make -j 4 && \
|
||||||
cp -Rf release/*.exe ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} && \
|
cp -Rf release/*.exe ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} && \
|
||||||
cd ${PROJECT_DIR}/assets
|
cd ${PROJECT_DIR}/assets
|
||||||
|
|
|
@ -12,8 +12,7 @@ mkdir -p assets && \
|
||||||
|
|
||||||
# Starting build
|
# Starting build
|
||||||
cd build && \
|
cd build && \
|
||||||
qmake ${QMAKE_FLAGS_QT5} ${QMAKE_BUILD_TYPE} "DEFINES+=GTA5SYNC_BUILDCODE=\\\\\\\"${PACKAGE_CODE}\\\\\\\"" "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"${APPLICATION_VERSION}\\\\\\\"" "DEFINES+=GTA5SYNC_COMMIT=\\\\\\\"${APPLICATION_COMMIT}\\\\\\\"" DEFINES+=GTA5SYNC_TELEMETRY "DEFINES+=GTA5SYNC_TELEMETRY_WEBURL=\\\\\\\"https://dev.syping.de/gta5view-userstats/\\\\\\\"" DEFINES+=GTA5SYNC_DONATION "DEFINES+=GTA5SYNC_DONATION_EMAIL=\\\\\\\"paypal/at/syping.de\\\\\\\"" DEFINES+=GTA5SYNC_QCONF DEFINES+=GTA5SYNC_INLANG='\\\"RUNDIR:SEPARATOR:lang\\\"' DEFINES+=GTA5SYNC_LANG='\\\"RUNDIR:SEPARATOR:lang\\\"' DEFINES+=GTA5SYNC_PLUG='\\\"RUNDIR:SEPARATOR:plugins\\\"' "LIBS+=-ljpeg" ../gta5view.pro && \
|
qmake ${QMAKE_FLAGS_QT5} ${QMAKE_BUILD_TYPE} "DEFINES+=GTA5SYNC_BUILDCODE=\\\\\\\"${PACKAGE_CODE}\\\\\\\"" "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"${APPLICATION_VERSION}\\\\\\\"" "DEFINES+=GTA5SYNC_COMMIT=\\\\\\\"${APPLICATION_COMMIT}\\\\\\\"" DEFINES+=GTA5SYNC_TELEMETRY "DEFINES+=GTA5SYNC_TELEMETRY_WEBURL=\\\\\\\"https://dev.syping.de/gta5view-userstats/\\\\\\\"" DEFINES+=GTA5SYNC_QCONF DEFINES+=GTA5SYNC_INLANG='\\\"RUNDIR:SEPARATOR:lang\\\"' DEFINES+=GTA5SYNC_LANG='\\\"RUNDIR:SEPARATOR:lang\\\"' DEFINES+=GTA5SYNC_PLUG='\\\"RUNDIR:SEPARATOR:plugins\\\"' ../gta5view.pro && \
|
||||||
make depend && \
|
|
||||||
make -j 4 && \
|
make -j 4 && \
|
||||||
cd ${PROJECT_DIR}/assets && \
|
cd ${PROJECT_DIR}/assets && \
|
||||||
makensis -NOCD ${PROJECT_DIR}/.ci/gta5view.nsi && \
|
makensis -NOCD ${PROJECT_DIR}/.ci/gta5view.nsi && \
|
||||||
|
|
|
@ -126,7 +126,7 @@ set(GTA5VIEW_DEFINES
|
||||||
)
|
)
|
||||||
|
|
||||||
set(GTA5VIEW_RESOURCES
|
set(GTA5VIEW_RESOURCES
|
||||||
res/app_cmake.qrc
|
res/app.qrc
|
||||||
res/global.qrc
|
res/global.qrc
|
||||||
)
|
)
|
||||||
set_property(SOURCE res/global.qrc PROPERTY AUTORCC_OPTIONS "-threshold;0;-compress;9")
|
set_property(SOURCE res/global.qrc PROPERTY AUTORCC_OPTIONS "-threshold;0;-compress;9")
|
||||||
|
|
|
@ -19,7 +19,6 @@ Grand Theft Auto V Savegame and Snapmatic viewer/editor
|
||||||
docker run --rm -v ${PWD}:/gta5view -it sypingauto/gta5view-build:1.8-static
|
docker run --rm -v ${PWD}:/gta5view -it sypingauto/gta5view-build:1.8-static
|
||||||
cd /gta5view && mkdir -p build && cd build
|
cd /gta5view && mkdir -p build && cd build
|
||||||
qmake-static ../gta5view.pro
|
qmake-static ../gta5view.pro
|
||||||
make depend
|
|
||||||
make -j $(nproc --all)
|
make -j $(nproc --all)
|
||||||
|
|
||||||
#### Build gta5view for Debian/Ubuntu
|
#### Build gta5view for Debian/Ubuntu
|
||||||
|
|
24
gta5view.pro
24
gta5view.pro
|
@ -16,7 +16,7 @@
|
||||||
#* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
#* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
#*****************************************************************************/
|
#*****************************************************************************/
|
||||||
|
|
||||||
QT += core gui network svg
|
QT += core gui network svg
|
||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
greaterThan(QT_MAJOR_VERSION, 4): greaterThan(QT_MINOR_VERSION, 1): win32: QT += winextras
|
greaterThan(QT_MAJOR_VERSION, 4): greaterThan(QT_MINOR_VERSION, 1): win32: QT += winextras
|
||||||
|
@ -69,7 +69,7 @@ SOURCES += main.cpp \
|
||||||
uimod/UiModLabel.cpp \
|
uimod/UiModLabel.cpp \
|
||||||
uimod/UiModWidget.cpp
|
uimod/UiModWidget.cpp
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
AboutDialog.h \
|
AboutDialog.h \
|
||||||
AppEnv.h \
|
AppEnv.h \
|
||||||
CrewDatabase.h \
|
CrewDatabase.h \
|
||||||
|
@ -112,7 +112,7 @@ HEADERS += \
|
||||||
uimod/UiModLabel.h \
|
uimod/UiModLabel.h \
|
||||||
uimod/UiModWidget.h
|
uimod/UiModWidget.h
|
||||||
|
|
||||||
FORMS += \
|
FORMS += \
|
||||||
AboutDialog.ui \
|
AboutDialog.ui \
|
||||||
ExportDialog.ui \
|
ExportDialog.ui \
|
||||||
ImportDialog.ui \
|
ImportDialog.ui \
|
||||||
|
@ -139,8 +139,8 @@ TRANSLATIONS += \
|
||||||
res/gta5sync_zh_TW.ts
|
res/gta5sync_zh_TW.ts
|
||||||
|
|
||||||
RESOURCES += \
|
RESOURCES += \
|
||||||
res/tr_g5p.qrc \
|
res/app.qrc \
|
||||||
res/app_qmake.qrc
|
res/tr_g5p.qrc
|
||||||
|
|
||||||
DISTFILES += \
|
DISTFILES += \
|
||||||
res/gta5view-16.png \
|
res/gta5view-16.png \
|
||||||
|
@ -217,9 +217,11 @@ isEqual(QT_MAJOR_VERSION, 5): GTA5SYNC_RCC = $$[QT_HOST_BINS]/rcc
|
||||||
|
|
||||||
# RESOURCE COMPILATION
|
# RESOURCE COMPILATION
|
||||||
|
|
||||||
depend.depends += $$PWD/res/global.qrc
|
system($$GTA5SYNC_RCC -threshold 0 -compress 9 $$PWD/res/global.qrc -o $$OUT_PWD/qrc_global.cpp) {
|
||||||
depend.commands += $$GTA5SYNC_RCC -binary -threshold 0 -compress 9 $$PWD/res/global.qrc -o $$PWD/res/global.rcc
|
SOURCES += $$OUT_PWD/qrc_global.cpp
|
||||||
QMAKE_EXTRA_TARGETS += depend
|
} else {
|
||||||
|
message("Failed to generate qrc_global.cpp")
|
||||||
|
}
|
||||||
|
|
||||||
# PROJECT INSTALLATION
|
# PROJECT INSTALLATION
|
||||||
|
|
||||||
|
@ -253,3 +255,9 @@ contains(DEFINES, GTA5SYNC_QCONF){
|
||||||
HEADERS -= TelemetryClass.h \
|
HEADERS -= TelemetryClass.h \
|
||||||
tmext/TelemetryClassAuthenticator.h
|
tmext/TelemetryClassAuthenticator.h
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# CMAKE BASED STUFF
|
||||||
|
|
||||||
|
unix: greaterThan(QT_MAJOR_VERSION, 4) {
|
||||||
|
message("Building non-Windows gta5view with QMake is deprecated, please use CMake instead!")
|
||||||
|
}
|
||||||
|
|
4
main.cpp
4
main.cpp
|
@ -74,10 +74,6 @@ int main(int argc, char *argv[])
|
||||||
a.setApplicationVersion(GTA5SYNC_APPVER);
|
a.setApplicationVersion(GTA5SYNC_APPVER);
|
||||||
a.setQuitOnLastWindowClosed(false);
|
a.setQuitOnLastWindowClosed(false);
|
||||||
|
|
||||||
#ifdef GTA5SYNC_QMAKE
|
|
||||||
QResource::registerResource(":/global/global.rcc");
|
|
||||||
#endif
|
|
||||||
|
|
||||||
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
|
||||||
settings.beginGroup("Startup");
|
settings.beginGroup("Startup");
|
||||||
|
|
||||||
|
|
|
@ -1,34 +0,0 @@
|
||||||
<RCC>
|
|
||||||
<qresource prefix="/img">
|
|
||||||
<file>add.svgz</file>
|
|
||||||
<file>avatararea.png</file>
|
|
||||||
<file>avatarareaimport.png</file>
|
|
||||||
<file>back.svgz</file>
|
|
||||||
<file>empty1x16.png</file>
|
|
||||||
<file>gta5view-16.png</file>
|
|
||||||
<file>gta5view-24.png</file>
|
|
||||||
<file>gta5view-32.png</file>
|
|
||||||
<file>gta5view-40.png</file>
|
|
||||||
<file>gta5view-48.png</file>
|
|
||||||
<file>gta5view-64.png</file>
|
|
||||||
<file>gta5view-96.png</file>
|
|
||||||
<file>gta5view-128.png</file>
|
|
||||||
<file>gta5view-256.png</file>
|
|
||||||
<file>mappreview.jpg</file>
|
|
||||||
<file>next.svgz</file>
|
|
||||||
<file>pointmaker-8.png</file>
|
|
||||||
<file>pointmaker-16.png</file>
|
|
||||||
<file>pointmaker-24.png</file>
|
|
||||||
<file>pointmaker-32.png</file>
|
|
||||||
<file>savegame.svgz</file>
|
|
||||||
<file>watermark_1b.png</file>
|
|
||||||
<file>watermark_2b.png</file>
|
|
||||||
<file>watermark_2r.png</file>
|
|
||||||
</qresource>
|
|
||||||
<qresource prefix="/global">
|
|
||||||
<file>global.rcc</file>
|
|
||||||
</qresource>
|
|
||||||
<qresource prefix="/template">
|
|
||||||
<file>template.g5e</file>
|
|
||||||
</qresource>
|
|
||||||
</RCC>
|
|
|
@ -1622,17 +1622,17 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="140"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2209,22 +2209,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="169"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="174"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="183"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1645,17 +1645,17 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>Schrift</translation>
|
<translation>Schrift</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>Ausgewähle Schrift: %1</translation>
|
<translation>Ausgewähle Schrift: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="140"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt?</translation>
|
<translation><h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2234,22 +2234,22 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 Benutzerstatistik</translation>
|
<translation>%1 Benutzerstatistik</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="169"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen?</translation>
|
<translation>Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="174"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>Ja, ich möchte Persönliche Nutzungsdaten einbeziehen.</translation>
|
<translation>Ja, ich möchte Persönliche Nutzungsdaten einbeziehen.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="183"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1622,17 +1622,17 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="140"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2209,22 +2209,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="169"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="174"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="183"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1646,17 +1646,17 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>Police</translation>
|
<translation>Police</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>Police sélectionnée : %1</translation>
|
<translation>Police sélectionnée : %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="140"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t?</translation>
|
<translation><h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2237,22 +2237,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="169"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>Voulez-vous aider au développement de %1 en transmettant vos données d'utilisation ?</translation>
|
<translation>Voulez-vous aider au développement de %1 en transmettant vos données d'utilisation ?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>Statistiques utilisateurs %1</translation>
|
<translation>Statistiques utilisateurs %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="174"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>Oui, je veux partager mes données d'utilisation.</translation>
|
<translation>Oui, je veux partager mes données d'utilisation.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="183"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1665,17 +1665,17 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>폰트</translation>
|
<translation>폰트</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>선택된 폰트: %1</translation>
|
<translation>선택된 폰트: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="140"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>%1에 오신 것을 환영합니다!</h4>%1을 사용하기 전에 구성하시겠습니까?</translation>
|
<translation><h4>%1에 오신 것을 환영합니다!</h4>%1을 사용하기 전에 구성하시겠습니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2259,22 +2259,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="169"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>개인 사용 데이터를 제출에 포함시켜 %1이(가) 개선되기를 원합니까?</translation>
|
<translation>개인 사용 데이터를 제출에 포함시켜 %1이(가) 개선되기를 원합니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 사용자 통계</translation>
|
<translation>%1 사용자 통계</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="174"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>예, 개인 사용 데이터를 포함시키고 싶습니다.</translation>
|
<translation>예, 개인 사용 데이터를 포함시키고 싶습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="183"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>확인(&O)</translation>
|
<translation>확인(&O)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1660,17 +1660,17 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>Шрифт</translation>
|
<translation>Шрифт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>Выбранный шрифт: %1</translation>
|
<translation>Выбранный шрифт: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="140"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием?</translation>
|
<translation><h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2249,22 +2249,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="169"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>Разрешишь нам собирать статистику о пользовании тобой %1? Это поможет нам в разработке.</translation>
|
<translation>Разрешишь нам собирать статистику о пользовании тобой %1? Это поможет нам в разработке.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 Пользовательская статистика</translation>
|
<translation>%1 Пользовательская статистика</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="174"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>Да, передавать данные о пользовании программой.</translation>
|
<translation>Да, передавать данные о пользовании программой.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="183"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&ОК</translation>
|
<translation>&ОК</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1650,17 +1650,17 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>Шрифт</translation>
|
<translation>Шрифт</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>Вибраний шрифт:%1</translation>
|
<translation>Вибраний шрифт:%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="140"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням?</translation>
|
<translation><h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2239,22 +2239,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="169"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>Ви хочете допомогти %1 покращитись у майбутньому, включивши дані особистого користування?</translation>
|
<translation>Ви хочете допомогти %1 покращитись у майбутньому, включивши дані особистого користування?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 Статистика користувачів</translation>
|
<translation>%1 Статистика користувачів</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="174"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>Так, я хочу включити дані особистого користування.</translation>
|
<translation>Так, я хочу включити дані особистого користування.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="183"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translatorcomment>&OK</translatorcomment>
|
<translatorcomment>&OK</translatorcomment>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
|
|
|
@ -1640,17 +1640,17 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>QApplication</name>
|
<name>QApplication</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Font</source>
|
<source>Font</source>
|
||||||
<translation>字體</translation>
|
<translation>字體</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="117"/>
|
<location filename="../main.cpp" line="113"/>
|
||||||
<source>Selected Font: %1</source>
|
<source>Selected Font: %1</source>
|
||||||
<translation>選擇的字體: %1</translation>
|
<translation>選擇的字體: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="144"/>
|
<location filename="../main.cpp" line="140"/>
|
||||||
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
<source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source>
|
||||||
<translation><h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎?</translation>
|
<translation><h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -2229,22 +2229,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="173"/>
|
<location filename="../main.cpp" line="169"/>
|
||||||
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
|
||||||
<translation>你希望通過收集資料來幫助改善 %1 嗎?</translation>
|
<translation>你希望通過收集資料來幫助改善 %1 嗎?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="174"/>
|
<location filename="../main.cpp" line="170"/>
|
||||||
<source>%1 User Statistics</source>
|
<source>%1 User Statistics</source>
|
||||||
<translation>%1 使用者統計</translation>
|
<translation>%1 使用者統計</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="178"/>
|
<location filename="../main.cpp" line="174"/>
|
||||||
<source>Yes, I want include personal usage data.</source>
|
<source>Yes, I want include personal usage data.</source>
|
||||||
<translation>是的,我想幫忙.</translation>
|
<translation>是的,我想幫忙.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="187"/>
|
<location filename="../main.cpp" line="183"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>確定(&O)</translation>
|
<translation>確定(&O)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
Loading…
Reference in a new issue