Fix Qt6 Windows build, improve build success consistency
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
dd9c4a7f16
commit
263e714022
12 changed files with 228 additions and 212 deletions
|
@ -38,8 +38,10 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
|
#if QT_VERSION >= 0x050000
|
||||||
#include "dwmapi.h"
|
#include "dwmapi.h"
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
#ifdef Q_OS_MAC
|
||||||
#include <QStyleFactory>
|
#include <QStyleFactory>
|
||||||
|
@ -293,11 +295,20 @@ void PictureDialog::styliseDialog()
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
#if QT_VERSION >= 0x050000
|
#if QT_VERSION >= 0x060000
|
||||||
|
bool PictureDialog::nativeEvent(const QByteArray &eventType, void *message, qintptr *result)
|
||||||
|
{
|
||||||
|
MSG *msg = reinterpret_cast<MSG*>(message);
|
||||||
|
if (msg->message == 0x031e || msg->message == 0x0320) {
|
||||||
|
styliseDialog();
|
||||||
|
}
|
||||||
|
return QWidget::nativeEvent(eventType, message, result);
|
||||||
|
}
|
||||||
|
#elif QT_VERSION >= 0x050000
|
||||||
bool PictureDialog::nativeEvent(const QByteArray &eventType, void *message, long *result)
|
bool PictureDialog::nativeEvent(const QByteArray &eventType, void *message, long *result)
|
||||||
{
|
{
|
||||||
MSG *msg = reinterpret_cast<MSG*>(message);
|
MSG *msg = reinterpret_cast<MSG*>(message);
|
||||||
if (msg->message == WM_DWMCOMPOSITIONCHANGED || msg->message == WM_DWMCOLORIZATIONCOLORCHANGED) {
|
if (msg->message == 0x031e || msg->message == 0x0320) {
|
||||||
styliseDialog();
|
styliseDialog();
|
||||||
}
|
}
|
||||||
return QWidget::nativeEvent(eventType, message, result);
|
return QWidget::nativeEvent(eventType, message, result);
|
||||||
|
|
|
@ -90,7 +90,9 @@ protected:
|
||||||
bool eventFilter(QObject *obj, QEvent *ev);
|
bool eventFilter(QObject *obj, QEvent *ev);
|
||||||
void mousePressEvent(QMouseEvent *ev);
|
void mousePressEvent(QMouseEvent *ev);
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
#if QT_VERSION >= 0x050000
|
#if QT_VERSION >= 0x060000
|
||||||
|
bool nativeEvent(const QByteArray &eventType, void *message, qintptr *result);
|
||||||
|
#elif QT_VERSION >= 0x050000
|
||||||
bool nativeEvent(const QByteArray &eventType, void *message, long *result);
|
bool nativeEvent(const QByteArray &eventType, void *message, long *result);
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
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: LIBS += -ldwmapi
|
greaterThan(QT_MAJOR_VERSION, 4): win32: LIBS += -ldwmapi
|
||||||
|
|
||||||
DEPLOYMENT.display_name = gta5view
|
DEPLOYMENT.display_name = gta5view
|
||||||
TARGET = gta5view
|
TARGET = gta5view
|
||||||
|
|
5
main.cpp
5
main.cpp
|
@ -103,7 +103,10 @@ int main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef Q_OS_WIN
|
#ifdef Q_OS_WIN
|
||||||
#if QT_VERSION >= 0x050400
|
#if QT_VERSION >= 0x060000
|
||||||
|
a.setFont(QApplication::font("QMenu"));
|
||||||
|
#elif QT_VERSION >= 0x050400
|
||||||
|
#else
|
||||||
if (QSysInfo::windowsVersion() >= 0x0080) {
|
if (QSysInfo::windowsVersion() >= 0x0080) {
|
||||||
a.setFont(QApplication::font("QMenu"));
|
a.setFont(QApplication::font("QMenu"));
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0">
|
<TS version="2.1">
|
||||||
<context>
|
<context>
|
||||||
<name>AboutDialog</name>
|
<name>AboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -192,21 +192,21 @@ Pictures and Savegames</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1019,78 +1019,78 @@ Y: %2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="177"/>
|
<location filename="../PictureDialog.cpp" line="176"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1707"/>
|
<location filename="../ProfileInterface.cpp" line="1707"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="178"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1708"/>
|
<location filename="../ProfileInterface.cpp" line="1708"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="180"/>
|
<location filename="../PictureDialog.cpp" line="179"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1701"/>
|
<location filename="../ProfileInterface.cpp" line="1701"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="181"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1702"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="183"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1704"/>
|
<location filename="../ProfileInterface.cpp" line="1704"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="185"/>
|
<location filename="../PictureDialog.cpp" line="184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1705"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="431"/>
|
<location filename="../PictureDialog.cpp" line="458"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="625"/>
|
<location filename="../PictureDialog.cpp" line="652"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="604"/>
|
<location filename="../PictureDialog.cpp" line="631"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="560"/>
|
<location filename="../PictureDialog.cpp" line="587"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1854,7 +1854,7 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
|
@ -1947,7 +1947,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
|
@ -2235,22 +2235,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="147"/>
|
<location filename="../main.cpp" line="150"/>
|
||||||
<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="148"/>
|
<location filename="../main.cpp" line="151"/>
|
||||||
<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="152"/>
|
<location filename="../main.cpp" line="155"/>
|
||||||
<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="161"/>
|
<location filename="../main.cpp" line="164"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -177,8 +177,8 @@ Snapmatic Bilder und Spielständen</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>ImageEditorDialog</name>
|
<name>ImageEditorDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
|
@ -210,13 +210,13 @@ Snapmatic Bilder und Spielständen</translation>
|
||||||
<translation>S&chließen</translation>
|
<translation>S&chließen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation>
|
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation>
|
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation>
|
||||||
|
@ -1060,37 +1060,37 @@ Y: %2</translation>
|
||||||
<translation>Exportieren</translation>
|
<translation>Exportieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="177"/>
|
<location filename="../PictureDialog.cpp" line="176"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1707"/>
|
<location filename="../ProfileInterface.cpp" line="1707"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Als &Bild exportieren...</translation>
|
<translation>Als &Bild exportieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="178"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1708"/>
|
<location filename="../ProfileInterface.cpp" line="1708"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Als &Snapmatic exportieren...</translation>
|
<translation>Als &Snapmatic exportieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="180"/>
|
<location filename="../PictureDialog.cpp" line="179"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1701"/>
|
<location filename="../ProfileInterface.cpp" line="1701"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>Eigenschaften bearb&eiten...</translation>
|
<translation>Eigenschaften bearb&eiten...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="181"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1702"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>Bild &überschreiben...</translation>
|
<translation>Bild &überschreiben...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="183"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1704"/>
|
<location filename="../ProfileInterface.cpp" line="1704"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>&Kartenansicht öffnen...</translation>
|
<translation>&Kartenansicht öffnen...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="431"/>
|
<location filename="../PictureDialog.cpp" line="458"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1099,37 +1099,37 @@ Taste 2 - Overlay umschalten
|
||||||
Pfeiltasten - Navigieren</translation>
|
Pfeiltasten - Navigieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Snapmatic Bildansicht</translation>
|
<translation>Snapmatic Bildansicht</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>Fehlgeschlagen beim %1</translation>
|
<translation>Fehlgeschlagen beim %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="604"/>
|
<location filename="../PictureDialog.cpp" line="631"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>Keine Crew</translation>
|
<translation>Keine Crew</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="625"/>
|
<location filename="../PictureDialog.cpp" line="652"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>Keine Spieler</translation>
|
<translation>Keine Spieler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="560"/>
|
<location filename="../PictureDialog.cpp" line="587"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>Avatar Vorschaumodus
|
<translation>Avatar Vorschaumodus
|
||||||
Drücke 1 für Standardmodus</translation>
|
Drücke 1 für Standardmodus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>Unbekannter Standort</translation>
|
<translation>Unbekannter Standort</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1231,7 +1231,7 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<translation>Keine gültige Datei wurde ausgewählt</translation>
|
<translation>Keine gültige Datei wurde ausgewählt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="185"/>
|
<location filename="../PictureDialog.cpp" line="184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1705"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>&JSON Editor öffnen...</translation>
|
<translation>&JSON Editor öffnen...</translation>
|
||||||
|
@ -1906,7 +1906,7 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
|
@ -2057,7 +2057,7 @@ Drücke 1 für Standardmodus</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
|
@ -2287,22 +2287,22 @@ Drücke 1 für Standardmodus</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="148"/>
|
<location filename="../main.cpp" line="151"/>
|
||||||
<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="147"/>
|
<location filename="../main.cpp" line="150"/>
|
||||||
<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="152"/>
|
<location filename="../main.cpp" line="155"/>
|
||||||
<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="161"/>
|
<location filename="../main.cpp" line="164"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0" language="en_US">
|
<TS version="2.1" language="en_US">
|
||||||
<context>
|
<context>
|
||||||
<name>AboutDialog</name>
|
<name>AboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -167,8 +167,8 @@ Pictures and Savegames</source>
|
||||||
<context>
|
<context>
|
||||||
<name>ImageEditorDialog</name>
|
<name>ImageEditorDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
|
@ -200,13 +200,13 @@ Pictures and Savegames</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1019,72 +1019,72 @@ Y: %2</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="177"/>
|
<location filename="../PictureDialog.cpp" line="176"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1707"/>
|
<location filename="../ProfileInterface.cpp" line="1707"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="178"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1708"/>
|
<location filename="../ProfileInterface.cpp" line="1708"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="181"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1702"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="180"/>
|
<location filename="../PictureDialog.cpp" line="179"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1701"/>
|
<location filename="../ProfileInterface.cpp" line="1701"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="183"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1704"/>
|
<location filename="../ProfileInterface.cpp" line="1704"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="431"/>
|
<location filename="../PictureDialog.cpp" line="458"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="625"/>
|
<location filename="../PictureDialog.cpp" line="652"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="604"/>
|
<location filename="../PictureDialog.cpp" line="631"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="560"/>
|
<location filename="../PictureDialog.cpp" line="587"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1193,7 +1193,7 @@ Press 1 for Default View</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="185"/>
|
<location filename="../PictureDialog.cpp" line="184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1705"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
|
@ -1854,7 +1854,7 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
|
@ -1999,7 +1999,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
|
@ -2235,22 +2235,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="147"/>
|
<location filename="../main.cpp" line="150"/>
|
||||||
<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="148"/>
|
<location filename="../main.cpp" line="151"/>
|
||||||
<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="152"/>
|
<location filename="../main.cpp" line="155"/>
|
||||||
<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="161"/>
|
<location filename="../main.cpp" line="164"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0" language="fr_FR">
|
<TS version="2.1" language="fr_FR">
|
||||||
<context>
|
<context>
|
||||||
<name>AboutDialog</name>
|
<name>AboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -178,8 +178,8 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
||||||
<context>
|
<context>
|
||||||
<name>ImageEditorDialog</name>
|
<name>ImageEditorDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
|
@ -211,13 +211,13 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
|
||||||
<translation>&Fermer</translation>
|
<translation>&Fermer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>Échec du patch Snapmatic : I/O Error</translation>
|
<translation>Échec du patch Snapmatic : I/O Error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>Échec du patch Snapmatic : Image Error</translation>
|
<translation>Échec du patch Snapmatic : Image Error</translation>
|
||||||
|
@ -1141,37 +1141,37 @@ Y : %2</translation>
|
||||||
<translation>Fichier invalide</translation>
|
<translation>Fichier invalide</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="177"/>
|
<location filename="../PictureDialog.cpp" line="176"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1707"/>
|
<location filename="../ProfileInterface.cpp" line="1707"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Exporter comme &image...</translation>
|
<translation>Exporter comme &image...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="178"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1708"/>
|
<location filename="../ProfileInterface.cpp" line="1708"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Exporter comme &Snapmatic...</translation>
|
<translation>Exporter comme &Snapmatic...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="181"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1702"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>&Remplacer l'image...</translation>
|
<translation>&Remplacer l'image...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="180"/>
|
<location filename="../PictureDialog.cpp" line="179"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1701"/>
|
<location filename="../ProfileInterface.cpp" line="1701"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>Modifier les &propriétés...</translation>
|
<translation>Modifier les &propriétés...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="183"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1704"/>
|
<location filename="../ProfileInterface.cpp" line="1704"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>Ouvrir la &Visionneuse de Carte...</translation>
|
<translation>Ouvrir la &Visionneuse de Carte...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="431"/>
|
<location filename="../PictureDialog.cpp" line="458"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1180,37 +1180,37 @@ Touche 2 - Activer/désactiver l'overlay
|
||||||
Touches fléchées - Naviguer</translation>
|
Touches fléchées - Naviguer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Visionneuse de photo Snapmatic</translation>
|
<translation>Visionneuse de photo Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>Echec de %1</translation>
|
<translation>Echec de %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="604"/>
|
<location filename="../PictureDialog.cpp" line="631"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>Aucun crew</translation>
|
<translation>Aucun crew</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="625"/>
|
<location filename="../PictureDialog.cpp" line="652"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>Aucun joueurs</translation>
|
<translation>Aucun joueurs</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="560"/>
|
<location filename="../PictureDialog.cpp" line="587"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>Mode Aperçu Avatar
|
<translation>Mode Aperçu Avatar
|
||||||
Appuyer sur 1 pour le mode par défaut</translation>
|
Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>Emplacement inconnu</translation>
|
<translation>Emplacement inconnu</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1232,7 +1232,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<translation>Échec de l'export de la photo Snapmatic</translation>
|
<translation>Échec de l'export de la photo Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="185"/>
|
<location filename="../PictureDialog.cpp" line="184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1705"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Ouvrir l'éditeur &JSON...</translation>
|
<translation>Ouvrir l'éditeur &JSON...</translation>
|
||||||
|
@ -1916,7 +1916,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
|
@ -2069,7 +2069,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
|
@ -2299,22 +2299,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="147"/>
|
<location filename="../main.cpp" line="150"/>
|
||||||
<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="148"/>
|
<location filename="../main.cpp" line="151"/>
|
||||||
<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="152"/>
|
<location filename="../main.cpp" line="155"/>
|
||||||
<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="161"/>
|
<location filename="../main.cpp" line="164"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0" language="ko_KR">
|
<TS version="2.1" language="ko_KR">
|
||||||
<context>
|
<context>
|
||||||
<name>AboutDialog</name>
|
<name>AboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -202,21 +202,21 @@ Pictures and Savegames</source>
|
||||||
<translation>닫기(&C)</translation>
|
<translation>닫기(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
<translation>스냅매틱 이미지 편집기</translation>
|
<translation>스냅매틱 이미지 편집기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation>
|
<translation>I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation>
|
<translation>이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation>
|
||||||
|
@ -1068,43 +1068,43 @@ Y: %2</translation>
|
||||||
<translation>닫기(&C)</translation>
|
<translation>닫기(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="177"/>
|
<location filename="../PictureDialog.cpp" line="176"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1707"/>
|
<location filename="../ProfileInterface.cpp" line="1707"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>내 PC에 이미지로 내보내기(&P)</translation>
|
<translation>내 PC에 이미지로 내보내기(&P)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="178"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1708"/>
|
<location filename="../ProfileInterface.cpp" line="1708"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>내 PC에 스냅매틱으로 내보내기(&S)</translation>
|
<translation>내 PC에 스냅매틱으로 내보내기(&S)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="180"/>
|
<location filename="../PictureDialog.cpp" line="179"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1701"/>
|
<location filename="../ProfileInterface.cpp" line="1701"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>속성 편집(&E)</translation>
|
<translation>속성 편집(&E)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="181"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1702"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>이미지 덮어쓰기(&O)</translation>
|
<translation>이미지 덮어쓰기(&O)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="183"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1704"/>
|
<location filename="../ProfileInterface.cpp" line="1704"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>지도 뷰어 열기(&M)</translation>
|
<translation>지도 뷰어 열기(&M)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="185"/>
|
<location filename="../PictureDialog.cpp" line="184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1705"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>JSON 편집기 열기(&J)</translation>
|
<translation>JSON 편집기 열기(&J)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="431"/>
|
<location filename="../PictureDialog.cpp" line="458"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1113,35 +1113,35 @@ Arrow Keys - Navigate</source>
|
||||||
화살표키 - 이동</translation>
|
화살표키 - 이동</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>스냅매틱 이미지 뷰어</translation>
|
<translation>스냅매틱 이미지 뷰어</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>%1에서 실패했습니다.</translation>
|
<translation>%1에서 실패했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="625"/>
|
<location filename="../PictureDialog.cpp" line="652"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>플레이어 없음</translation>
|
<translation>플레이어 없음</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="604"/>
|
<location filename="../PictureDialog.cpp" line="631"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>조직 없음</translation>
|
<translation>조직 없음</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>알 수 없는 위치</translation>
|
<translation>알 수 없는 위치</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="560"/>
|
<location filename="../PictureDialog.cpp" line="587"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>아바타 미리 보기 모드입니다.
|
<translation>아바타 미리 보기 모드입니다.
|
||||||
|
@ -1934,7 +1934,7 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
|
@ -2027,7 +2027,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
|
@ -2320,22 +2320,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="147"/>
|
<location filename="../main.cpp" line="150"/>
|
||||||
<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="148"/>
|
<location filename="../main.cpp" line="151"/>
|
||||||
<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="152"/>
|
<location filename="../main.cpp" line="155"/>
|
||||||
<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="161"/>
|
<location filename="../main.cpp" line="164"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>확인(&O)</translation>
|
<translation>확인(&O)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0" language="ru_RU">
|
<TS version="2.1" language="ru_RU">
|
||||||
<context>
|
<context>
|
||||||
<name>AboutDialog</name>
|
<name>AboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -181,8 +181,8 @@ Pictures and Savegames</source>
|
||||||
<context>
|
<context>
|
||||||
<name>ImageEditorDialog</name>
|
<name>ImageEditorDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
|
@ -214,13 +214,13 @@ Pictures and Savegames</source>
|
||||||
<translation>&Закрыть</translation>
|
<translation>&Закрыть</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation>
|
<translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation>
|
<translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation>
|
||||||
|
@ -1071,37 +1071,37 @@ Y: %2</translation>
|
||||||
<translation>Экспортировать</translation>
|
<translation>Экспортировать</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="177"/>
|
<location filename="../PictureDialog.cpp" line="176"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1707"/>
|
<location filename="../ProfileInterface.cpp" line="1707"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Экспортировать как &картинку...</translation>
|
<translation>Экспортировать как &картинку...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="178"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1708"/>
|
<location filename="../ProfileInterface.cpp" line="1708"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Экспортировать как &Snapmatic...</translation>
|
<translation>Экспортировать как &Snapmatic...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="181"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1702"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>&Перезаписать картинку...</translation>
|
<translation>&Перезаписать картинку...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="180"/>
|
<location filename="../PictureDialog.cpp" line="179"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1701"/>
|
<location filename="../ProfileInterface.cpp" line="1701"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>&Изменить свойства...</translation>
|
<translation>&Изменить свойства...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="183"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1704"/>
|
<location filename="../ProfileInterface.cpp" line="1704"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>Открыть &карту...</translation>
|
<translation>Открыть &карту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="431"/>
|
<location filename="../PictureDialog.cpp" line="458"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1110,37 +1110,37 @@ Arrow Keys - Navigate</source>
|
||||||
Стрелки - Навигация</translation>
|
Стрелки - Навигация</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Просмотрщик фотографий Snapmatic</translation>
|
<translation>Просмотрщик фотографий Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>Ошибка при %1</translation>
|
<translation>Ошибка при %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="604"/>
|
<location filename="../PictureDialog.cpp" line="631"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>Вне банды</translation>
|
<translation>Вне банды</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="625"/>
|
<location filename="../PictureDialog.cpp" line="652"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>Игроков нет</translation>
|
<translation>Игроков нет</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="560"/>
|
<location filename="../PictureDialog.cpp" line="587"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>Режим просмотра аватарок
|
<translation>Режим просмотра аватарок
|
||||||
Нажмите 1 для стандартного просмотра</translation>
|
Нажмите 1 для стандартного просмотра</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>Неизвестное место</translation>
|
<translation>Неизвестное место</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -1242,7 +1242,7 @@ Press 1 for Default View</source>
|
||||||
<translation>Картинки Snapmatic (PGTA*)</translation>
|
<translation>Картинки Snapmatic (PGTA*)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="185"/>
|
<location filename="../PictureDialog.cpp" line="184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1705"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Открыть &редактор JSON...</translation>
|
<translation>Открыть &редактор JSON...</translation>
|
||||||
|
@ -1921,7 +1921,7 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
|
@ -2072,7 +2072,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
|
@ -2302,22 +2302,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="147"/>
|
<location filename="../main.cpp" line="150"/>
|
||||||
<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="148"/>
|
<location filename="../main.cpp" line="151"/>
|
||||||
<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="152"/>
|
<location filename="../main.cpp" line="155"/>
|
||||||
<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="161"/>
|
<location filename="../main.cpp" line="164"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>&ОК</translation>
|
<translation>&ОК</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0" language="uk_UA">
|
<TS version="2.1" language="uk_UA">
|
||||||
<context>
|
<context>
|
||||||
<name>AboutDialog</name>
|
<name>AboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -205,21 +205,21 @@ Pictures and Savegames</source>
|
||||||
<translation>&Закрити</translation>
|
<translation>&Закрити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
<translation>Редактор Snapmatic зображень</translation>
|
<translation>Редактор Snapmatic зображень</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation>
|
<translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation>
|
<translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation>
|
||||||
|
@ -1058,43 +1058,43 @@ Y: %2</translation>
|
||||||
<translation>&Закрити</translation>
|
<translation>&Закрити</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="177"/>
|
<location filename="../PictureDialog.cpp" line="176"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1707"/>
|
<location filename="../ProfileInterface.cpp" line="1707"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>Експортувати як &зображення...</translation>
|
<translation>Експортувати як &зображення...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="178"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1708"/>
|
<location filename="../ProfileInterface.cpp" line="1708"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>Експортувати як &Snapmatic...</translation>
|
<translation>Експортувати як &Snapmatic...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="180"/>
|
<location filename="../PictureDialog.cpp" line="179"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1701"/>
|
<location filename="../ProfileInterface.cpp" line="1701"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>&Змінити властивості...</translation>
|
<translation>&Змінити властивості...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="181"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1702"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>&Перезаписати зображення...</translation>
|
<translation>&Перезаписати зображення...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="183"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1704"/>
|
<location filename="../ProfileInterface.cpp" line="1704"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>Відкрити &карту...</translation>
|
<translation>Відкрити &карту...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="185"/>
|
<location filename="../PictureDialog.cpp" line="184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1705"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>Відкрити редактор &JSON...</translation>
|
<translation>Відкрити редактор &JSON...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="431"/>
|
<location filename="../PictureDialog.cpp" line="458"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1103,35 +1103,35 @@ Arrow Keys - Navigate</source>
|
||||||
Стрілки - Навігація</translation>
|
Стрілки - Навігація</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Переглядач фотографій Snapmatic</translation>
|
<translation>Переглядач фотографій Snapmatic</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>Помилка на%1</translation>
|
<translation>Помилка на%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="625"/>
|
<location filename="../PictureDialog.cpp" line="652"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>Гравців немає</translation>
|
<translation>Гравців немає</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="604"/>
|
<location filename="../PictureDialog.cpp" line="631"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>Банди немає</translation>
|
<translation>Банди немає</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>Невідома локація</translation>
|
<translation>Невідома локація</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="560"/>
|
<location filename="../PictureDialog.cpp" line="587"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>Режим для аватарок
|
<translation>Режим для аватарок
|
||||||
|
@ -1919,7 +1919,7 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
|
@ -2012,7 +2012,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
|
@ -2300,22 +2300,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="147"/>
|
<location filename="../main.cpp" line="150"/>
|
||||||
<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="148"/>
|
<location filename="../main.cpp" line="151"/>
|
||||||
<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="152"/>
|
<location filename="../main.cpp" line="155"/>
|
||||||
<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="161"/>
|
<location filename="../main.cpp" line="164"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translatorcomment>&OK</translatorcomment>
|
<translatorcomment>&OK</translatorcomment>
|
||||||
<translation>&OK</translation>
|
<translation>&OK</translation>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!DOCTYPE TS>
|
<!DOCTYPE TS>
|
||||||
<TS version="2.0" language="zh_TW">
|
<TS version="2.1" language="zh_TW">
|
||||||
<context>
|
<context>
|
||||||
<name>AboutDialog</name>
|
<name>AboutDialog</name>
|
||||||
<message>
|
<message>
|
||||||
|
@ -201,21 +201,21 @@ Pictures and Savegames</source>
|
||||||
<translation>關閉(&C)</translation>
|
<translation>關閉(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Snapmatic Image Editor</source>
|
<source>Snapmatic Image Editor</source>
|
||||||
<translation>Snapmatic 圖片編輯器</translation>
|
<translation>Snapmatic 圖片編輯器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="821"/>
|
<location filename="../PictureDialog.cpp" line="843"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
<location filename="../SnapmaticWidget.cpp" line="394"/>
|
||||||
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
<source>Patching of Snapmatic Image failed because of I/O Error</source>
|
||||||
<translation>I/O 錯誤,Snapmatic 圖片更新失敗</translation>
|
<translation>I/O 錯誤,Snapmatic 圖片更新失敗</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="847"/>
|
<location filename="../PictureDialog.cpp" line="869"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
<location filename="../SnapmaticWidget.cpp" line="422"/>
|
||||||
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
<source>Patching of Snapmatic Image failed because of Image Error</source>
|
||||||
<translation>圖片錯誤,Snapmatic 圖片更新失敗</translation>
|
<translation>圖片錯誤,Snapmatic 圖片更新失敗</translation>
|
||||||
|
@ -1052,43 +1052,43 @@ Y: %2</translation>
|
||||||
<translation>關閉(&C)</translation>
|
<translation>關閉(&C)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="177"/>
|
<location filename="../PictureDialog.cpp" line="176"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1707"/>
|
<location filename="../ProfileInterface.cpp" line="1707"/>
|
||||||
<source>Export as &Picture...</source>
|
<source>Export as &Picture...</source>
|
||||||
<translation>匯出成圖片(&P)...</translation>
|
<translation>匯出成圖片(&P)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="178"/>
|
<location filename="../PictureDialog.cpp" line="177"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1708"/>
|
<location filename="../ProfileInterface.cpp" line="1708"/>
|
||||||
<source>Export as &Snapmatic...</source>
|
<source>Export as &Snapmatic...</source>
|
||||||
<translation>匯出成 Snapmatic(&S)...</translation>
|
<translation>匯出成 Snapmatic(&S)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="180"/>
|
<location filename="../PictureDialog.cpp" line="179"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1701"/>
|
<location filename="../ProfileInterface.cpp" line="1701"/>
|
||||||
<source>&Edit Properties...</source>
|
<source>&Edit Properties...</source>
|
||||||
<translation>編輯屬性(&E) ...</translation>
|
<translation>編輯屬性(&E) ...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="181"/>
|
<location filename="../PictureDialog.cpp" line="180"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1702"/>
|
<location filename="../ProfileInterface.cpp" line="1702"/>
|
||||||
<source>&Overwrite Image...</source>
|
<source>&Overwrite Image...</source>
|
||||||
<translation>修改圖片(&O)...</translation>
|
<translation>修改圖片(&O)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="183"/>
|
<location filename="../PictureDialog.cpp" line="182"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1704"/>
|
<location filename="../ProfileInterface.cpp" line="1704"/>
|
||||||
<source>Open &Map Viewer...</source>
|
<source>Open &Map Viewer...</source>
|
||||||
<translation>開啟地圖檢視器(&M)...</translation>
|
<translation>開啟地圖檢視器(&M)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="185"/>
|
<location filename="../PictureDialog.cpp" line="184"/>
|
||||||
<location filename="../ProfileInterface.cpp" line="1705"/>
|
<location filename="../ProfileInterface.cpp" line="1705"/>
|
||||||
<source>Open &JSON Editor...</source>
|
<source>Open &JSON Editor...</source>
|
||||||
<translation>開啟 JSON 編輯器(&J)...</translation>
|
<translation>開啟 JSON 編輯器(&J)...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="431"/>
|
<location filename="../PictureDialog.cpp" line="458"/>
|
||||||
<source>Key 1 - Avatar Preview Mode
|
<source>Key 1 - Avatar Preview Mode
|
||||||
Key 2 - Toggle Overlay
|
Key 2 - Toggle Overlay
|
||||||
Arrow Keys - Navigate</source>
|
Arrow Keys - Navigate</source>
|
||||||
|
@ -1097,35 +1097,35 @@ Arrow Keys - Navigate</source>
|
||||||
方向鍵 - 導覽</translation>
|
方向鍵 - 導覽</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Snapmatic Picture Viewer</source>
|
<source>Snapmatic Picture Viewer</source>
|
||||||
<translation>Snapmatic 圖片檢視器</translation>
|
<translation>Snapmatic 圖片檢視器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="486"/>
|
<location filename="../PictureDialog.cpp" line="513"/>
|
||||||
<source>Failed at %1</source>
|
<source>Failed at %1</source>
|
||||||
<translation>失敗: %1</translation>
|
<translation>失敗: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="625"/>
|
<location filename="../PictureDialog.cpp" line="652"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
<location filename="../SnapmaticEditor.cpp" line="246"/>
|
||||||
<source>No Players</source>
|
<source>No Players</source>
|
||||||
<translation>無</translation>
|
<translation>無</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<location filename="../PictureDialog.cpp" line="604"/>
|
<location filename="../PictureDialog.cpp" line="631"/>
|
||||||
<source>No Crew</source>
|
<source>No Crew</source>
|
||||||
<translation>無</translation>
|
<translation>無</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="507"/>
|
<location filename="../PictureDialog.cpp" line="534"/>
|
||||||
<source>Unknown Location</source>
|
<source>Unknown Location</source>
|
||||||
<translation>未知地點</translation>
|
<translation>未知地點</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../PictureDialog.cpp" line="560"/>
|
<location filename="../PictureDialog.cpp" line="587"/>
|
||||||
<source>Avatar Preview Mode
|
<source>Avatar Preview Mode
|
||||||
Press 1 for Default View</source>
|
Press 1 for Default View</source>
|
||||||
<translation>大頭貼預覽模式
|
<translation>大頭貼預覽模式
|
||||||
|
@ -1901,7 +1901,7 @@ Press 1 for Default View</source>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
<location filename="../JsonEditorDialog.cpp" line="191"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
<location filename="../JsonEditorDialog.cpp" line="230"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Snapmatic Properties</source>
|
<source>Snapmatic Properties</source>
|
||||||
|
@ -1994,7 +1994,7 @@ Press 1 for Default View</source>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
<location filename="../JsonEditorDialog.cpp" line="197"/>
|
||||||
<location filename="../PictureDialog.cpp" line="742"/>
|
<location filename="../PictureDialog.cpp" line="764"/>
|
||||||
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
<location filename="../SnapmaticEditor.cpp" line="333"/>
|
||||||
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
<location filename="../SnapmaticWidget.cpp" line="456"/>
|
||||||
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
|
||||||
|
@ -2282,22 +2282,22 @@ Press 1 for Default View</source>
|
||||||
<context>
|
<context>
|
||||||
<name>TelemetryDialog</name>
|
<name>TelemetryDialog</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.cpp" line="147"/>
|
<location filename="../main.cpp" line="150"/>
|
||||||
<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="148"/>
|
<location filename="../main.cpp" line="151"/>
|
||||||
<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="152"/>
|
<location filename="../main.cpp" line="155"/>
|
||||||
<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="161"/>
|
<location filename="../main.cpp" line="164"/>
|
||||||
<source>&OK</source>
|
<source>&OK</source>
|
||||||
<translation>確定(&O)</translation>
|
<translation>確定(&O)</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
Loading…
Reference in a new issue