gta5view 1.8.0 release
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Syping 2020-10-11 17:46:45 +02:00
parent 678425a7c5
commit 1fbe4d9e67
27 changed files with 1636 additions and 1631 deletions

View File

@ -17,9 +17,9 @@ export GTA5VIEW_EXECUTABLE=gta5view-${EXECUTABLE_VERSION}${EXECUTABLE_ARCH}.exe
if [ "${PACKAGE_CODE}" == "gta5-mods" ]; then if [ "${PACKAGE_CODE}" == "gta5-mods" ]; then
${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gta5-mods/${PACKAGE_VERSION} ${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gta5-mods/${PACKAGE_VERSION}
${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gta5-mods/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \ ${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gta5-mods/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \
rm -rf ${GTA5VIEW_EXECUTABLE} rm -rf ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE}
elif [ "${PACKAGE_CODE}" == "gtainside" ]; then elif [ "${PACKAGE_CODE}" == "gtainside" ]; then
${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gtainside/${PACKAGE_VERSION} ${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gtainside/${PACKAGE_VERSION}
${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gtainside/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \ ${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gtainside/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \
rm -rf ${GTA5VIEW_EXECUTABLE} rm -rf ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE}
fi fi

View File

@ -25,4 +25,3 @@ x86_64-w64-mingw32-strip -s gta5view.exe && \
cd ${PROJECT_DIR}/assets && \ cd ${PROJECT_DIR}/assets && \
makensis -NOCD ${PROJECT_DIR}/.ci/gta5view.nsi && \ makensis -NOCD ${PROJECT_DIR}/.ci/gta5view.nsi && \
mv -f gta5view_setup.exe gta5view-${EXECUTABLE_VERSION}_setup.exe mv -f gta5view_setup.exe gta5view-${EXECUTABLE_VERSION}_setup.exe

View File

@ -2,7 +2,7 @@ kind: pipeline
type: docker type: docker
environment: environment:
BUILD_TYPE: "RC" BUILD_TYPE: "REL"
steps: steps:
- name: Windows Installer - name: Windows Installer
@ -14,6 +14,9 @@ steps:
from_secret: tca_pass from_secret: tca_pass
commands: commands:
- .drone/drone.sh - .drone/drone.sh
volumes:
- name: gta5view
path: /srv/gta5view
- name: Windows Portable - name: Windows Portable
image: sypingauto/gta5view-build:1.8-static image: sypingauto/gta5view-build:1.8-static
environment: environment:
@ -23,3 +26,11 @@ steps:
from_secret: tca_pass from_secret: tca_pass
commands: commands:
- .drone/drone.sh - .drone/drone.sh
volumes:
- name: gta5view
path: /srv/gta5view
volumes:
- name: gta5view
host:
path: /srv/gta5view

View File

@ -27,6 +27,7 @@ fi
# Init Application Commit Hash # Init Application Commit Hash
export APPLICATION_COMMIT=$(git rev-parse --short HEAD) export APPLICATION_COMMIT=$(git rev-parse --short HEAD)
# Start CI script and copying assets into base directory # Start CI script and copying assets into gta5view directory
.ci/ci.sh && \ .ci/ci.sh && \
cp -Rf assets/* ./ mkdir -p /srv/gta5view/${APPLICATION_COMMIT} && \
cp -Rf assets/* /srv/gta5view/${APPLICATION_COMMIT}/

View File

@ -1,6 +1,6 @@
app-id: de.syping.gta5view app-id: de.syping.gta5view
runtime: org.kde.Platform runtime: org.kde.Platform
runtime-version: '5.14' runtime-version: '5.15'
sdk: org.kde.Sdk sdk: org.kde.Sdk
command: gta5view command: gta5view
finish-args: finish-args:

View File

@ -2,7 +2,7 @@ stages:
- build - build
variables: variables:
BUILD_TYPE: "RC" BUILD_TYPE: "REL"
Windows Installer: Windows Installer:
stage: build stage: build

View File

@ -1,4 +1,4 @@
dist: trusty dist: bionic
sudo: required sudo: required
language: cpp language: cpp
@ -8,7 +8,7 @@ service:
env: env:
global: global:
- BUILD_TYPE=RC - BUILD_TYPE=REL
matrix: matrix:
include: include:
@ -27,6 +27,11 @@ matrix:
- QT_SELECT=qt5-x86_64-w64-mingw32 - QT_SELECT=qt5-x86_64-w64-mingw32
- RELEASE_LABEL="Windows 64-Bit Portable for gta5-mods" - RELEASE_LABEL="Windows 64-Bit Portable for gta5-mods"
- PACKAGE_CODE=gta5-mods - PACKAGE_CODE=gta5-mods
- env:
- BUILD_SCRIPT=windows_docker.sh
- QT_SELECT=qt5-x86_64-w64-mingw32
- RELEASE_LABEL="Windows 64-Bit Portable for gtainside"
- PACKAGE_CODE=gtainside
- env: - env:
- BUILD_SCRIPT=wininstall_docker.sh - BUILD_SCRIPT=wininstall_docker.sh
- QT_SELECT=qt5-x86_64-w64-mingw32 - QT_SELECT=qt5-x86_64-w64-mingw32

View File

@ -95,6 +95,21 @@ void MapLocationDialog::on_cmdDone_clicked()
changeMode = false; changeMode = false;
} }
#if QT_VERSION >= 0x060000
void MapLocationDialog::updatePosFromEvent(double x, double y)
{
QSize mapPixelSize = size();
double xpos_ad = x;
double ypos_ad = mapPixelSize.height() - y;
double xrat = 10000 / (double)mapPixelSize.width();
double yrat = 12000 / (double)mapPixelSize.height();
double xpos_rv = xrat * xpos_ad;
double ypos_rv = yrat * ypos_ad;
double xpos_fp = xpos_rv - 4000;
double ypos_fp = ypos_rv - 4000;
drawPointOnMap(xpos_fp, ypos_fp);
}
#else
void MapLocationDialog::updatePosFromEvent(int x, int y) void MapLocationDialog::updatePosFromEvent(int x, int y)
{ {
QSize mapPixelSize = size(); QSize mapPixelSize = size();
@ -108,6 +123,7 @@ void MapLocationDialog::updatePosFromEvent(int x, int y)
double ypos_fp = ypos_rv - 4000; double ypos_fp = ypos_rv - 4000;
drawPointOnMap(xpos_fp, ypos_fp); drawPointOnMap(xpos_fp, ypos_fp);
} }
#endif
void MapLocationDialog::paintEvent(QPaintEvent *ev) void MapLocationDialog::paintEvent(QPaintEvent *ev)
{ {
@ -156,7 +172,11 @@ void MapLocationDialog::mouseMoveEvent(QMouseEvent *ev)
if (!changeMode) { ev->ignore(); } if (!changeMode) { ev->ignore(); }
else if (ev->buttons() & Qt::LeftButton) else if (ev->buttons() & Qt::LeftButton)
{ {
#if QT_VERSION >= 0x060000
updatePosFromEvent(ev->position().x(), ev->position().y());
#else
updatePosFromEvent(ev->x(), ev->y()); updatePosFromEvent(ev->x(), ev->y());
#endif
ev->accept(); ev->accept();
} }
else else
@ -170,7 +190,11 @@ void MapLocationDialog::mouseReleaseEvent(QMouseEvent *ev)
if (!changeMode) { ev->ignore(); } if (!changeMode) { ev->ignore(); }
else if (ev->button() == Qt::LeftButton) else if (ev->button() == Qt::LeftButton)
{ {
#if QT_VERSION >= 0x060000
updatePosFromEvent(ev->position().x(), ev->position().y());
#else
updatePosFromEvent(ev->x(), ev->y()); updatePosFromEvent(ev->x(), ev->y());
#endif
ev->accept(); ev->accept();
} }
else else

View File

@ -48,7 +48,11 @@ private slots:
void on_cmdApply_clicked(); void on_cmdApply_clicked();
void on_cmdChange_clicked(); void on_cmdChange_clicked();
void on_cmdRevert_clicked(); void on_cmdRevert_clicked();
#if QT_VERSION >= 0x060000
void updatePosFromEvent(double x, double y);
#else
void updatePosFromEvent(int x, int y); void updatePosFromEvent(int x, int y);
#endif
void on_cmdClose_clicked(); void on_cmdClose_clicked();
private: private:

View File

@ -263,11 +263,7 @@ void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
QStringList widgetsKeyList = widgets.values(); QStringList widgetsKeyList = widgets.values();
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive); QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
#if QT_VERSION >= 0x050600 #if QT_VERSION >= 0x050600
#if QT_VERSION >= 0x050F00
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend()); std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
#else
qSort(pictureKeyList.rbegin(), pictureKeyList.rend());
#endif
#else #else
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>()); qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
#endif #endif
@ -287,7 +283,7 @@ void ProfileInterface::insertSavegameIPI(QWidget *widget)
QString widgetKey = widgets[proWidget]; QString widgetKey = widgets[proWidget];
QStringList widgetsKeyList = widgets.values(); QStringList widgetsKeyList = widgets.values();
QStringList savegameKeyList = widgetsKeyList.filter("SGD", Qt::CaseSensitive); QStringList savegameKeyList = widgetsKeyList.filter("SGD", Qt::CaseSensitive);
#if QT_VERSION >= 0x050F00 #if QT_VERSION >= 0x050600
std::sort(savegameKeyList.begin(), savegameKeyList.end()); std::sort(savegameKeyList.begin(), savegameKeyList.end());
#else #else
qSort(savegameKeyList.begin(), savegameKeyList.end()); qSort(savegameKeyList.begin(), savegameKeyList.end());
@ -310,11 +306,7 @@ void ProfileInterface::dialogNextPictureRequested(QWidget *dialog)
QStringList widgetsKeyList = widgets.values(); QStringList widgetsKeyList = widgets.values();
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive); QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
#if QT_VERSION >= 0x050600 #if QT_VERSION >= 0x050600
#if QT_VERSION >= 0x050F00
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend()); std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
#else
qSort(pictureKeyList.rbegin(), pictureKeyList.rend());
#endif
#else #else
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>()); qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
#endif #endif
@ -349,11 +341,7 @@ void ProfileInterface::dialogPreviousPictureRequested(QWidget *dialog)
QStringList widgetsKeyList = widgets.values(); QStringList widgetsKeyList = widgets.values();
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive); QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
#if QT_VERSION >= 0x050600 #if QT_VERSION >= 0x050600
#if QT_VERSION >= 0x050F00
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend()); std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
#else
qSort(pictureKeyList.rbegin(), pictureKeyList.rend());
#endif
#else #else
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>()); qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
#endif #endif
@ -385,7 +373,7 @@ void ProfileInterface::sortingProfileInterface()
QStringList widgetsKeyList = widgets.values(); QStringList widgetsKeyList = widgets.values();
#if QT_VERSION >= 0x050F00 #if QT_VERSION >= 0x050600
std::sort(widgetsKeyList.begin(), widgetsKeyList.end()); std::sort(widgetsKeyList.begin(), widgetsKeyList.end());
#else #else
qSort(widgetsKeyList.begin(), widgetsKeyList.end()); qSort(widgetsKeyList.begin(), widgetsKeyList.end());

View File

@ -4,7 +4,7 @@ Grand Theft Auto V Savegame and Snapmatic viewer/editor
- View Snapmatics with the ability to disable them in-game - View Snapmatics with the ability to disable them in-game
- Edit Snapmatic pictures and properties in multiple ways - Edit Snapmatic pictures and properties in multiple ways
- Import/Export Snapmatics, Savegames and pictures - Import/Export Snapmatics, Savegames and pictures
- Let choose between multiple Social Club accounts as GTA V profiles IDs - Choose between multiple Social Club accounts as GTA V profiles IDs
#### Screenshots #### Screenshots
![Snapmatic Picture Viewer](res/src/picture.png) ![Snapmatic Picture Viewer](res/src/picture.png)

View File

@ -1428,6 +1428,7 @@ QString SnapmaticPicture::parseTitleString(const QByteArray &commitBytes, int ma
#if QT_VERSION >= 0x060000 #if QT_VERSION >= 0x060000
QStringDecoder strDecoder = QStringDecoder(QStringDecoder::Utf16LE); QStringDecoder strDecoder = QStringDecoder(QStringDecoder::Utf16LE);
QString retStr = strDecoder(commitBytes); QString retStr = strDecoder(commitBytes);
retStr = retStr.trimmed();
#else #else
QString retStr = QTextCodec::codecForName("UTF-16LE")->toUnicode(commitBytes).trimmed(); QString retStr = QTextCodec::codecForName("UTF-16LE")->toUnicode(commitBytes).trimmed();
#endif #endif

View File

@ -48,12 +48,16 @@ QString StringParser::escapeString(const QString &toEscape)
QString StringParser::convertBuildedString(const QString &buildedStr) QString StringParser::convertBuildedString(const QString &buildedStr)
{ {
QString outputStr = buildedStr; QString outputStr = buildedStr;
QByteArray sharePath = GTA5SYNC_SHARE; outputStr.replace("APPNAME:", QString::fromUtf8(GTA5SYNC_APPSTR));
outputStr.replace("APPNAME:", GTA5SYNC_APPSTR); outputStr.replace("SHAREDDIR:", QString::fromUtf8(GTA5SYNC_SHARE));
outputStr.replace("SHAREDDIR:", QString::fromUtf8(sharePath)); outputStr.replace("RUNDIR:", QFileInfo(QApplication::applicationFilePath()).canonicalPath());
outputStr.replace("RUNDIR:", QFileInfo(qApp->applicationFilePath()).absoluteDir().absolutePath()); #if QT_VERSION >= 0x060000
outputStr.replace("QCONFLANG:", QLibraryInfo::path(QLibraryInfo::TranslationsPath));
outputStr.replace("QCONFPLUG:", QLibraryInfo::path(QLibraryInfo::PluginsPath));
#else
outputStr.replace("QCONFLANG:", QLibraryInfo::location(QLibraryInfo::TranslationsPath)); outputStr.replace("QCONFLANG:", QLibraryInfo::location(QLibraryInfo::TranslationsPath));
outputStr.replace("QCONFPLUG:", QLibraryInfo::location(QLibraryInfo::PluginsPath)); outputStr.replace("QCONFPLUG:", QLibraryInfo::location(QLibraryInfo::PluginsPath));
#endif
outputStr.replace("SEPARATOR:", QDir::separator()); outputStr.replace("SEPARATOR:", QDir::separator());
return outputStr; return outputStr;
} }

View File

@ -191,21 +191,21 @@ Pictures and Savegames</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../PictureDialog.cpp" line="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<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="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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>
@ -343,14 +343,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="733"/> <location filename="../ProfileInterface.cpp" line="720"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="752"/> <location filename="../ProfileInterface.cpp" line="739"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -991,80 +991,80 @@ Y: %2</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="167"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1630"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="168"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1638"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="170"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1631"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="171"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1632"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="173"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1634"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1628"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="603"/> <location filename="../PictureDialog.cpp" line="496"/>
<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="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="829"/> <location filename="../PictureDialog.cpp" line="722"/>
<location filename="../SnapmaticEditor.cpp" line="247"/> <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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="805"/> <location filename="../PictureDialog.cpp" line="698"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<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="763"/> <location filename="../PictureDialog.cpp" line="656"/>
<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>
@ -1274,23 +1274,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="508"/> <location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="509"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="574"/> <location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<location filename="../ProfileInterface.cpp" line="934"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="982"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<location filename="../ProfileInterface.cpp" line="1235"/>
<source>Import...</source> <source>Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1307,14 +1307,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="528"/> <location filename="../ProfileInterface.cpp" line="515"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="529"/> <location filename="../ProfileInterface.cpp" line="516"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="474"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1322,211 +1322,211 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="85"/> <location filename="../ProfileInterface.cpp" line="84"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="185"/> <location filename="../ProfileInterface.cpp" line="184"/>
<source>Loading...</source> <source>Loading...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="524"/> <location filename="../ProfileInterface.cpp" line="511"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="525"/> <location filename="../ProfileInterface.cpp" line="512"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="471"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="526"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="472"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="527"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="473"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="562"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="575"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="592"/> <location filename="../ProfileInterface.cpp" line="579"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="514"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="530"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="934"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="998"/> <location filename="../ProfileInterface.cpp" line="993"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1235"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1299"/> <location filename="../ProfileInterface.cpp" line="1306"/>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<location filename="../ProfileInterface.cpp" line="1382"/> <location filename="../ProfileInterface.cpp" line="1389"/>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1322"/> <location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1340"/> <location filename="../ProfileInterface.cpp" line="1347"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1330"/>
<location filename="../ProfileInterface.cpp" line="1345"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1331"/>
<location filename="../ProfileInterface.cpp" line="1349"/> <location filename="../ProfileInterface.cpp" line="1356"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1383"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1534,81 +1534,81 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2001"/> <location filename="../ProfileInterface.cpp" line="2008"/>
<location filename="../ProfileInterface.cpp" line="2104"/> <location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2242"/>
<location filename="../ProfileInterface.cpp" line="2341"/> <location filename="../ProfileInterface.cpp" line="2348"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2002"/> <location filename="../ProfileInterface.cpp" line="2009"/>
<location filename="../ProfileInterface.cpp" line="2021"/> <location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2105"/> <location filename="../ProfileInterface.cpp" line="2112"/>
<location filename="../ProfileInterface.cpp" line="2124"/> <location filename="../ProfileInterface.cpp" line="2131"/>
<location filename="../ProfileInterface.cpp" line="2236"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2255"/> <location filename="../ProfileInterface.cpp" line="2262"/>
<location filename="../ProfileInterface.cpp" line="2342"/> <location filename="../ProfileInterface.cpp" line="2349"/>
<location filename="../ProfileInterface.cpp" line="2361"/> <location filename="../ProfileInterface.cpp" line="2368"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1622,17 +1622,7 @@ Press 1 for Default View</source>
<context> <context>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<location filename="../main.cpp" line="117"/> <location filename="../main.cpp" line="136"/>
<source>Font</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="117"/>
<source>Selected Font: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="144"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source> <source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1710,37 +1700,37 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1666"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1667"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1668"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1670"/> <location filename="../ProfileInterface.cpp" line="1677"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1838,8 +1828,8 @@ 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="226"/> <location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source> <source>Snapmatic Properties</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1931,8 +1921,8 @@ 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="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source> <source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1943,73 +1933,73 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="231"/> <location filename="../SnapmaticEditor.cpp" line="230"/>
<location filename="../SnapmaticEditor.cpp" line="266"/> <location filename="../SnapmaticEditor.cpp" line="265"/>
<location filename="../SnapmaticEditor.cpp" line="286"/> <location filename="../SnapmaticEditor.cpp" line="285"/>
<source>Edit</source> <source>Edit</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="235"/> <location filename="../SnapmaticEditor.cpp" line="234"/>
<source>Players: %1 (%2)</source> <source>Players: %1 (%2)</source>
<comment>Multiple Player are inserted here</comment> <comment>Multiple Player are inserted here</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="239"/> <location filename="../SnapmaticEditor.cpp" line="238"/>
<source>Player: %1 (%2)</source> <source>Player: %1 (%2)</source>
<comment>One Player is inserted here</comment> <comment>One Player is inserted here</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="267"/> <location filename="../SnapmaticEditor.cpp" line="266"/>
<source>Title: %1 (%2)</source> <source>Title: %1 (%2)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>Appropriate: %1</source> <source>Appropriate: %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<source>Yes</source> <source>Yes</source>
<comment>Yes, should work fine</comment> <comment>Yes, should work fine</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>No</source> <source>No</source>
<comment>No, could lead to issues</comment> <comment>No, could lead to issues</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="287"/> <location filename="../SnapmaticEditor.cpp" line="286"/>
<source>Crew: %1 (%2)</source> <source>Crew: %1 (%2)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2018,64 +2008,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="730"/> <location filename="../SnapmaticPicture.cpp" line="733"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="734"/> <location filename="../SnapmaticPicture.cpp" line="737"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="738"/> <location filename="../SnapmaticPicture.cpp" line="741"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="464"/> <location filename="../SnapmaticPicture.cpp" line="467"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="690"/> <location filename="../SnapmaticPicture.cpp" line="693"/>
<source>open file %1</source> <source>open file %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="706"/> <location filename="../SnapmaticPicture.cpp" line="709"/>
<source>header not exists</source> <source>header not exists</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="710"/> <location filename="../SnapmaticPicture.cpp" line="713"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="714"/> <location filename="../SnapmaticPicture.cpp" line="717"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="718"/> <location filename="../SnapmaticPicture.cpp" line="721"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="722"/> <location filename="../SnapmaticPicture.cpp" line="725"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="726"/> <location filename="../SnapmaticPicture.cpp" line="729"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="740"/> <location filename="../SnapmaticPicture.cpp" line="743"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -2136,52 +2126,52 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1622"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1625"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1629"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1636"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1639"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1644"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1641"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2209,22 +2199,22 @@ Press 1 for Default View</source>
<context> <context>
<name>TelemetryDialog</name> <name>TelemetryDialog</name>
<message> <message>
<location filename="../main.cpp" line="173"/> <location filename="../main.cpp" line="165"/>
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source> <source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="174"/> <location filename="../main.cpp" line="166"/>
<source>%1 User Statistics</source> <source>%1 User Statistics</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="178"/> <location filename="../main.cpp" line="170"/>
<source>Yes, I want include personal usage data.</source> <source>Yes, I want include personal usage data.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="187"/> <location filename="../main.cpp" line="179"/>
<source>&amp;OK</source> <source>&amp;OK</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2401,15 +2391,15 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>

Binary file not shown.

View File

@ -176,8 +176,8 @@ Snapmatic Bilder und Spielständen</translation>
<context> <context>
<name>ImageEditorDialog</name> <name>ImageEditorDialog</name>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../PictureDialog.cpp" line="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source> <source>Snapmatic Image Editor</source>
@ -209,13 +209,13 @@ Snapmatic Bilder und Spielständen</translation>
<translation>S&amp;chließen</translation> <translation>S&amp;chließen</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<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="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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>
@ -359,14 +359,14 @@ Snapmatic Bilder und Spielständen</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="733"/> <location filename="../ProfileInterface.cpp" line="720"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigener Avatar</translation> <translation>Eigener Avatar</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="752"/> <location filename="../ProfileInterface.cpp" line="739"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigenes Bild</translation> <translation>Eigenes Bild</translation>
@ -1012,37 +1012,37 @@ Y: %2</translation>
<translation>Exportieren</translation> <translation>Exportieren</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="167"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1630"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Als &amp;Bild exportieren...</translation> <translation>Als &amp;Bild exportieren...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="168"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1638"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Als &amp;Snapmatic exportieren...</translation> <translation>Als &amp;Snapmatic exportieren...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="170"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1631"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>Eigenschaften bearb&amp;eiten...</translation> <translation>Eigenschaften bearb&amp;eiten...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="171"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1632"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>Bild &amp;überschreiben...</translation> <translation>Bild &amp;überschreiben...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="173"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1634"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>&amp;Kartenansicht öffnen...</translation> <translation>&amp;Kartenansicht öffnen...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="603"/> <location filename="../PictureDialog.cpp" line="496"/>
<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>
@ -1051,39 +1051,39 @@ Taste 2 - Overlay umschalten
Pfeiltasten - Navigieren</translation> Pfeiltasten - Navigieren</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="805"/> <location filename="../PictureDialog.cpp" line="698"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="829"/> <location filename="../PictureDialog.cpp" line="722"/>
<location filename="../SnapmaticEditor.cpp" line="247"/> <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="763"/> <location filename="../PictureDialog.cpp" line="656"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<source>Unknown Location</source> <source>Unknown Location</source>
<translation>Unbekannter Standort</translation> <translation>Unbekannter Standort</translation>
</message> </message>
@ -1185,8 +1185,8 @@ 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="175"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1628"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>&amp;JSON Editor öffnen...</translation> <translation>&amp;JSON Editor öffnen...</translation>
</message> </message>
@ -1284,40 +1284,40 @@ Drücke 1 für Standardmodus</translation>
<translation>S&amp;chließen</translation> <translation>S&amp;chließen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="185"/> <location filename="../ProfileInterface.cpp" line="184"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Lade...</translation> <translation>Lade...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic Lader</translation> <translation>Snapmatic Lader</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation> <translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="508"/> <location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="509"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="574"/> <location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<location filename="../ProfileInterface.cpp" line="934"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="982"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<location filename="../ProfileInterface.cpp" line="1235"/>
<source>Import...</source> <source>Import...</source>
<translation>Importieren...</translation> <translation>Importieren...</translation>
</message> </message>
@ -1332,45 +1332,45 @@ Drücke 1 für Standardmodus</translation>
<translation>Importieren</translation> <translation>Importieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="526"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="472"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Spielstanddateien (SGTA*)</translation> <translation>Spielstanddateien (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="527"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="473"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic Bilder (PGTA*)</translation> <translation>Snapmatic Bilder (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="524"/> <location filename="../ProfileInterface.cpp" line="511"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Importfähige Dateien (%1)</translation> <translation>Importfähige Dateien (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="528"/> <location filename="../ProfileInterface.cpp" line="515"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Alle Bilddateien (%1)</translation> <translation>Alle Bilddateien (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="529"/> <location filename="../ProfileInterface.cpp" line="516"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="474"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Alle Dateien (**)</translation> <translation>Alle Dateien (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="575"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="592"/> <location filename="../ProfileInterface.cpp" line="579"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Importiere Datei %1 von %2 Dateien</translation> <translation>Importiere Datei %1 von %2 Dateien</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1379,13 +1379,13 @@ Drücke 1 für Standardmodus</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="514"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Fehler beim Lesen vom Snapmatic Bild</translation> <translation>Fehler beim Lesen vom Snapmatic Bild</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="530"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Fehler beim Lesen von Spielstanddatei</translation> <translation>Fehler beim Lesen von Spielstanddatei</translation>
@ -1393,135 +1393,135 @@ Drücke 1 für Standardmodus</translation>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation> <translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation> <translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="934"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation> <translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1383"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initialisiere Export...</translation> <translation>Initialisiere Export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation> <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Exportiere Snapmatic Bilder%2&lt;br&gt;&lt;br&gt;JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen&lt;br&gt;Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren&lt;br&gt;&lt;br&gt;Exportieren als:</translation> <translation>%1Exportiere Snapmatic Bilder%2&lt;br&gt;&lt;br&gt;JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen&lt;br&gt;Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren&lt;br&gt;&lt;br&gt;Exportieren als:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="562"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Keine gültige Datei wurde ausgewählt</translation> <translation>Keine gültige Datei wurde ausgewählt</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="85"/> <location filename="../ProfileInterface.cpp" line="84"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation>Aktivierte Bilder: %1 von %2</translation> <translation>Aktivierte Bilder: %1 von %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation> <translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation> <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation> <translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1235"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation> <translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1322"/> <location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1340"/> <location filename="../ProfileInterface.cpp" line="1347"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG Bilder und GTA Snapmatic</translation> <translation>JPG Bilder und GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1330"/>
<location filename="../ProfileInterface.cpp" line="1345"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Nur JPG Bilder</translation> <translation>Nur JPG Bilder</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1331"/>
<location filename="../ProfileInterface.cpp" line="1349"/> <location filename="../ProfileInterface.cpp" line="1356"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Nur GTA Snapmatic</translation> <translation>Nur GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2001"/> <location filename="../ProfileInterface.cpp" line="2008"/>
<location filename="../ProfileInterface.cpp" line="2104"/> <location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2242"/>
<location filename="../ProfileInterface.cpp" line="2341"/> <location filename="../ProfileInterface.cpp" line="2348"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Auswahl patchen...</translation> <translation>Auswahl patchen...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2002"/> <location filename="../ProfileInterface.cpp" line="2009"/>
<location filename="../ProfileInterface.cpp" line="2021"/> <location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2105"/> <location filename="../ProfileInterface.cpp" line="2112"/>
<location filename="../ProfileInterface.cpp" line="2124"/> <location filename="../ProfileInterface.cpp" line="2131"/>
<location filename="../ProfileInterface.cpp" line="2236"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2255"/> <location filename="../ProfileInterface.cpp" line="2262"/>
<location filename="../ProfileInterface.cpp" line="2342"/> <location filename="../ProfileInterface.cpp" line="2349"/>
<location filename="../ProfileInterface.cpp" line="2361"/> <location filename="../ProfileInterface.cpp" line="2368"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Patche Datei %1 von %2 Dateien</translation> <translation>Patche Datei %1 von %2 Dateien</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Als Avatar qualifizieren</translation> <translation>Als Avatar qualifizieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Keine Snapmatic Bilder sind ausgewählt</translation> <translation>Keine Snapmatic Bilder sind ausgewählt</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation> <translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1531,93 +1531,93 @@ Drücke 1 für Standardmodus</translation>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="998"/> <location filename="../ProfileInterface.cpp" line="993"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Bereite Inhalt für Import vor...</translation> <translation>Bereite Inhalt für Import vor...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Qualifizieren</translation> <translation>Qualifizieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Spieler ändern...</translation> <translation>Spieler ändern...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Spieler ändern</translation> <translation>Spieler ändern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Crew ändern...</translation> <translation>Crew ändern...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation> <translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Crew ändern</translation> <translation>Crew ändern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Titel ändern...</translation> <translation>Titel ändern...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation> <translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Titel ändern</translation> <translation>Titel ändern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation> <translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Auswahl löschen</translation> <translation>Auswahl löschen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation> <translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1299"/> <location filename="../ProfileInterface.cpp" line="1306"/>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<location filename="../ProfileInterface.cpp" line="1382"/> <location filename="../ProfileInterface.cpp" line="1389"/>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Auswahl exportieren...</translation> <translation>Auswahl exportieren...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1636,7 +1636,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation> <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="525"/> <location filename="../ProfileInterface.cpp" line="512"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="471"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
@ -1645,17 +1645,15 @@ Drücke 1 für Standardmodus</translation>
<context> <context>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Font</source> <source>Font</source>
<translation>Schrift</translation> <translation type="vanished">Schrift</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Selected Font: %1</source> <source>Selected Font: %1</source>
<translation>Ausgewähle Schrift: %1</translation> <translation type="vanished">Ausgewähle Schrift: %1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="144"/> <location filename="../main.cpp" line="136"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source> <source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;Willkommen zu %1!&lt;/h4&gt;Möchtest du %1 einstellen bevor du es nutzt?</translation> <translation>&lt;h4&gt;Willkommen zu %1!&lt;/h4&gt;Möchtest du %1 einstellen bevor du es nutzt?</translation>
</message> </message>
@ -1771,32 +1769,32 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation> <translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1666"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>A&amp;nsehen</translation> <translation>A&amp;nsehen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1668"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation> <translation>Entfe&amp;rnen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1670"/> <location filename="../ProfileInterface.cpp" line="1677"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>Au&amp;swählen</translation> <translation>Au&amp;swählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation> <translation>A&amp;bwählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>&amp;Alles auswählen</translation> <translation>&amp;Alles auswählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation> <translation>Alles a&amp;bwählen</translation>
</message> </message>
@ -1811,7 +1809,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Spielstand kopieren</translation> <translation>Spielstand kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1667"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exportieren</translation> <translation>&amp;Exportieren</translation>
</message> </message>
@ -1863,8 +1861,8 @@ 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="226"/> <location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source> <source>Snapmatic Properties</source>
<translation>Snapmatic Eigenschaften</translation> <translation>Snapmatic Eigenschaften</translation>
@ -1905,8 +1903,8 @@ Drücke 1 für Standardmodus</translation>
<translation>Meme</translation> <translation>Meme</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Snapmatic Titel</translation> <translation>Snapmatic Titel</translation>
</message> </message>
@ -1916,30 +1914,30 @@ Drücke 1 für Standardmodus</translation>
<translation>Snapmatic Werte</translation> <translation>Snapmatic Werte</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="287"/> <location filename="../SnapmaticEditor.cpp" line="286"/>
<source>Crew: %1 (%2)</source> <source>Crew: %1 (%2)</source>
<translation>Crew: %1 (%2)</translation> <translation>Crew: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="267"/> <location filename="../SnapmaticEditor.cpp" line="266"/>
<source>Title: %1 (%2)</source> <source>Title: %1 (%2)</source>
<translation>Titel: %1 (%2)</translation> <translation>Titel: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="235"/> <location filename="../SnapmaticEditor.cpp" line="234"/>
<source>Players: %1 (%2)</source> <source>Players: %1 (%2)</source>
<comment>Multiple Player are inserted here</comment> <comment>Multiple Player are inserted here</comment>
<translation>Spieler: %1 (%2)</translation> <translation>Spieler: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="239"/> <location filename="../SnapmaticEditor.cpp" line="238"/>
<source>Player: %1 (%2)</source> <source>Player: %1 (%2)</source>
<comment>One Player is inserted here</comment> <comment>One Player is inserted here</comment>
<translation>Spieler: %1 (%2)</translation> <translation>Spieler: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>Appropriate: %1</source> <source>Appropriate: %1</source>
<translation>Angemessen: %1</translation> <translation>Angemessen: %1</translation>
</message> </message>
@ -1979,20 +1977,20 @@ Drücke 1 für Standardmodus</translation>
<translation>Abbre&amp;chen</translation> <translation>Abbre&amp;chen</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="231"/> <location filename="../SnapmaticEditor.cpp" line="230"/>
<location filename="../SnapmaticEditor.cpp" line="266"/> <location filename="../SnapmaticEditor.cpp" line="265"/>
<location filename="../SnapmaticEditor.cpp" line="286"/> <location filename="../SnapmaticEditor.cpp" line="285"/>
<source>Edit</source> <source>Edit</source>
<translation>Bearbeiten</translation> <translation>Bearbeiten</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<source>Yes</source> <source>Yes</source>
<comment>Yes, should work fine</comment> <comment>Yes, should work fine</comment>
<translation>Ja</translation> <translation>Ja</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>No</source> <source>No</source>
<comment>No, could lead to issues</comment> <comment>No, could lead to issues</comment>
<translation>Nein</translation> <translation>Nein</translation>
@ -2014,27 +2012,27 @@ 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="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source> <source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation> <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Neuer Snapmatic Titel:</translation> <translation>Neuer Snapmatic Titel:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Snapmatic Crew</translation> <translation>Snapmatic Crew</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Neue Snapmatic Crew:</translation> <translation>Neue Snapmatic Crew:</translation>
</message> </message>
@ -2042,66 +2040,66 @@ Drücke 1 für Standardmodus</translation>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="464"/> <location filename="../SnapmaticPicture.cpp" line="467"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>FOTO - %1</translation> <translation>FOTO - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="690"/> <location filename="../SnapmaticPicture.cpp" line="693"/>
<source>open file %1</source> <source>open file %1</source>
<translation>Datei öffnen %1</translation> <translation>Datei öffnen %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="706"/> <location filename="../SnapmaticPicture.cpp" line="709"/>
<source>header not exists</source> <source>header not exists</source>
<translation>Header nicht existiert</translation> <translation>Header nicht existiert</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="710"/> <location filename="../SnapmaticPicture.cpp" line="713"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>Header fehlerhaft ist</translation> <translation>Header fehlerhaft ist</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="714"/> <location filename="../SnapmaticPicture.cpp" line="717"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>Bild nicht existiert (%1)</translation> <translation>Bild nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="718"/> <location filename="../SnapmaticPicture.cpp" line="721"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON nicht existiert (%1)</translation> <translation>JSON nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="722"/> <location filename="../SnapmaticPicture.cpp" line="725"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>Titel nicht existiert (%1)</translation> <translation>Titel nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="726"/> <location filename="../SnapmaticPicture.cpp" line="729"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>Beschreibung nicht existiert (%1)</translation> <translation>Beschreibung nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="740"/> <location filename="../SnapmaticPicture.cpp" line="743"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>Datei lesen von %1 weil %2</translation> <translation>Datei lesen von %1 weil %2</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="730"/> <location filename="../SnapmaticPicture.cpp" line="733"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON ist unvollständig und Fehlerhaft</translation> <translation>JSON ist unvollständig und Fehlerhaft</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="734"/> <location filename="../SnapmaticPicture.cpp" line="737"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON ist unvollständig</translation> <translation>JSON ist unvollständig</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="738"/> <location filename="../SnapmaticPicture.cpp" line="741"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON ist Fehlerhaft</translation> <translation>JSON ist Fehlerhaft</translation>
</message> </message>
@ -2161,52 +2159,52 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation> <translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1622"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Bearbei&amp;ten</translation> <translation>Bearbei&amp;ten</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1636"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exportieren</translation> <translation>&amp;Exportieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1625"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>&amp;Im Spiel anzeigen</translation> <translation>&amp;Im Spiel anzeigen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1629"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>&amp;Im Spiel ausblenden</translation> <translation>&amp;Im Spiel ausblenden</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1639"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>A&amp;nsehen</translation> <translation>A&amp;nsehen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation> <translation>Entfe&amp;rnen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1644"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>Au&amp;swählen</translation> <translation>Au&amp;swählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation> <translation>A&amp;bwählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1641"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Alles &amp;auswählen</translation> <translation>Alles &amp;auswählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation> <translation>Alles a&amp;bwählen</translation>
</message> </message>
@ -2234,22 +2232,22 @@ Drücke 1 für Standardmodus</translation>
<context> <context>
<name>TelemetryDialog</name> <name>TelemetryDialog</name>
<message> <message>
<location filename="../main.cpp" line="174"/> <location filename="../main.cpp" line="166"/>
<source>%1 User Statistics</source> <source>%1 User Statistics</source>
<translation>%1 Benutzerstatistik</translation> <translation>%1 Benutzerstatistik</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="173"/> <location filename="../main.cpp" line="165"/>
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source> <source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
<translation>Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen?</translation> <translation>Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen?</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="178"/> <location filename="../main.cpp" line="170"/>
<source>Yes, I want include personal usage data.</source> <source>Yes, I want include personal usage data.</source>
<translation>Ja, ich möchte Persönliche Nutzungsdaten einbeziehen.</translation> <translation>Ja, ich möchte Persönliche Nutzungsdaten einbeziehen.</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="187"/> <location filename="../main.cpp" line="179"/>
<source>&amp;OK</source> <source>&amp;OK</source>
<translation>&amp;OK</translation> <translation>&amp;OK</translation>
</message> </message>
@ -2456,15 +2454,15 @@ Drücke 1 für Standardmodus</translation>
<translation>&amp;Neuladen</translation> <translation>&amp;Neuladen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Im Spiel anzeigen</translation> <translation>Im Spiel anzeigen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Im Spiel ausblenden</translation> <translation>Im Spiel ausblenden</translation>

View File

@ -166,8 +166,8 @@ Pictures and Savegames</source>
<context> <context>
<name>ImageEditorDialog</name> <name>ImageEditorDialog</name>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../PictureDialog.cpp" line="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source> <source>Snapmatic Image Editor</source>
@ -199,13 +199,13 @@ Pictures and Savegames</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<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="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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>
@ -349,14 +349,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="733"/> <location filename="../ProfileInterface.cpp" line="720"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="752"/> <location filename="../ProfileInterface.cpp" line="739"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -991,74 +991,74 @@ Y: %2</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="167"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1630"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="168"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1638"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="171"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1632"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="170"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1631"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="173"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1634"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="603"/> <location filename="../PictureDialog.cpp" line="496"/>
<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="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="829"/> <location filename="../PictureDialog.cpp" line="722"/>
<location filename="../SnapmaticEditor.cpp" line="247"/> <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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="805"/> <location filename="../PictureDialog.cpp" line="698"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<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="763"/> <location filename="../PictureDialog.cpp" line="656"/>
<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>
@ -1167,8 +1167,8 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1628"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1272,45 +1272,45 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="85"/> <location filename="../ProfileInterface.cpp" line="84"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="185"/> <location filename="../ProfileInterface.cpp" line="184"/>
<source>Loading...</source> <source>Loading...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="508"/> <location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="509"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="574"/> <location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<location filename="../ProfileInterface.cpp" line="934"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="982"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<location filename="../ProfileInterface.cpp" line="1235"/>
<source>Import...</source> <source>Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1325,24 +1325,24 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="524"/> <location filename="../ProfileInterface.cpp" line="511"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="525"/> <location filename="../ProfileInterface.cpp" line="512"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="471"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="526"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="472"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="527"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="473"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1350,46 +1350,46 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="528"/> <location filename="../ProfileInterface.cpp" line="515"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="529"/> <location filename="../ProfileInterface.cpp" line="516"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="474"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="562"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="575"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="592"/> <location filename="../ProfileInterface.cpp" line="579"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="514"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="530"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1397,147 +1397,147 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="934"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1235"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1322"/> <location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1340"/> <location filename="../ProfileInterface.cpp" line="1347"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1330"/>
<location filename="../ProfileInterface.cpp" line="1345"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1331"/>
<location filename="../ProfileInterface.cpp" line="1349"/> <location filename="../ProfileInterface.cpp" line="1356"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1299"/> <location filename="../ProfileInterface.cpp" line="1306"/>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<location filename="../ProfileInterface.cpp" line="1382"/> <location filename="../ProfileInterface.cpp" line="1389"/>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1383"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initializing export...</translation> <translation>Initializing export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2001"/> <location filename="../ProfileInterface.cpp" line="2008"/>
<location filename="../ProfileInterface.cpp" line="2104"/> <location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2242"/>
<location filename="../ProfileInterface.cpp" line="2341"/> <location filename="../ProfileInterface.cpp" line="2348"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2002"/> <location filename="../ProfileInterface.cpp" line="2009"/>
<location filename="../ProfileInterface.cpp" line="2021"/> <location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2105"/> <location filename="../ProfileInterface.cpp" line="2112"/>
<location filename="../ProfileInterface.cpp" line="2124"/> <location filename="../ProfileInterface.cpp" line="2131"/>
<location filename="../ProfileInterface.cpp" line="2236"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2255"/> <location filename="../ProfileInterface.cpp" line="2262"/>
<location filename="../ProfileInterface.cpp" line="2342"/> <location filename="../ProfileInterface.cpp" line="2349"/>
<location filename="../ProfileInterface.cpp" line="2361"/> <location filename="../ProfileInterface.cpp" line="2368"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1545,70 +1545,70 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="998"/> <location filename="../ProfileInterface.cpp" line="993"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1622,17 +1622,7 @@ Press 1 for Default View</source>
<context> <context>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<location filename="../main.cpp" line="117"/> <location filename="../main.cpp" line="136"/>
<source>Font</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="117"/>
<source>Selected Font: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="144"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source> <source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1710,37 +1700,37 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1666"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1667"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1668"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1670"/> <location filename="../ProfileInterface.cpp" line="1677"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1838,8 +1828,8 @@ 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="226"/> <location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source> <source>Snapmatic Properties</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1885,30 +1875,30 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="287"/> <location filename="../SnapmaticEditor.cpp" line="286"/>
<source>Crew: %1 (%2)</source> <source>Crew: %1 (%2)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="267"/> <location filename="../SnapmaticEditor.cpp" line="266"/>
<source>Title: %1 (%2)</source> <source>Title: %1 (%2)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="235"/> <location filename="../SnapmaticEditor.cpp" line="234"/>
<source>Players: %1 (%2)</source> <source>Players: %1 (%2)</source>
<comment>Multiple Player are inserted here</comment> <comment>Multiple Player are inserted here</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="239"/> <location filename="../SnapmaticEditor.cpp" line="238"/>
<source>Player: %1 (%2)</source> <source>Player: %1 (%2)</source>
<comment>One Player is inserted here</comment> <comment>One Player is inserted here</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>Appropriate: %1</source> <source>Appropriate: %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1948,20 +1938,20 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="231"/> <location filename="../SnapmaticEditor.cpp" line="230"/>
<location filename="../SnapmaticEditor.cpp" line="266"/> <location filename="../SnapmaticEditor.cpp" line="265"/>
<location filename="../SnapmaticEditor.cpp" line="286"/> <location filename="../SnapmaticEditor.cpp" line="285"/>
<source>Edit</source> <source>Edit</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<source>Yes</source> <source>Yes</source>
<comment>Yes, should work fine</comment> <comment>Yes, should work fine</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>No</source> <source>No</source>
<comment>No, could lead to issues</comment> <comment>No, could lead to issues</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1983,33 +1973,33 @@ 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="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source> <source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2017,66 +2007,66 @@ Press 1 for Default View</source>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="464"/> <location filename="../SnapmaticPicture.cpp" line="467"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="690"/> <location filename="../SnapmaticPicture.cpp" line="693"/>
<source>open file %1</source> <source>open file %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="706"/> <location filename="../SnapmaticPicture.cpp" line="709"/>
<source>header not exists</source> <source>header not exists</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="710"/> <location filename="../SnapmaticPicture.cpp" line="713"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="714"/> <location filename="../SnapmaticPicture.cpp" line="717"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="718"/> <location filename="../SnapmaticPicture.cpp" line="721"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="722"/> <location filename="../SnapmaticPicture.cpp" line="725"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="726"/> <location filename="../SnapmaticPicture.cpp" line="729"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="740"/> <location filename="../SnapmaticPicture.cpp" line="743"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="730"/> <location filename="../SnapmaticPicture.cpp" line="733"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="734"/> <location filename="../SnapmaticPicture.cpp" line="737"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="738"/> <location filename="../SnapmaticPicture.cpp" line="741"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2136,52 +2126,52 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1622"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1625"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1629"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1636"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1639"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1644"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1641"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2209,22 +2199,22 @@ Press 1 for Default View</source>
<context> <context>
<name>TelemetryDialog</name> <name>TelemetryDialog</name>
<message> <message>
<location filename="../main.cpp" line="173"/> <location filename="../main.cpp" line="165"/>
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source> <source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="174"/> <location filename="../main.cpp" line="166"/>
<source>%1 User Statistics</source> <source>%1 User Statistics</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="178"/> <location filename="../main.cpp" line="170"/>
<source>Yes, I want include personal usage data.</source> <source>Yes, I want include personal usage data.</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="187"/> <location filename="../main.cpp" line="179"/>
<source>&amp;OK</source> <source>&amp;OK</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2431,15 +2421,15 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>

Binary file not shown.

View File

@ -176,8 +176,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="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../PictureDialog.cpp" line="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source> <source>Snapmatic Image Editor</source>
@ -209,13 +209,13 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<translation>&amp;Fermer</translation> <translation>&amp;Fermer</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<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="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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>
@ -359,14 +359,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="733"/> <location filename="../ProfileInterface.cpp" line="720"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Avatar personnalisé</translation> <translation>Avatar personnalisé</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="752"/> <location filename="../ProfileInterface.cpp" line="739"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Image personnalisé</translation> <translation>Image personnalisé</translation>
@ -1092,37 +1092,37 @@ Y : %2</translation>
<translation>Fichier invalide</translation> <translation>Fichier invalide</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="167"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1630"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Exporter comme &amp;image...</translation> <translation>Exporter comme &amp;image...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="168"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1638"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Exporter comme &amp;Snapmatic...</translation> <translation>Exporter comme &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="171"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1632"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>&amp;Remplacer l&apos;image...</translation> <translation>&amp;Remplacer l&apos;image...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="170"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1631"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>Modifier les &amp;propriétés...</translation> <translation>Modifier les &amp;propriétés...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="173"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1634"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>Ouvrir la &amp;Visionneuse de Carte...</translation> <translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="603"/> <location filename="../PictureDialog.cpp" line="496"/>
<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>
@ -1131,39 +1131,39 @@ Touche 2 - Activer/désactiver l&apos;overlay
Touches fléchées - Naviguer</translation> Touches fléchées - Naviguer</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="805"/> <location filename="../PictureDialog.cpp" line="698"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="829"/> <location filename="../PictureDialog.cpp" line="722"/>
<location filename="../SnapmaticEditor.cpp" line="247"/> <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="763"/> <location filename="../PictureDialog.cpp" line="656"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<source>Unknown Location</source> <source>Unknown Location</source>
<translation>Emplacement inconnu</translation> <translation>Emplacement inconnu</translation>
</message> </message>
@ -1185,8 +1185,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Échec de l&apos;export de la photo Snapmatic</translation> <translation>Échec de l&apos;export de la photo Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1628"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>Ouvrir l&apos;éditeur &amp;JSON...</translation> <translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
</message> </message>
@ -1290,45 +1290,45 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Copie du fichier %1 sur %2</translation> <translation>Copie du fichier %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="85"/> <location filename="../ProfileInterface.cpp" line="84"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation>Photos activées : %1 sur %2</translation> <translation>Photos activées : %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="185"/> <location filename="../ProfileInterface.cpp" line="184"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Chargement...</translation> <translation>Chargement...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation> <translation>Snapmatic Loader</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Les Snapmatic suivants ont é répaés&lt;/h4&gt;%1</translation> <translation>&lt;h4&gt;Les Snapmatic suivants ont é répaés&lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="508"/> <location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="509"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="574"/> <location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<location filename="../ProfileInterface.cpp" line="934"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="982"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<location filename="../ProfileInterface.cpp" line="1235"/>
<source>Import...</source> <source>Import...</source>
<translation>Importer...</translation> <translation>Importer...</translation>
</message> </message>
@ -1343,13 +1343,13 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Importer</translation> <translation>Importer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="526"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="472"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Fichiers de sauvegarde GTA (SGTA*)</translation> <translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="527"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="473"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Photos Snapmatic (PGTA*)</translation> <translation>Photos Snapmatic (PGTA*)</translation>
@ -1357,26 +1357,26 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="528"/> <location filename="../ProfileInterface.cpp" line="515"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Toutes les images (%1)</translation> <translation>Toutes les images (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="529"/> <location filename="../ProfileInterface.cpp" line="516"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="474"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Tous les fichiers (**)</translation> <translation>Tous les fichiers (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="575"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="592"/> <location filename="../ProfileInterface.cpp" line="579"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Importation du fichier %1 sur %2</translation> <translation>Importation du fichier %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1385,25 +1385,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="562"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Fichier invalide</translation> <translation>Fichier invalide</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="524"/> <location filename="../ProfileInterface.cpp" line="511"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Fichiers importables (%1)</translation> <translation>Fichiers importables (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="514"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Impossible d&apos;ouvrir la photo Snapmatic</translation> <translation>Impossible d&apos;ouvrir la photo Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="530"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Impossible de lire le fichier de sauvegarde</translation> <translation>Impossible de lire le fichier de sauvegarde</translation>
@ -1411,122 +1411,122 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation> <translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être parsé correctement</translation> <translation>Impossible d&apos;importer %1, le fichier ne peut pas être parsé correctement</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="934"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Impossible d&apos;importer %1, le format du fichier n&apos;est pas détecté</translation> <translation>Impossible d&apos;importer %1, le format du fichier n&apos;est pas détecté</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Impossible d&apos;importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation> <translation>Impossible d&apos;importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Impossible d&apos;importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation> <translation>Impossible d&apos;importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Impossible d&apos;importer la sauvegarde, impossible de copier le fichier dans le profil</translation> <translation>Impossible d&apos;importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1235"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Impossible d&apos;importer la sauvegarde, aucun emplacement libre</translation> <translation>Impossible d&apos;importer la sauvegarde, aucun emplacement libre</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1322"/> <location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1340"/> <location filename="../ProfileInterface.cpp" line="1347"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>Images JPG et GTA Snapmatic</translation> <translation>Images JPG et GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1330"/>
<location filename="../ProfileInterface.cpp" line="1345"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Images JPG seulement</translation> <translation>Images JPG seulement</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1331"/>
<location filename="../ProfileInterface.cpp" line="1349"/> <location filename="../ProfileInterface.cpp" line="1356"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>GTA Snapmatic seulement</translation> <translation>GTA Snapmatic seulement</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Exporter les photos Snapmatic%2&lt;br&gt;&lt;br&gt;Les fichiers JPG permettent d&apos;ouvrir les photos avec une visionneuse d&apos;images&lt;br&gt;Les GTA Snapmatic permettent d&apos;importer les photos dans le jeu&lt;br&gt;&lt;br&gt;Exporter comme :</translation> <translation>%1Exporter les photos Snapmatic%2&lt;br&gt;&lt;br&gt;Les fichiers JPG permettent d&apos;ouvrir les photos avec une visionneuse d&apos;images&lt;br&gt;Les GTA Snapmatic permettent d&apos;importer les photos dans le jeu&lt;br&gt;&lt;br&gt;Exporter comme :</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1299"/> <location filename="../ProfileInterface.cpp" line="1306"/>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<location filename="../ProfileInterface.cpp" line="1382"/> <location filename="../ProfileInterface.cpp" line="1389"/>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Exporter la sélection...</translation> <translation>Exporter la sélection...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1383"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initialisation de l&apos;export...</translation> <translation>Initialisation de l&apos;export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Qualifier comme Avatar</translation> <translation>Qualifier comme Avatar</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Aucun Snapmatic sélectionné</translation> <translation>Aucun Snapmatic sélectionné</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2001"/> <location filename="../ProfileInterface.cpp" line="2008"/>
<location filename="../ProfileInterface.cpp" line="2104"/> <location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2242"/>
<location filename="../ProfileInterface.cpp" line="2341"/> <location filename="../ProfileInterface.cpp" line="2348"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Patcher la sélection...</translation> <translation>Patcher la sélection...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2002"/> <location filename="../ProfileInterface.cpp" line="2009"/>
<location filename="../ProfileInterface.cpp" line="2021"/> <location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2105"/> <location filename="../ProfileInterface.cpp" line="2112"/>
<location filename="../ProfileInterface.cpp" line="2124"/> <location filename="../ProfileInterface.cpp" line="2131"/>
<location filename="../ProfileInterface.cpp" line="2236"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2255"/> <location filename="../ProfileInterface.cpp" line="2262"/>
<location filename="../ProfileInterface.cpp" line="2342"/> <location filename="../ProfileInterface.cpp" line="2349"/>
<location filename="../ProfileInterface.cpp" line="2361"/> <location filename="../ProfileInterface.cpp" line="2368"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Patch du fichier %1 sur %2</translation> <translation>Patch du fichier %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1536,76 +1536,76 @@ Appuyer sur 1 pour le mode par défaut</translation>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation> <translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="998"/> <location filename="../ProfileInterface.cpp" line="993"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Préparation du contenu pour l&apos;import...</translation> <translation>Préparation du contenu pour l&apos;import...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation> <translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Qualifier</translation> <translation>Qualifier</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Modifier les joueurs...</translation> <translation>Modifier les joueurs...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Modifier les joueurs</translation> <translation>Modifier les joueurs</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Modifier le Crew...</translation> <translation>Modifier le Crew...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Snapmatic Crew ID invalide</translation> <translation>Snapmatic Crew ID invalide</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Changer le Crew</translation> <translation>Changer le Crew</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Changer le titre...</translation> <translation>Changer le titre...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Titre Snapmatic invalide</translation> <translation>Titre Snapmatic invalide</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Changer le titre</translation> <translation>Changer le titre</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1614,20 +1614,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation> <translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Supprimer la sélection</translation> <translation>Supprimer la sélection</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Supprimer la sélection ?</translation> <translation>Supprimer la sélection ?</translation>
</message> </message>
@ -1637,7 +1637,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation> <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="525"/> <location filename="../ProfileInterface.cpp" line="512"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="471"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
@ -1646,17 +1646,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
<context> <context>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Font</source> <source>Font</source>
<translation>Police</translation> <translation type="vanished">Police</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Selected Font: %1</source> <source>Selected Font: %1</source>
<translation>Police sélectionnée : %1</translation> <translation type="vanished">Police sélectionnée : %1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="144"/> <location filename="../main.cpp" line="136"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source> <source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;Bienvenue sur %1!&lt;/h4&gt;Voulez-vous configurer %1 avant de l&apos;utiliser t?</translation> <translation>&lt;h4&gt;Bienvenue sur %1!&lt;/h4&gt;Voulez-vous configurer %1 avant de l&apos;utiliser t?</translation>
</message> </message>
@ -1734,7 +1732,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer</translation> <translation>Supprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1667"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exporter</translation> <translation>&amp;Exporter</translation>
</message> </message>
@ -1825,32 +1823,32 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible de supprimer %1</translation> <translation>Impossible de supprimer %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1666"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Voir</translation> <translation>&amp;Voir</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1668"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Supprimer</translation> <translation>&amp;Supprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1670"/> <location filename="../ProfileInterface.cpp" line="1677"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Sélectionner</translation> <translation>&amp;Sélectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation> <translation>&amp;Déselectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Sélectionner to&amp;ut</translation> <translation>Sélectionner to&amp;ut</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation> <translation>&amp;Déselectionner tout</translation>
</message> </message>
@ -1864,8 +1862,8 @@ 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="226"/> <location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source> <source>Snapmatic Properties</source>
<translation>Propriétés Snapmatic</translation> <translation>Propriétés Snapmatic</translation>
@ -1906,8 +1904,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Meme</translation> <translation>Meme</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Titre Snapmatic</translation> <translation>Titre Snapmatic</translation>
</message> </message>
@ -1917,30 +1915,30 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Valeurs Snapmatic</translation> <translation>Valeurs Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="287"/> <location filename="../SnapmaticEditor.cpp" line="286"/>
<source>Crew: %1 (%2)</source> <source>Crew: %1 (%2)</source>
<translation>Crew : %1 (%2)</translation> <translation>Crew : %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="267"/> <location filename="../SnapmaticEditor.cpp" line="266"/>
<source>Title: %1 (%2)</source> <source>Title: %1 (%2)</source>
<translation>Titre : %1 (%2)</translation> <translation>Titre : %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="235"/> <location filename="../SnapmaticEditor.cpp" line="234"/>
<source>Players: %1 (%2)</source> <source>Players: %1 (%2)</source>
<comment>Multiple Player are inserted here</comment> <comment>Multiple Player are inserted here</comment>
<translation>Joueurs : %1 (%2)</translation> <translation>Joueurs : %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="239"/> <location filename="../SnapmaticEditor.cpp" line="238"/>
<source>Player: %1 (%2)</source> <source>Player: %1 (%2)</source>
<comment>One Player is inserted here</comment> <comment>One Player is inserted here</comment>
<translation>Joueur : %1 (%2)</translation> <translation>Joueur : %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>Appropriate: %1</source> <source>Appropriate: %1</source>
<translation>Valide : %1</translation> <translation>Valide : %1</translation>
</message> </message>
@ -1980,21 +1978,21 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>A&amp;nnuler</translation> <translation>A&amp;nnuler</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="231"/> <location filename="../SnapmaticEditor.cpp" line="230"/>
<location filename="../SnapmaticEditor.cpp" line="266"/> <location filename="../SnapmaticEditor.cpp" line="265"/>
<location filename="../SnapmaticEditor.cpp" line="286"/> <location filename="../SnapmaticEditor.cpp" line="285"/>
<source>Edit</source> <source>Edit</source>
<translation>Éditer</translation> <translation>Éditer</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<source>Yes</source> <source>Yes</source>
<comment>Yes, should work fine</comment> <comment>Yes, should work fine</comment>
<translatorcomment>Oui, devrait fonctionner</translatorcomment> <translatorcomment>Oui, devrait fonctionner</translatorcomment>
<translation>Oui</translation> <translation>Oui</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>No</source> <source>No</source>
<comment>No, could lead to issues</comment> <comment>No, could lead to issues</comment>
<translatorcomment>Non, pourrait causer des erreurs</translatorcomment> <translatorcomment>Non, pourrait causer des erreurs</translatorcomment>
@ -2017,27 +2015,27 @@ 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="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source> <source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation> <translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Nouveau titre Snapmatic :</translation> <translation>Nouveau titre Snapmatic :</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Crew Snapmatic</translation> <translation>Crew Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Nouveau crew Snapmatic :</translation> <translation>Nouveau crew Snapmatic :</translation>
</message> </message>
@ -2045,66 +2043,66 @@ Appuyer sur 1 pour le mode par défaut</translation>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="464"/> <location filename="../SnapmaticPicture.cpp" line="467"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>PHOTO - %1</translation> <translation>PHOTO - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="690"/> <location filename="../SnapmaticPicture.cpp" line="693"/>
<source>open file %1</source> <source>open file %1</source>
<translation>ouverture du fichier %1</translation> <translation>ouverture du fichier %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="706"/> <location filename="../SnapmaticPicture.cpp" line="709"/>
<source>header not exists</source> <source>header not exists</source>
<translation>les headers n&apos;existent pas</translation> <translation>les headers n&apos;existent pas</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="710"/> <location filename="../SnapmaticPicture.cpp" line="713"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>les headers sont incorrects</translation> <translation>les headers sont incorrects</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="714"/> <location filename="../SnapmaticPicture.cpp" line="717"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>l&apos;image n&apos;existe pas (%1)</translation> <translation>l&apos;image n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="718"/> <location filename="../SnapmaticPicture.cpp" line="721"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>le JSON n&apos;existe pas (%1)</translation> <translation>le JSON n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="722"/> <location filename="../SnapmaticPicture.cpp" line="725"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>le titre n&apos;existe pas (%1)</translation> <translation>le titre n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="726"/> <location filename="../SnapmaticPicture.cpp" line="729"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>la description n&apos;existe pas (%1)</translation> <translation>la description n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="740"/> <location filename="../SnapmaticPicture.cpp" line="743"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>lecture du fichier %1 : %2</translation> <translation>lecture du fichier %1 : %2</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="730"/> <location filename="../SnapmaticPicture.cpp" line="733"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON incomplet ou incorrect</translation> <translation>JSON incomplet ou incorrect</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="734"/> <location filename="../SnapmaticPicture.cpp" line="737"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON incomplet</translation> <translation>JSON incomplet</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="738"/> <location filename="../SnapmaticPicture.cpp" line="741"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON incorrect</translation> <translation>JSON incorrect</translation>
</message> </message>
@ -2184,52 +2182,52 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>%1 n&apos;a pas pu être rendu visible en jeu</translation> <translation>%1 n&apos;a pas pu être rendu visible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1622"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Édi&amp;ter</translation> <translation>Édi&amp;ter</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1625"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>&amp;Visible en jeu</translation> <translation>&amp;Visible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1629"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>&amp;Invisible en jeu</translation> <translation>&amp;Invisible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1636"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exporter</translation> <translation>&amp;Exporter</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1639"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Voir</translation> <translation>&amp;Voir</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>S&amp;upprimer</translation> <translation>S&amp;upprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1644"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Sélectionner</translation> <translation>&amp;Sélectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation> <translation>&amp;Déselectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1641"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Sélectionner &amp;tout</translation> <translation>Sélectionner &amp;tout</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation> <translation>&amp;Déselectionner tout</translation>
</message> </message>
@ -2237,22 +2235,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
<context> <context>
<name>TelemetryDialog</name> <name>TelemetryDialog</name>
<message> <message>
<location filename="../main.cpp" line="173"/> <location filename="../main.cpp" line="165"/>
<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&apos;utilisation ?</translation> <translation>Voulez-vous aider au développement de %1 en transmettant vos données d&apos;utilisation ?</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="174"/> <location filename="../main.cpp" line="166"/>
<source>%1 User Statistics</source> <source>%1 User Statistics</source>
<translation>Statistiques utilisateurs %1</translation> <translation>Statistiques utilisateurs %1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="178"/> <location filename="../main.cpp" line="170"/>
<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&apos;utilisation.</translation> <translation>Oui, je veux partager mes données d&apos;utilisation.</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="187"/> <location filename="../main.cpp" line="179"/>
<source>&amp;OK</source> <source>&amp;OK</source>
<translation>&amp;OK</translation> <translation>&amp;OK</translation>
</message> </message>
@ -2456,18 +2454,18 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="645"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation type="unfinished"></translation> <translation>%1 - Nouvelles</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Visible en jeu</translation> <translation>Visible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Invisible en jeu</translation> <translation>Invisible en jeu</translation>

Binary file not shown.

View File

@ -201,21 +201,21 @@ Pictures and Savegames</source>
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../PictureDialog.cpp" line="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source> <source>Snapmatic Image Editor</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<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="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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>
@ -353,7 +353,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="733"/> <location filename="../ProfileInterface.cpp" line="720"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment> <translatorcomment> . !</translatorcomment>
@ -361,7 +361,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="752"/> <location filename="../ProfileInterface.cpp" line="739"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment> <translatorcomment> . !</translatorcomment>
@ -1020,43 +1020,43 @@ Y: %2</translation>
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="167"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1630"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation> (&amp;P)...</translation> <translation> (&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="168"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1638"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation> (&amp;S)...</translation> <translation> (&amp;S)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="170"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1631"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation> (&amp;E)...</translation> <translation> (&amp;E)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="171"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1632"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation> (&amp;O)...</translation> <translation> (&amp;O)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="173"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1634"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation> (&amp;M)...</translation> <translation> (&amp;M)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1628"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>JSON (&amp;J)...</translation> <translation>JSON (&amp;J)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="603"/> <location filename="../PictureDialog.cpp" line="496"/>
<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>
@ -1065,37 +1065,37 @@ Arrow Keys - Navigate</source>
- </translation> - </translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<source>Snapmatic Picture Viewer</source> <source>Snapmatic Picture Viewer</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="829"/> <location filename="../PictureDialog.cpp" line="722"/>
<location filename="../SnapmaticEditor.cpp" line="247"/> <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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="805"/> <location filename="../PictureDialog.cpp" line="698"/>
<source>No Crew</source> <source>No Crew</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<source>Unknown Location</source> <source>Unknown Location</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="763"/> <location filename="../PictureDialog.cpp" line="656"/>
<source>Avatar Preview Mode <source>Avatar Preview Mode
Press 1 for Default View</source> Press 1 for Default View</source>
<translation> <translation>
@ -1306,23 +1306,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="508"/> <location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="509"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="574"/> <location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<location filename="../ProfileInterface.cpp" line="934"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="982"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<location filename="../ProfileInterface.cpp" line="1235"/>
<source>Import...</source> <source>Import...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
@ -1339,14 +1339,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="528"/> <location filename="../ProfileInterface.cpp" line="515"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="529"/> <location filename="../ProfileInterface.cpp" line="516"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="474"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation> (**)</translation> <translation> (**)</translation>
@ -1354,75 +1354,75 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1 </translation> <translation> %1 </translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1 </translation> <translation> %1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="85"/> <location filename="../ProfileInterface.cpp" line="84"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation> : %2 %1</translation> <translation> : %2 %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="185"/> <location filename="../ProfileInterface.cpp" line="184"/>
<source>Loading...</source> <source>Loading...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt; &lt;/h4&gt;%1</translation> <translation>&lt;h4&gt; &lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="524"/> <location filename="../ProfileInterface.cpp" line="511"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="525"/> <location filename="../ProfileInterface.cpp" line="512"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="471"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V로 (*.g5e)</translation> <translation>GTA V로 (*.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="526"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="472"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation> (SGTA*)</translation> <translation> (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="527"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="473"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation> (PGTA*)</translation> <translation> (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="562"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="575"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="592"/> <location filename="../ProfileInterface.cpp" line="579"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>%2 %1 </translation> <translation>%2 %1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1431,91 +1431,91 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="514"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="530"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="934"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation> %1 </translation> <translation> %1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="998"/> <location filename="../ProfileInterface.cpp" line="993"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation> . PGTA로 .g5e로 </translation> <translation> . PGTA로 .g5e로 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>uid %1() . uid ?</translation> <translation>uid %1() . uid ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation> . </translation> <translation> . </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation> . </translation> <translation> . </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1235"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation> . </translation> <translation> . </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1299"/> <location filename="../ProfileInterface.cpp" line="1306"/>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<location filename="../ProfileInterface.cpp" line="1382"/> <location filename="../ProfileInterface.cpp" line="1389"/>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1322"/> <location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1340"/> <location filename="../ProfileInterface.cpp" line="1347"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA </translation> <translation>JPG GTA </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1330"/>
<location filename="../ProfileInterface.cpp" line="1345"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>JPG </translation> <translation>JPG </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1331"/>
<location filename="../ProfileInterface.cpp" line="1349"/> <location filename="../ProfileInterface.cpp" line="1356"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>GTA </translation> <translation>GTA </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 %2 &lt;br&gt;&lt;br&gt;JPG &lt;br&gt;GTA </translation> <translation>%1 %2 &lt;br&gt;&lt;br&gt;JPG &lt;br&gt;GTA </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1383"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1524,45 +1524,45 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> ?</translation> <translation> ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1573,84 +1573,84 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2001"/> <location filename="../ProfileInterface.cpp" line="2008"/>
<location filename="../ProfileInterface.cpp" line="2104"/> <location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2242"/>
<location filename="../ProfileInterface.cpp" line="2341"/> <location filename="../ProfileInterface.cpp" line="2348"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2002"/> <location filename="../ProfileInterface.cpp" line="2009"/>
<location filename="../ProfileInterface.cpp" line="2021"/> <location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2105"/> <location filename="../ProfileInterface.cpp" line="2112"/>
<location filename="../ProfileInterface.cpp" line="2124"/> <location filename="../ProfileInterface.cpp" line="2131"/>
<location filename="../ProfileInterface.cpp" line="2236"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2255"/> <location filename="../ProfileInterface.cpp" line="2262"/>
<location filename="../ProfileInterface.cpp" line="2342"/> <location filename="../ProfileInterface.cpp" line="2349"/>
<location filename="../ProfileInterface.cpp" line="2361"/> <location filename="../ProfileInterface.cpp" line="2368"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>%2 %1 </translation> <translation>%2 %1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
@ -1665,17 +1665,15 @@ Press 1 for Default View</source>
<context> <context>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Font</source> <source>Font</source>
<translation></translation> <translation type="vanished"></translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Selected Font: %1</source> <source>Selected Font: %1</source>
<translation> : %1</translation> <translation type="vanished"> : %1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="144"/> <location filename="../main.cpp" line="136"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source> <source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;%1 !&lt;/h4&gt;%1 ?</translation> <translation>&lt;h4&gt;%1 !&lt;/h4&gt;%1 ?</translation>
</message> </message>
@ -1753,37 +1751,37 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1666"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1667"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1668"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1670"/> <location filename="../ProfileInterface.cpp" line="1677"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation> (&amp;A)</translation> <translation> (&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
@ -1883,8 +1881,8 @@ 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="226"/> <location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source> <source>Snapmatic Properties</source>
<translation> </translation> <translation> </translation>
@ -1976,8 +1974,8 @@ 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="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source> <source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>I/O </translation> <translation>I/O </translation>
@ -1988,77 +1986,77 @@ Press 1 for Default View</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation> :</translation> <translation> :</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation> :</translation> <translation> :</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="231"/> <location filename="../SnapmaticEditor.cpp" line="230"/>
<location filename="../SnapmaticEditor.cpp" line="266"/> <location filename="../SnapmaticEditor.cpp" line="265"/>
<location filename="../SnapmaticEditor.cpp" line="286"/> <location filename="../SnapmaticEditor.cpp" line="285"/>
<source>Edit</source> <source>Edit</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="235"/> <location filename="../SnapmaticEditor.cpp" line="234"/>
<source>Players: %1 (%2)</source> <source>Players: %1 (%2)</source>
<comment>Multiple Player are inserted here</comment> <comment>Multiple Player are inserted here</comment>
<translatorcomment> .</translatorcomment> <translatorcomment> .</translatorcomment>
<translation>: %1 (%2)</translation> <translation>: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="239"/> <location filename="../SnapmaticEditor.cpp" line="238"/>
<source>Player: %1 (%2)</source> <source>Player: %1 (%2)</source>
<comment>One Player is inserted here</comment> <comment>One Player is inserted here</comment>
<translatorcomment> .</translatorcomment> <translatorcomment> .</translatorcomment>
<translation>: %1 (%2)</translation> <translation>: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="267"/> <location filename="../SnapmaticEditor.cpp" line="266"/>
<source>Title: %1 (%2)</source> <source>Title: %1 (%2)</source>
<translation>: %1 (%2)</translation> <translation>: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>Appropriate: %1</source> <source>Appropriate: %1</source>
<translation>: %1</translation> <translation>: %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<source>Yes</source> <source>Yes</source>
<comment>Yes, should work fine</comment> <comment>Yes, should work fine</comment>
<translatorcomment>, .</translatorcomment> <translatorcomment>, .</translatorcomment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>No</source> <source>No</source>
<comment>No, could lead to issues</comment> <comment>No, could lead to issues</comment>
<translatorcomment>, .</translatorcomment> <translatorcomment>, .</translatorcomment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="287"/> <location filename="../SnapmaticEditor.cpp" line="286"/>
<source>Crew: %1 (%2)</source> <source>Crew: %1 (%2)</source>
<translation>: %1 (%2)</translation> <translation>: %1 (%2)</translation>
</message> </message>
@ -2067,64 +2065,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="730"/> <location filename="../SnapmaticPicture.cpp" line="733"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON이 </translation> <translation>JSON이 </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="734"/> <location filename="../SnapmaticPicture.cpp" line="737"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON이 </translation> <translation>JSON이 </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="738"/> <location filename="../SnapmaticPicture.cpp" line="741"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation> JSON </translation> <translation> JSON </translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="464"/> <location filename="../SnapmaticPicture.cpp" line="467"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation> - %1</translation> <translation> - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="690"/> <location filename="../SnapmaticPicture.cpp" line="693"/>
<source>open file %1</source> <source>open file %1</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="706"/> <location filename="../SnapmaticPicture.cpp" line="709"/>
<source>header not exists</source> <source>header not exists</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="710"/> <location filename="../SnapmaticPicture.cpp" line="713"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="714"/> <location filename="../SnapmaticPicture.cpp" line="717"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation> . (%1)</translation> <translation> . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="718"/> <location filename="../SnapmaticPicture.cpp" line="721"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON이 . (%1)</translation> <translation>JSON이 . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="722"/> <location filename="../SnapmaticPicture.cpp" line="725"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation> . (%1)</translation> <translation> . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="726"/> <location filename="../SnapmaticPicture.cpp" line="729"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation> . (%1)</translation> <translation> . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="740"/> <location filename="../SnapmaticPicture.cpp" line="743"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translatorcomment>%2 : JSON이 </translatorcomment> <translatorcomment>%2 : JSON이 </translatorcomment>
@ -2186,52 +2184,52 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1622"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>(&amp;T)</translation> <translation>(&amp;T)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1625"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation> (&amp;I)</translation> <translation> (&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1629"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation> (&amp;I)</translation> <translation> (&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1636"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1639"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1644"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1641"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation> (&amp;A)</translation> <translation> (&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
@ -2259,22 +2257,22 @@ Press 1 for Default View</source>
<context> <context>
<name>TelemetryDialog</name> <name>TelemetryDialog</name>
<message> <message>
<location filename="../main.cpp" line="173"/> <location filename="../main.cpp" line="165"/>
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source> <source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
<translation> %1() ?</translation> <translation> %1() ?</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="174"/> <location filename="../main.cpp" line="166"/>
<source>%1 User Statistics</source> <source>%1 User Statistics</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="178"/> <location filename="../main.cpp" line="170"/>
<source>Yes, I want include personal usage data.</source> <source>Yes, I want include personal usage data.</source>
<translation>, .</translation> <translation>, .</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="187"/> <location filename="../main.cpp" line="179"/>
<source>&amp;OK</source> <source>&amp;OK</source>
<translation>(&amp;O)</translation> <translation>(&amp;O)</translation>
</message> </message>
@ -2419,7 +2417,7 @@ Press 1 for Default View</source>
<location filename="../UserInterface.cpp" line="195"/> <location filename="../UserInterface.cpp" line="195"/>
<location filename="../UserInterface.cpp" line="732"/> <location filename="../UserInterface.cpp" line="732"/>
<source>Select GTA V Folder...</source> <source>Select GTA V Folder...</source>
<translation>GTA V </translation> <translation>GTA V ...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="330"/> <location filename="../UserInterface.ui" line="330"/>
@ -2452,15 +2450,15 @@ Press 1 for Default View</source>
<translation> (&amp;P)...</translation> <translation> (&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation> </translation> <translation> </translation>
@ -2493,7 +2491,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="645"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation type="unfinished"></translation> <translation>%1 - </translation>
</message> </message>
</context> </context>
</TS> </TS>

Binary file not shown.

View File

@ -180,8 +180,8 @@ Pictures and Savegames</source>
<context> <context>
<name>ImageEditorDialog</name> <name>ImageEditorDialog</name>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../PictureDialog.cpp" line="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source> <source>Snapmatic Image Editor</source>
@ -213,13 +213,13 @@ Pictures and Savegames</source>
<translation>&amp;Закрыть</translation> <translation>&amp;Закрыть</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<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="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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>
@ -367,14 +367,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="733"/> <location filename="../ProfileInterface.cpp" line="720"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Свой Аватар</translation> <translation>Свой Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="752"/> <location filename="../ProfileInterface.cpp" line="739"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Своя Картинка</translation> <translation>Своя Картинка</translation>
@ -1023,37 +1023,37 @@ Y: %2</translation>
<translation>Экспортировать</translation> <translation>Экспортировать</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="167"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1630"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Экспортировать как &amp;картинку...</translation> <translation>Экспортировать как &amp;картинку...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="168"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1638"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Экспортировать как &amp;Snapmatic...</translation> <translation>Экспортировать как &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="171"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1632"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписать картинку...</translation> <translation>&amp;Перезаписать картинку...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="170"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1631"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>&amp;Изменить свойства...</translation> <translation>&amp;Изменить свойства...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="173"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1634"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>Открыть &amp;карту...</translation> <translation>Открыть &amp;карту...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="603"/> <location filename="../PictureDialog.cpp" line="496"/>
<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>
@ -1062,39 +1062,39 @@ Arrow Keys - Navigate</source>
Стрелки - Навигация</translation> Стрелки - Навигация</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="805"/> <location filename="../PictureDialog.cpp" line="698"/>
<source>No Crew</source> <source>No Crew</source>
<translation>Вне банды</translation> <translation>Вне банды</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="829"/> <location filename="../PictureDialog.cpp" line="722"/>
<location filename="../SnapmaticEditor.cpp" line="247"/> <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="763"/> <location filename="../PictureDialog.cpp" line="656"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<source>Unknown Location</source> <source>Unknown Location</source>
<translation>Неизвестное место</translation> <translation>Неизвестное место</translation>
</message> </message>
@ -1196,8 +1196,8 @@ Press 1 for Default View</source>
<translation>Картинки Snapmatic (PGTA*)</translation> <translation>Картинки Snapmatic (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1628"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>Открыть &amp;редактор JSON...</translation> <translation>Открыть &amp;редактор JSON...</translation>
</message> </message>
@ -1294,17 +1294,17 @@ Press 1 for Default View</source>
<translation>&amp;Закрыть</translation> <translation>&amp;Закрыть</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="185"/> <location filename="../ProfileInterface.cpp" line="184"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Загрузка...</translation> <translation>Загрузка...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Загрузчик Snapmatic</translation> <translation>Загрузчик Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line <translatorcomment>Change wording if the %1 is not a multiline beginning at new line
</translatorcomment> </translatorcomment>
@ -1313,23 +1313,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="508"/> <location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="509"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="574"/> <location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<location filename="../ProfileInterface.cpp" line="934"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="982"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<location filename="../ProfileInterface.cpp" line="1235"/>
<source>Import...</source> <source>Import...</source>
<translation>Импортировать...</translation> <translation>Импортировать...</translation>
</message> </message>
@ -1344,13 +1344,13 @@ Press 1 for Default View</source>
<translation>Импортировать</translation> <translation>Импортировать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="526"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="472"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Файлы сохранения (SGTA*)</translation> <translation>Файлы сохранения (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="527"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="473"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Картинка Snapmatic (PGTA*)</translation> <translation>Картинка Snapmatic (PGTA*)</translation>
@ -1358,19 +1358,19 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="529"/> <location filename="../ProfileInterface.cpp" line="516"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="474"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Все файлы (**)</translation> <translation>Все файлы (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="575"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="592"/> <location filename="../ProfileInterface.cpp" line="579"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Импортируются файлы %1 из %2</translation> <translation>Импортируются файлы %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1379,169 +1379,169 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="514"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Не удалось загрузить картинку Snapmatic</translation> <translation>Не удалось загрузить картинку Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="530"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Не удалось загрузить файл сохранения</translation> <translation>Не удалось загрузить файл сохранения</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="562"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Выбранный файл неверен</translation> <translation>Выбранный файл неверен</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="85"/> <location filename="../ProfileInterface.cpp" line="84"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation>Включенные картинки: %1 из %2</translation> <translation>Включенные картинки: %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="524"/> <location filename="../ProfileInterface.cpp" line="511"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Файлы для импорта (%1)</translation> <translation>Файлы для импорта (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="528"/> <location filename="../ProfileInterface.cpp" line="515"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Все файлы изображений (%1)</translation> <translation>Все файлы изображений (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Не удалось открыть %1, файл не может быть открыт</translation> <translation>Не удалось открыть %1, файл не может быть открыт</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation> <translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="934"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Не получилось импортировать %1, не удалось определить формат файла</translation> <translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation> <translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation> <translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation> <translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1235"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation> <translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1322"/> <location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1340"/> <location filename="../ProfileInterface.cpp" line="1347"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>Картинки JPG и GTA Snapmatic</translation> <translation>Картинки JPG и GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1330"/>
<location filename="../ProfileInterface.cpp" line="1345"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Только картинки JPG</translation> <translation>Только картинки JPG</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1331"/>
<location filename="../ProfileInterface.cpp" line="1349"/> <location filename="../ProfileInterface.cpp" line="1356"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Только GTA Snapmatic</translation> <translation>Только GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1383"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Подготовка к экспорту...</translation> <translation>Подготовка к экспорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не выделены ни один Snapmatic или сохранение</translation> <translation>Не выделены ни один Snapmatic или сохранение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Снять выделение</translation> <translation>Снять выделение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation> <translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="998"/> <location filename="../ProfileInterface.cpp" line="993"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Подготовка данных к импорту...</translation> <translation>Подготовка данных к импорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Пометить как Аватар</translation> <translation>Пометить как Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Не выделена ни одна картинка Snapmatic</translation> <translation>Не выделена ни одна картинка Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2001"/> <location filename="../ProfileInterface.cpp" line="2008"/>
<location filename="../ProfileInterface.cpp" line="2104"/> <location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2242"/>
<location filename="../ProfileInterface.cpp" line="2341"/> <location filename="../ProfileInterface.cpp" line="2348"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Пропатчить выделенные...</translation> <translation>Пропатчить выделенные...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2002"/> <location filename="../ProfileInterface.cpp" line="2009"/>
<location filename="../ProfileInterface.cpp" line="2021"/> <location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2105"/> <location filename="../ProfileInterface.cpp" line="2112"/>
<location filename="../ProfileInterface.cpp" line="2124"/> <location filename="../ProfileInterface.cpp" line="2131"/>
<location filename="../ProfileInterface.cpp" line="2236"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2255"/> <location filename="../ProfileInterface.cpp" line="2262"/>
<location filename="../ProfileInterface.cpp" line="2342"/> <location filename="../ProfileInterface.cpp" line="2349"/>
<location filename="../ProfileInterface.cpp" line="2361"/> <location filename="../ProfileInterface.cpp" line="2368"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Изменяется файл %1 из %2</translation> <translation>Изменяется файл %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1551,86 +1551,86 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translatorcomment>Можно использовать слово &quot;приписать&quot;</translatorcomment> <translatorcomment>Можно использовать слово &quot;приписать&quot;</translatorcomment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation> <translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Помечание</translation> <translation>Помечание</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Изменить игроков...</translation> <translation>Изменить игроков...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Измение игроков</translation> <translation>Измение игроков</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Изменить банду...</translation> <translation>Изменить банду...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Введённый идентификатор банды не верен</translation> <translation>Введённый идентификатор банды не верен</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Изменение банды</translation> <translation>Изменение банды</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Изменить заголовок...</translation> <translation>Изменить заголовок...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Введённый заголовок не верен</translation> <translation>Введённый заголовок не верен</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Изменение заголовка</translation> <translation>Изменение заголовка</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Эскпортировать картинки Snapmatic%2&lt;br&gt;&lt;br&gt;Картинки JPG можно открыть любым просмотрщиком&lt;br&gt;Картинки формата GTA Snapmatic можно снова импортировать в игру&lt;br&gt;&lt;br&gt;Экспортировать как:</translation> <translation>%1Эскпортировать картинки Snapmatic%2&lt;br&gt;&lt;br&gt;Картинки JPG можно открыть любым просмотрщиком&lt;br&gt;Картинки формата GTA Snapmatic можно снова импортировать в игру&lt;br&gt;&lt;br&gt;Экспортировать как:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1299"/> <location filename="../ProfileInterface.cpp" line="1306"/>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<location filename="../ProfileInterface.cpp" line="1382"/> <location filename="../ProfileInterface.cpp" line="1389"/>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Экпортировать выделенное...</translation> <translation>Экпортировать выделенное...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1651,7 +1651,7 @@ Press 1 for Default View</source>
<translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation> <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="525"/> <location filename="../ProfileInterface.cpp" line="512"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="471"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
@ -1660,17 +1660,15 @@ Press 1 for Default View</source>
<context> <context>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Font</source> <source>Font</source>
<translation>Шрифт</translation> <translation type="vanished">Шрифт</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Selected Font: %1</source> <source>Selected Font: %1</source>
<translation>Выбранный шрифт: %1</translation> <translation type="vanished">Выбранный шрифт: %1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="144"/> <location filename="../main.cpp" line="136"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source> <source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;Добро пожаловать в %1!&lt;/h4&gt;Хочешь изменить настройки %1 перед использованием?</translation> <translation>&lt;h4&gt;Добро пожаловать в %1!&lt;/h4&gt;Хочешь изменить настройки %1 перед использованием?</translation>
</message> </message>
@ -1791,32 +1789,32 @@ Press 1 for Default View</source>
<translation>Не удалось удалить сохранение %1</translation> <translation>Не удалось удалить сохранение %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1666"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Просмотр</translation> <translation>&amp;Просмотр</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1668"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Удалить</translation> <translation>&amp;Удалить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1670"/> <location filename="../ProfileInterface.cpp" line="1677"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Выбрать</translation> <translation>&amp;Выбрать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>Сн&amp;ять выбор</translation> <translation>Сн&amp;ять выбор</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation> <translation>В&amp;ыбрать все</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation> <translation>Снять выбо&amp;р со всех</translation>
</message> </message>
@ -1826,7 +1824,7 @@ Press 1 for Default View</source>
<translation>Копировать сохранение</translation> <translation>Копировать сохранение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1667"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Экспортировать</translation> <translation>&amp;Экспортировать</translation>
</message> </message>
@ -1878,8 +1876,8 @@ 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="226"/> <location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source> <source>Snapmatic Properties</source>
<translation>Свойства Snapmatic</translation> <translation>Свойства Snapmatic</translation>
@ -1920,7 +1918,7 @@ Press 1 for Default View</source>
<translation>Значения в Snapmatic</translation> <translation>Значения в Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="287"/> <location filename="../SnapmaticEditor.cpp" line="286"/>
<source>Crew: %1 (%2)</source> <source>Crew: %1 (%2)</source>
<translation>Банда: %1 (%2)</translation> <translation>Банда: %1 (%2)</translation>
</message> </message>
@ -1930,31 +1928,31 @@ Press 1 for Default View</source>
<translation>Meme</translation> <translation>Meme</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Заголовок Snapmatic</translation> <translation>Заголовок Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="267"/> <location filename="../SnapmaticEditor.cpp" line="266"/>
<source>Title: %1 (%2)</source> <source>Title: %1 (%2)</source>
<translation>Заголовок: %1 (%2)</translation> <translation>Заголовок: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="235"/> <location filename="../SnapmaticEditor.cpp" line="234"/>
<source>Players: %1 (%2)</source> <source>Players: %1 (%2)</source>
<comment>Multiple Player are inserted here</comment> <comment>Multiple Player are inserted here</comment>
<translation>Игроки: %1 (%2)</translation> <translation>Игроки: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="239"/> <location filename="../SnapmaticEditor.cpp" line="238"/>
<source>Player: %1 (%2)</source> <source>Player: %1 (%2)</source>
<comment>One Player is inserted here</comment> <comment>One Player is inserted here</comment>
<translation>Игрок: %1 (%2)</translation> <translation>Игрок: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>Appropriate: %1</source> <source>Appropriate: %1</source>
<translation>Подходит: %1</translation> <translation>Подходит: %1</translation>
</message> </message>
@ -1994,20 +1992,20 @@ Press 1 for Default View</source>
<translation>&amp;Отмена</translation> <translation>&amp;Отмена</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="231"/> <location filename="../SnapmaticEditor.cpp" line="230"/>
<location filename="../SnapmaticEditor.cpp" line="266"/> <location filename="../SnapmaticEditor.cpp" line="265"/>
<location filename="../SnapmaticEditor.cpp" line="286"/> <location filename="../SnapmaticEditor.cpp" line="285"/>
<source>Edit</source> <source>Edit</source>
<translation>Правка</translation> <translation>Правка</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<source>Yes</source> <source>Yes</source>
<comment>Yes, should work fine</comment> <comment>Yes, should work fine</comment>
<translation>Да</translation> <translation>Да</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>No</source> <source>No</source>
<comment>No, could lead to issues</comment> <comment>No, could lead to issues</comment>
<translation>Нет</translation> <translation>Нет</translation>
@ -2029,27 +2027,27 @@ 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="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source> <source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation> <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Новый заголовок Snapmatic:</translation> <translation>Новый заголовок Snapmatic:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Банда на Snapmatic</translation> <translation>Банда на Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Новая банда на Snapmatic:</translation> <translation>Новая банда на Snapmatic:</translation>
</message> </message>
@ -2057,66 +2055,66 @@ Press 1 for Default View</source>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="464"/> <location filename="../SnapmaticPicture.cpp" line="467"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>ФОТО - %1</translation> <translation>ФОТО - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="690"/> <location filename="../SnapmaticPicture.cpp" line="693"/>
<source>open file %1</source> <source>open file %1</source>
<translation>Открыть файл %1</translation> <translation>Открыть файл %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="706"/> <location filename="../SnapmaticPicture.cpp" line="709"/>
<source>header not exists</source> <source>header not exists</source>
<translation>Отсутствует шапка (header)</translation> <translation>Отсутствует шапка (header)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="710"/> <location filename="../SnapmaticPicture.cpp" line="713"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>Шапка (header) повреждена</translation> <translation>Шапка (header) повреждена</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="714"/> <location filename="../SnapmaticPicture.cpp" line="717"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>Картинки не существует (%1)</translation> <translation>Картинки не существует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="718"/> <location filename="../SnapmaticPicture.cpp" line="721"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON не существует (%1)</translation> <translation>JSON не существует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="722"/> <location filename="../SnapmaticPicture.cpp" line="725"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>Заголовок отсутствует (%1)</translation> <translation>Заголовок отсутствует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="726"/> <location filename="../SnapmaticPicture.cpp" line="729"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>Описание отсутствует (%1)</translation> <translation>Описание отсутствует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="740"/> <location filename="../SnapmaticPicture.cpp" line="743"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>Чтение из файла %1 из-за %2</translation> <translation>Чтение из файла %1 из-за %2</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="730"/> <location filename="../SnapmaticPicture.cpp" line="733"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON не полный и повреждён</translation> <translation>JSON не полный и повреждён</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="734"/> <location filename="../SnapmaticPicture.cpp" line="737"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON частично отсутствует</translation> <translation>JSON частично отсутствует</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="738"/> <location filename="../SnapmaticPicture.cpp" line="741"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON повреждён</translation> <translation>JSON повреждён</translation>
</message> </message>
@ -2186,52 +2184,52 @@ Press 1 for Default View</source>
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation> <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1622"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>&amp;Правка</translation> <translation>&amp;Правка</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1625"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>Показывать в &amp;игре</translation> <translation>Показывать в &amp;игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1629"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>Ск&amp;рыть в игре</translation> <translation>Ск&amp;рыть в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1636"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Экспорт</translation> <translation>&amp;Экспорт</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1639"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>По&amp;казать</translation> <translation>По&amp;казать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>У&amp;далить</translation> <translation>У&amp;далить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1644"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Выделить</translation> <translation>&amp;Выделить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>Сн&amp;ять выделение</translation> <translation>Сн&amp;ять выделение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1641"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation> <translation>В&amp;ыбрать все</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation> <translation>Снять выбо&amp;р со всех</translation>
</message> </message>
@ -2249,22 +2247,22 @@ Press 1 for Default View</source>
<context> <context>
<name>TelemetryDialog</name> <name>TelemetryDialog</name>
<message> <message>
<location filename="../main.cpp" line="173"/> <location filename="../main.cpp" line="165"/>
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source> <source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
<translation>Разрешишь нам собирать статистику о пользовании тобой %1? Это поможет нам в разработке.</translation> <translation>Разрешишь нам собирать статистику о пользовании тобой %1? Это поможет нам в разработке.</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="174"/> <location filename="../main.cpp" line="166"/>
<source>%1 User Statistics</source> <source>%1 User Statistics</source>
<translation>%1 Пользовательская статистика</translation> <translation>%1 Пользовательская статистика</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="178"/> <location filename="../main.cpp" line="170"/>
<source>Yes, I want include personal usage data.</source> <source>Yes, I want include personal usage data.</source>
<translation>Да, передавать данные о пользовании программой.</translation> <translation>Да, передавать данные о пользовании программой.</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="187"/> <location filename="../main.cpp" line="179"/>
<source>&amp;OK</source> <source>&amp;OK</source>
<translation>&amp;ОК</translation> <translation>&amp;ОК</translation>
</message> </message>
@ -2463,7 +2461,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="645"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation type="unfinished"></translation> <translation>%1 - Новости</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="134"/> <location filename="../UserInterface.ui" line="134"/>
@ -2471,15 +2469,15 @@ Press 1 for Default View</source>
<translation>Пере&amp;загрузить</translation> <translation>Пере&amp;загрузить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Показывать в игре</translation> <translation>Показывать в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Скрыть в игре</translation> <translation>Скрыть в игре</translation>

Binary file not shown.

View File

@ -204,21 +204,21 @@ Pictures and Savegames</source>
<translation>&amp;Закрити</translation> <translation>&amp;Закрити</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../PictureDialog.cpp" line="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<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="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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>
@ -356,14 +356,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="733"/> <location filename="../ProfileInterface.cpp" line="720"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацький Аватар</translation> <translation>Користувацький Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="752"/> <location filename="../ProfileInterface.cpp" line="739"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацьке Зображення</translation> <translation>Користувацьке Зображення</translation>
@ -1010,43 +1010,43 @@ Y: %2</translation>
<translation>&amp;Закрити</translation> <translation>&amp;Закрити</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="167"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1630"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Експортувати як &amp;зображення...</translation> <translation>Експортувати як &amp;зображення...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="168"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1638"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Експортувати як &amp;Snapmatic...</translation> <translation>Експортувати як &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="170"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1631"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>&amp;Змінити властивості...</translation> <translation>&amp;Змінити властивості...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="171"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1632"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписати зображення...</translation> <translation>&amp;Перезаписати зображення...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="173"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1634"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>Відкрити &amp;карту...</translation> <translation>Відкрити &amp;карту...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1628"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>Відкрити редактор &amp;JSON...</translation> <translation>Відкрити редактор &amp;JSON...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="603"/> <location filename="../PictureDialog.cpp" line="496"/>
<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>
@ -1055,37 +1055,37 @@ Arrow Keys - Navigate</source>
Стрілки - Навігація</translation> Стрілки - Навігація</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="829"/> <location filename="../PictureDialog.cpp" line="722"/>
<location filename="../SnapmaticEditor.cpp" line="247"/> <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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="805"/> <location filename="../PictureDialog.cpp" line="698"/>
<source>No Crew</source> <source>No Crew</source>
<translation>Банди немає</translation> <translation>Банди немає</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<source>Unknown Location</source> <source>Unknown Location</source>
<translation>Невідома локація</translation> <translation>Невідома локація</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="763"/> <location filename="../PictureDialog.cpp" line="656"/>
<source>Avatar Preview Mode <source>Avatar Preview Mode
Press 1 for Default View</source> Press 1 for Default View</source>
<translation>Режим для аватарок <translation>Режим для аватарок
@ -1296,23 +1296,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="508"/> <location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="509"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="574"/> <location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<location filename="../ProfileInterface.cpp" line="934"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="982"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<location filename="../ProfileInterface.cpp" line="1235"/>
<source>Import...</source> <source>Import...</source>
<translation>Імпортування...</translation> <translation>Імпортування...</translation>
</message> </message>
@ -1329,14 +1329,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="528"/> <location filename="../ProfileInterface.cpp" line="515"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Файли зображень (%1)</translation> <translation>Файли зображень (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="529"/> <location filename="../ProfileInterface.cpp" line="516"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="474"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Усі файли (**)</translation> <translation>Усі файли (**)</translation>
@ -1344,75 +1344,75 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation> <translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation> <translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="85"/> <location filename="../ProfileInterface.cpp" line="84"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation>Увімкнено фотографії:%1 з%2</translation> <translation>Увімкнено фотографії:%1 з%2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="185"/> <location filename="../ProfileInterface.cpp" line="184"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Завантаження...</translation> <translation>Завантаження...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation> <translation>Snapmatic Loader</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Наступні Snapmatic зображення були відновлені&lt;/h4&gt;%1</translation> <translation>&lt;h4&gt;Наступні Snapmatic зображення були відновлені&lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="524"/> <location filename="../ProfileInterface.cpp" line="511"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Імпортуються файли (%1)</translation> <translation>Імпортуються файли (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="525"/> <location filename="../ProfileInterface.cpp" line="512"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="471"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="526"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="472"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Файли збереження гри (SGTA*)</translation> <translation>Файли збереження гри (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="527"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="473"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic зображення (PGTA*)</translation> <translation>Snapmatic зображення (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="562"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Вибрані недійсні файли</translation> <translation>Вибрані недійсні файли</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="575"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="592"/> <location filename="../ProfileInterface.cpp" line="579"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Імпортується файл %1 з %2 файлів</translation> <translation>Імпортується файл %1 з %2 файлів</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1421,81 +1421,81 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="514"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Не вдалося прочитати Snapmatic картинку</translation> <translation>Не вдалося прочитати Snapmatic картинку</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="530"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Не вдалося прочитати файл збереження гри</translation> <translation>Не вдалося прочитати файл збереження гри</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="934"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation> <translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation> <translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation> <translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation> <translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1235"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation> <translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1299"/> <location filename="../ProfileInterface.cpp" line="1306"/>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<location filename="../ProfileInterface.cpp" line="1382"/> <location filename="../ProfileInterface.cpp" line="1389"/>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Експорт обраних...</translation> <translation>Експорт обраних...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1322"/> <location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1340"/> <location filename="../ProfileInterface.cpp" line="1347"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG картинки і GTA Snapmatic</translation> <translation>JPG картинки і GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1330"/>
<location filename="../ProfileInterface.cpp" line="1345"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Тільки JPG картинки</translation> <translation>Тільки JPG картинки</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1331"/>
<location filename="../ProfileInterface.cpp" line="1349"/> <location filename="../ProfileInterface.cpp" line="1356"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Тільки GTA Snapmatic</translation> <translation>Тільки GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 Експортувати Snapmatic фотографії %2 &lt;br&gt;&lt;br&gt; Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень&lt;br&gt;GTA Snapmatic дає змогу імпортувати зображення в гру&lt;br&gt;&lt;br&gt;Експортувати як:</translation> <translation>%1 Експортувати Snapmatic фотографії %2 &lt;br&gt;&lt;br&gt; Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень&lt;br&gt;GTA Snapmatic дає змогу імпортувати зображення в гру&lt;br&gt;&lt;br&gt;Експортувати як:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1383"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Ініціалізація експорту...</translation> <translation>Ініціалізація експорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1504,45 +1504,45 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation> <translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Видалити вибрані</translation> <translation>Видалити вибрані</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation> <translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation> <translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Не вибрано жодного Snapmatic зображення</translation> <translation>Не вибрано жодного Snapmatic зображення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1552,91 +1552,91 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="998"/> <location filename="../ProfileInterface.cpp" line="993"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Підготувати контент для імпорту ...</translation> <translation>Підготувати контент для імпорту ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation> <translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Позначити як Аватар</translation> <translation>Позначити як Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2001"/> <location filename="../ProfileInterface.cpp" line="2008"/>
<location filename="../ProfileInterface.cpp" line="2104"/> <location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2242"/>
<location filename="../ProfileInterface.cpp" line="2341"/> <location filename="../ProfileInterface.cpp" line="2348"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Вибір патчу...</translation> <translation>Вибір патчу...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2002"/> <location filename="../ProfileInterface.cpp" line="2009"/>
<location filename="../ProfileInterface.cpp" line="2021"/> <location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2105"/> <location filename="../ProfileInterface.cpp" line="2112"/>
<location filename="../ProfileInterface.cpp" line="2124"/> <location filename="../ProfileInterface.cpp" line="2131"/>
<location filename="../ProfileInterface.cpp" line="2236"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2255"/> <location filename="../ProfileInterface.cpp" line="2262"/>
<location filename="../ProfileInterface.cpp" line="2342"/> <location filename="../ProfileInterface.cpp" line="2349"/>
<location filename="../ProfileInterface.cpp" line="2361"/> <location filename="../ProfileInterface.cpp" line="2368"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Патч файлу %1 з %2 файлів</translation> <translation>Патч файлу %1 з %2 файлів</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Якість</translation> <translation>Якість</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Зміна гравців...</translation> <translation>Зміна гравців...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Змінити гравців</translation> <translation>Змінити гравців</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Зміна банди...</translation> <translation>Зміна банди...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation> <translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Змінити банду</translation> <translation>Змінити банду</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Зміна назви...</translation> <translation>Зміна назви...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation> <translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Змінити назву</translation> <translation>Змінити назву</translation>
@ -1650,17 +1650,15 @@ Press 1 for Default View</source>
<context> <context>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Font</source> <source>Font</source>
<translation>Шрифт</translation> <translation type="vanished">Шрифт</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Selected Font: %1</source> <source>Selected Font: %1</source>
<translation>Вибраний шрифт:%1</translation> <translation type="vanished">Вибраний шрифт:%1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="144"/> <location filename="../main.cpp" line="136"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source> <source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;Ласкаво просимо до %1!&lt;/h4&gt;Ви хочете налаштувати %1 перед використанням?</translation> <translation>&lt;h4&gt;Ласкаво просимо до %1!&lt;/h4&gt;Ви хочете налаштувати %1 перед використанням?</translation>
</message> </message>
@ -1738,37 +1736,37 @@ Press 1 for Default View</source>
<translation>Видалити</translation> <translation>Видалити</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1666"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Перегляд</translation> <translation>&amp;Перегляд</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1667"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Експорт</translation> <translation>&amp;Експорт</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1668"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Видалення</translation> <translation>&amp;Видалення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1670"/> <location filename="../ProfileInterface.cpp" line="1677"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Виділення</translation> <translation>&amp;Виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation> <translation>&amp;Зняти виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation> <translation>Вибрати &amp;усі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation> <translation>&amp;Зняти виділення усіх</translation>
</message> </message>
@ -1868,8 +1866,8 @@ 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="226"/> <location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source> <source>Snapmatic Properties</source>
<translation>Властивості Snapmatic</translation> <translation>Властивості Snapmatic</translation>
@ -1961,8 +1959,8 @@ 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="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source> <source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation> <translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
@ -1973,73 +1971,73 @@ Press 1 for Default View</source>
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation> <translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Snapmatic банда</translation> <translation>Snapmatic банда</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Нова Snapmatic банда:</translation> <translation>Нова Snapmatic банда:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Snapmatic назва</translation> <translation>Snapmatic назва</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Новий Snapmatic заголовок:</translation> <translation>Новий Snapmatic заголовок:</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="231"/> <location filename="../SnapmaticEditor.cpp" line="230"/>
<location filename="../SnapmaticEditor.cpp" line="266"/> <location filename="../SnapmaticEditor.cpp" line="265"/>
<location filename="../SnapmaticEditor.cpp" line="286"/> <location filename="../SnapmaticEditor.cpp" line="285"/>
<source>Edit</source> <source>Edit</source>
<translation>Правка</translation> <translation>Правка</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="235"/> <location filename="../SnapmaticEditor.cpp" line="234"/>
<source>Players: %1 (%2)</source> <source>Players: %1 (%2)</source>
<comment>Multiple Player are inserted here</comment> <comment>Multiple Player are inserted here</comment>
<translation>Гравці: %1 (%2)</translation> <translation>Гравці: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="239"/> <location filename="../SnapmaticEditor.cpp" line="238"/>
<source>Player: %1 (%2)</source> <source>Player: %1 (%2)</source>
<comment>One Player is inserted here</comment> <comment>One Player is inserted here</comment>
<translation>Гравець: %1 (%2)</translation> <translation>Гравець: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="267"/> <location filename="../SnapmaticEditor.cpp" line="266"/>
<source>Title: %1 (%2)</source> <source>Title: %1 (%2)</source>
<translation>Назва: %1 (%2)</translation> <translation>Назва: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>Appropriate: %1</source> <source>Appropriate: %1</source>
<translation>Підходить: %1</translation> <translation>Підходить: %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<source>Yes</source> <source>Yes</source>
<comment>Yes, should work fine</comment> <comment>Yes, should work fine</comment>
<translation>Так</translation> <translation>Так</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>No</source> <source>No</source>
<comment>No, could lead to issues</comment> <comment>No, could lead to issues</comment>
<translation>Ні</translation> <translation>Ні</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="287"/> <location filename="../SnapmaticEditor.cpp" line="286"/>
<source>Crew: %1 (%2)</source> <source>Crew: %1 (%2)</source>
<translation>Банда: %1 (%2)</translation> <translation>Банда: %1 (%2)</translation>
</message> </message>
@ -2048,64 +2046,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="730"/> <location filename="../SnapmaticPicture.cpp" line="733"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON неповний та неправильний</translation> <translation>JSON неповний та неправильний</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="734"/> <location filename="../SnapmaticPicture.cpp" line="737"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON неповний</translation> <translation>JSON неповний</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="738"/> <location filename="../SnapmaticPicture.cpp" line="741"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON неправильний</translation> <translation>JSON неправильний</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="464"/> <location filename="../SnapmaticPicture.cpp" line="467"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>ФОТО - %1</translation> <translation>ФОТО - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="690"/> <location filename="../SnapmaticPicture.cpp" line="693"/>
<source>open file %1</source> <source>open file %1</source>
<translation>відкрити файл%1</translation> <translation>відкрити файл%1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="706"/> <location filename="../SnapmaticPicture.cpp" line="709"/>
<source>header not exists</source> <source>header not exists</source>
<translation>заголовок не існує</translation> <translation>заголовок не існує</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="710"/> <location filename="../SnapmaticPicture.cpp" line="713"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>заголовок неправильний</translation> <translation>заголовок неправильний</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="714"/> <location filename="../SnapmaticPicture.cpp" line="717"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>зображення не існує (%1)</translation> <translation>зображення не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="718"/> <location filename="../SnapmaticPicture.cpp" line="721"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON не існує (%1)</translation> <translation>JSON не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="722"/> <location filename="../SnapmaticPicture.cpp" line="725"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>заголовок не існує (%1)</translation> <translation>заголовок не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="726"/> <location filename="../SnapmaticPicture.cpp" line="729"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>опис не існує (%1)</translation> <translation>опис не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="740"/> <location filename="../SnapmaticPicture.cpp" line="743"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>читання файлу %1 тому що %2</translation> <translation>читання файлу %1 тому що %2</translation>
@ -2166,52 +2164,52 @@ Press 1 for Default View</source>
<translation>Видалити</translation> <translation>Видалити</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1622"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Редагува&amp;ти</translation> <translation>Редагува&amp;ти</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1625"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>Показати &amp;у грі</translation> <translation>Показати &amp;у грі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1629"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>Сховати &amp;у грі</translation> <translation>Сховати &amp;у грі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1636"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Експортувати</translation> <translation>&amp;Експортувати</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1639"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Переглянути</translation> <translation>&amp;Переглянути</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Видалити</translation> <translation>&amp;Видалити</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1644"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Виділення</translation> <translation>&amp;Виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation> <translation>&amp;Зняти виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1641"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation> <translation>Вибрати &amp;усі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation> <translation>&amp;Зняти виділення усіх</translation>
</message> </message>
@ -2239,22 +2237,22 @@ Press 1 for Default View</source>
<context> <context>
<name>TelemetryDialog</name> <name>TelemetryDialog</name>
<message> <message>
<location filename="../main.cpp" line="173"/> <location filename="../main.cpp" line="165"/>
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source> <source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
<translation>Ви хочете допомогти %1 покращитись у майбутньому, включивши дані особистого користування?</translation> <translation>Ви хочете допомогти %1 покращитись у майбутньому, включивши дані особистого користування?</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="174"/> <location filename="../main.cpp" line="166"/>
<source>%1 User Statistics</source> <source>%1 User Statistics</source>
<translation>%1 Статистика користувачів</translation> <translation>%1 Статистика користувачів</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="178"/> <location filename="../main.cpp" line="170"/>
<source>Yes, I want include personal usage data.</source> <source>Yes, I want include personal usage data.</source>
<translation>Так, я хочу включити дані особистого користування.</translation> <translation>Так, я хочу включити дані особистого користування.</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="187"/> <location filename="../main.cpp" line="179"/>
<source>&amp;OK</source> <source>&amp;OK</source>
<translatorcomment>&amp;OK</translatorcomment> <translatorcomment>&amp;OK</translatorcomment>
<translation>&amp;OK</translation> <translation>&amp;OK</translation>
@ -2432,15 +2430,15 @@ Press 1 for Default View</source>
<translation>Змінити &amp;гравців...</translation> <translation>Змінити &amp;гравців...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Показати у грі</translation> <translation>Показати у грі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Сховати у грі</translation> <translation>Сховати у грі</translation>
@ -2473,7 +2471,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="645"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation type="unfinished"></translation> <translation>%1 - Новини</translation>
</message> </message>
</context> </context>
</TS> </TS>

Binary file not shown.

View File

@ -200,21 +200,21 @@ Pictures and Savegames</source>
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../PictureDialog.cpp" line="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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="1037"/> <location filename="../PictureDialog.cpp" line="934"/>
<location filename="../SnapmaticWidget.cpp" line="375"/> <location filename="../SnapmaticWidget.cpp" line="375"/>
<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="1061"/> <location filename="../PictureDialog.cpp" line="958"/>
<location filename="../SnapmaticWidget.cpp" line="399"/> <location filename="../SnapmaticWidget.cpp" line="399"/>
<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>
@ -352,14 +352,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="198"/> <location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="733"/> <location filename="../ProfileInterface.cpp" line="720"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="225"/> <location filename="../ImportDialog.cpp" line="225"/>
<location filename="../ProfileInterface.cpp" line="752"/> <location filename="../ProfileInterface.cpp" line="739"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation></translation> <translation></translation>
@ -1004,43 +1004,43 @@ Y: %2</translation>
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="167"/> <location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1630"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>(&amp;P)...</translation> <translation>(&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="168"/> <location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1631"/> <location filename="../ProfileInterface.cpp" line="1638"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation> Snapmatic(&amp;S)...</translation> <translation> Snapmatic(&amp;S)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="170"/> <location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1631"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>(&amp;E) ...</translation> <translation>(&amp;E) ...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="171"/> <location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1625"/> <location filename="../ProfileInterface.cpp" line="1632"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>(&amp;O)...</translation> <translation>(&amp;O)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="173"/> <location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1634"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>(&amp;M)...</translation> <translation>(&amp;M)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="175"/> <location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1628"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation> JSON (&amp;J)...</translation> <translation> JSON (&amp;J)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="603"/> <location filename="../PictureDialog.cpp" line="496"/>
<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>
@ -1049,37 +1049,37 @@ Arrow Keys - Navigate</source>
- </translation> - </translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="664"/> <location filename="../PictureDialog.cpp" line="557"/>
<location filename="../PictureDialog.cpp" line="690"/> <location filename="../PictureDialog.cpp" line="583"/>
<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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="829"/> <location filename="../PictureDialog.cpp" line="722"/>
<location filename="../SnapmaticEditor.cpp" line="247"/> <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="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<location filename="../PictureDialog.cpp" line="805"/> <location filename="../PictureDialog.cpp" line="698"/>
<source>No Crew</source> <source>No Crew</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="689"/> <location filename="../PictureDialog.cpp" line="582"/>
<source>Unknown Location</source> <source>Unknown Location</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="763"/> <location filename="../PictureDialog.cpp" line="656"/>
<source>Avatar Preview Mode <source>Avatar Preview Mode
Press 1 for Default View</source> Press 1 for Default View</source>
<translation> <translation>
@ -1290,23 +1290,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="426"/> <location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="747"/> <location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="508"/> <location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../ProfileInterface.cpp" line="509"/> <location filename="../ProfileInterface.cpp" line="496"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="574"/> <location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<location filename="../ProfileInterface.cpp" line="934"/>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="982"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<location filename="../ProfileInterface.cpp" line="1235"/>
<source>Import...</source> <source>Import...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
@ -1323,14 +1323,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="437"/> <location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="758"/> <location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="528"/> <location filename="../ProfileInterface.cpp" line="515"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="438"/> <location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="759"/> <location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="529"/> <location filename="../ProfileInterface.cpp" line="516"/>
<location filename="../UserInterface.cpp" line="474"/> <location filename="../UserInterface.cpp" line="474"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation> (**)</translation> <translation> (**)</translation>
@ -1338,201 +1338,201 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="458"/> <location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="779"/> <location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="790"/> <location filename="../ProfileInterface.cpp" line="781"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="467"/> <location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="788"/> <location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="800"/> <location filename="../ProfileInterface.cpp" line="791"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="85"/> <location filename="../ProfileInterface.cpp" line="84"/>
<source>Enabled pictures: %1 of %2</source> <source>Enabled pictures: %1 of %2</source>
<translation> %1 %2</translation> <translation> %1 %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="185"/> <location filename="../ProfileInterface.cpp" line="184"/>
<source>Loading...</source> <source>Loading...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic </translation> <translation>Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="422"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt; Snapmatic &lt;/h4&gt;%1</translation> <translation>&lt;h4&gt; Snapmatic &lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="524"/> <location filename="../ProfileInterface.cpp" line="511"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="525"/> <location filename="../ProfileInterface.cpp" line="512"/>
<location filename="../UserInterface.cpp" line="471"/> <location filename="../UserInterface.cpp" line="471"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="526"/> <location filename="../ProfileInterface.cpp" line="513"/>
<location filename="../UserInterface.cpp" line="472"/> <location filename="../UserInterface.cpp" line="472"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation> (SGTA*)</translation> <translation> (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="527"/> <location filename="../ProfileInterface.cpp" line="514"/>
<location filename="../UserInterface.cpp" line="473"/> <location filename="../UserInterface.cpp" line="473"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic (PGTA*)</translation> <translation>Snapmatic (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="944"/> <location filename="../ProfileInterface.cpp" line="939"/>
<location filename="../UserInterface.cpp" line="562"/> <location filename="../UserInterface.cpp" line="562"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="575"/> <location filename="../ProfileInterface.cpp" line="562"/>
<location filename="../ProfileInterface.cpp" line="592"/> <location filename="../ProfileInterface.cpp" line="579"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation> %1 %2 </translation> <translation> %1 %2 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="595"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="650"/> <location filename="../ProfileInterface.cpp" line="637"/>
<location filename="../UserInterface.cpp" line="514"/> <location filename="../UserInterface.cpp" line="514"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="685"/> <location filename="../ProfileInterface.cpp" line="672"/>
<location filename="../UserInterface.cpp" line="530"/> <location filename="../UserInterface.cpp" line="530"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="939"/> <location filename="../ProfileInterface.cpp" line="934"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1104"/> <location filename="../ProfileInterface.cpp" line="1103"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation> Snapmatic PGTA .g5e</translation> <translation> Snapmatic PGTA .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1192"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1229"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1235"/> <location filename="../ProfileInterface.cpp" line="1242"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1299"/> <location filename="../ProfileInterface.cpp" line="1306"/>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<location filename="../ProfileInterface.cpp" line="1382"/> <location filename="../ProfileInterface.cpp" line="1389"/>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1322"/> <location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1340"/> <location filename="../ProfileInterface.cpp" line="1347"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA Snapmatic</translation> <translation>JPG GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1330"/>
<location filename="../ProfileInterface.cpp" line="1345"/> <location filename="../ProfileInterface.cpp" line="1352"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation> JPG </translation> <translation> JPG </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1331"/>
<location filename="../ProfileInterface.cpp" line="1349"/> <location filename="../ProfileInterface.cpp" line="1356"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation> GTA Snapmatic</translation> <translation> GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1337"/> <location filename="../ProfileInterface.cpp" line="1344"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 Snapmatic %2&lt;br&gt;&lt;br&gt;JPG 使&lt;br&gt;GTA Snapmatic &lt;br&gt;&lt;br&gt;:</translation> <translation>%1 Snapmatic %2&lt;br&gt;&lt;br&gt;JPG 使&lt;br&gt;GTA Snapmatic &lt;br&gt;&lt;br&gt;:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1383"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1417"/> <location filename="../ProfileInterface.cpp" line="1424"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1437"/> <location filename="../ProfileInterface.cpp" line="1444"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<location filename="../ProfileInterface.cpp" line="1479"/> <location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1445"/> <location filename="../ProfileInterface.cpp" line="1452"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> Snapmatic /?</translation> <translation> Snapmatic /?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1473"/> <location filename="../ProfileInterface.cpp" line="1480"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> Snapmatic /</translation> <translation> Snapmatic /</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1542,91 +1542,91 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="998"/> <location filename="../ProfileInterface.cpp" line="993"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1112"/> <location filename="../ProfileInterface.cpp" line="1111"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation> uid %1 Snapmatic uid ?</translation> <translation> uid %1 Snapmatic uid ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1990"/> <location filename="../ProfileInterface.cpp" line="1997"/>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2001"/> <location filename="../ProfileInterface.cpp" line="2008"/>
<location filename="../ProfileInterface.cpp" line="2104"/> <location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2242"/>
<location filename="../ProfileInterface.cpp" line="2341"/> <location filename="../ProfileInterface.cpp" line="2348"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2002"/> <location filename="../ProfileInterface.cpp" line="2009"/>
<location filename="../ProfileInterface.cpp" line="2021"/> <location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2105"/> <location filename="../ProfileInterface.cpp" line="2112"/>
<location filename="../ProfileInterface.cpp" line="2124"/> <location filename="../ProfileInterface.cpp" line="2131"/>
<location filename="../ProfileInterface.cpp" line="2236"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2255"/> <location filename="../ProfileInterface.cpp" line="2262"/>
<location filename="../ProfileInterface.cpp" line="2342"/> <location filename="../ProfileInterface.cpp" line="2349"/>
<location filename="../ProfileInterface.cpp" line="2361"/> <location filename="../ProfileInterface.cpp" line="2368"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation> %1 %2 </translation> <translation> %1 %2 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2055"/> <location filename="../ProfileInterface.cpp" line="2062"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2076"/> <location filename="../ProfileInterface.cpp" line="2083"/>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2154"/> <location filename="../ProfileInterface.cpp" line="2161"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2175"/> <location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2212"/> <location filename="../ProfileInterface.cpp" line="2219"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> ID</translation> <translation> ID</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2285"/> <location filename="../ProfileInterface.cpp" line="2292"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2306"/> <location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2323"/> <location filename="../ProfileInterface.cpp" line="2330"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2388"/> <location filename="../ProfileInterface.cpp" line="2395"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
@ -1640,17 +1640,15 @@ Press 1 for Default View</source>
<context> <context>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Font</source> <source>Font</source>
<translation></translation> <translation type="vanished"></translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="117"/>
<source>Selected Font: %1</source> <source>Selected Font: %1</source>
<translation>: %1</translation> <translation type="vanished">: %1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="144"/> <location filename="../main.cpp" line="136"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source> <source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;使 %1!&lt;/h4&gt; %1 ?</translation> <translation>&lt;h4&gt;使 %1!&lt;/h4&gt; %1 ?</translation>
</message> </message>
@ -1728,37 +1726,37 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1666"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1667"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1668"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1670"/> <location filename="../ProfileInterface.cpp" line="1677"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>(&amp;A)</translation> <translation>(&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
@ -1858,8 +1856,8 @@ 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="226"/> <location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source> <source>Snapmatic Properties</source>
<translation>Snapmatic </translation> <translation>Snapmatic </translation>
@ -1951,8 +1949,8 @@ 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="952"/> <location filename="../PictureDialog.cpp" line="849"/>
<location filename="../SnapmaticEditor.cpp" line="334"/> <location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="433"/> <location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source> <source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
@ -1963,73 +1961,73 @@ Press 1 for Default View</source>
<translation>JSON Snapmatic </translation> <translation>JSON Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2203"/> <location filename="../ProfileInterface.cpp" line="2210"/>
<location filename="../SnapmaticEditor.cpp" line="443"/> <location filename="../SnapmaticEditor.cpp" line="442"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2318"/> <location filename="../ProfileInterface.cpp" line="2325"/>
<location filename="../SnapmaticEditor.cpp" line="414"/> <location filename="../SnapmaticEditor.cpp" line="413"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="231"/> <location filename="../SnapmaticEditor.cpp" line="230"/>
<location filename="../SnapmaticEditor.cpp" line="266"/> <location filename="../SnapmaticEditor.cpp" line="265"/>
<location filename="../SnapmaticEditor.cpp" line="286"/> <location filename="../SnapmaticEditor.cpp" line="285"/>
<source>Edit</source> <source>Edit</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="235"/> <location filename="../SnapmaticEditor.cpp" line="234"/>
<source>Players: %1 (%2)</source> <source>Players: %1 (%2)</source>
<comment>Multiple Player are inserted here</comment> <comment>Multiple Player are inserted here</comment>
<translation>: %1 (%2)</translation> <translation>: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="239"/> <location filename="../SnapmaticEditor.cpp" line="238"/>
<source>Player: %1 (%2)</source> <source>Player: %1 (%2)</source>
<comment>One Player is inserted here</comment> <comment>One Player is inserted here</comment>
<translation>: %1 (%2)</translation> <translation>: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="267"/> <location filename="../SnapmaticEditor.cpp" line="266"/>
<source>Title: %1 (%2)</source> <source>Title: %1 (%2)</source>
<translation>: %1 (%2)</translation> <translation>: %1 (%2)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>Appropriate: %1</source> <source>Appropriate: %1</source>
<translation>使: %1</translation> <translation>使: %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="271"/> <location filename="../SnapmaticEditor.cpp" line="270"/>
<source>Yes</source> <source>Yes</source>
<comment>Yes, should work fine</comment> <comment>Yes, should work fine</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="275"/> <location filename="../SnapmaticEditor.cpp" line="274"/>
<source>No</source> <source>No</source>
<comment>No, could lead to issues</comment> <comment>No, could lead to issues</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.cpp" line="287"/> <location filename="../SnapmaticEditor.cpp" line="286"/>
<source>Crew: %1 (%2)</source> <source>Crew: %1 (%2)</source>
<translation>: %1 (%2)</translation> <translation>: %1 (%2)</translation>
</message> </message>
@ -2038,64 +2036,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="177"/> <location filename="../JsonEditorDialog.cpp" line="177"/>
<location filename="../SnapmaticPicture.cpp" line="730"/> <location filename="../SnapmaticPicture.cpp" line="733"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="181"/> <location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../SnapmaticPicture.cpp" line="734"/> <location filename="../SnapmaticPicture.cpp" line="737"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="185"/> <location filename="../JsonEditorDialog.cpp" line="185"/>
<location filename="../SnapmaticPicture.cpp" line="738"/> <location filename="../SnapmaticPicture.cpp" line="741"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="464"/> <location filename="../SnapmaticPicture.cpp" line="467"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation> - %1</translation> <translation> - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="690"/> <location filename="../SnapmaticPicture.cpp" line="693"/>
<source>open file %1</source> <source>open file %1</source>
<translation> - %1</translation> <translation> - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="706"/> <location filename="../SnapmaticPicture.cpp" line="709"/>
<source>header not exists</source> <source>header not exists</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="710"/> <location filename="../SnapmaticPicture.cpp" line="713"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="714"/> <location filename="../SnapmaticPicture.cpp" line="717"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="718"/> <location filename="../SnapmaticPicture.cpp" line="721"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON (%1)</translation> <translation>JSON (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="722"/> <location filename="../SnapmaticPicture.cpp" line="725"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="726"/> <location filename="../SnapmaticPicture.cpp" line="729"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="740"/> <location filename="../SnapmaticPicture.cpp" line="743"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation> %1 %2</translation> <translation> %1 %2</translation>
@ -2156,52 +2154,52 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1622"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1625"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>(&amp;I)</translation> <translation>(&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1622"/> <location filename="../ProfileInterface.cpp" line="1629"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>(&amp;I)</translation> <translation>(&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1629"/> <location filename="../ProfileInterface.cpp" line="1636"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1632"/> <location filename="../ProfileInterface.cpp" line="1639"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1635"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1637"/> <location filename="../ProfileInterface.cpp" line="1644"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1638"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1641"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>(&amp;A)</translation> <translation>(&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1645"/> <location filename="../ProfileInterface.cpp" line="1652"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
@ -2229,22 +2227,22 @@ Press 1 for Default View</source>
<context> <context>
<name>TelemetryDialog</name> <name>TelemetryDialog</name>
<message> <message>
<location filename="../main.cpp" line="173"/> <location filename="../main.cpp" line="165"/>
<source>You want help %1 to improve in the future by including personal usage data in your submission?</source> <source>You want help %1 to improve in the future by including personal usage data in your submission?</source>
<translation> %1 ?</translation> <translation> %1 ?</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="174"/> <location filename="../main.cpp" line="166"/>
<source>%1 User Statistics</source> <source>%1 User Statistics</source>
<translation>%1 使</translation> <translation>%1 使</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="178"/> <location filename="../main.cpp" line="170"/>
<source>Yes, I want include personal usage data.</source> <source>Yes, I want include personal usage data.</source>
<translation>.</translation> <translation>.</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="187"/> <location filename="../main.cpp" line="179"/>
<source>&amp;OK</source> <source>&amp;OK</source>
<translation>(&amp;O)</translation> <translation>(&amp;O)</translation>
</message> </message>
@ -2421,15 +2419,15 @@ Press 1 for Default View</source>
<translation>(&amp;P)...</translation> <translation>(&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1545"/> <location filename="../ProfileInterface.cpp" line="1552"/>
<location filename="../ProfileInterface.cpp" line="1559"/> <location filename="../ProfileInterface.cpp" line="1566"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1586"/>
<location filename="../ProfileInterface.cpp" line="1593"/> <location filename="../ProfileInterface.cpp" line="1600"/>
<location filename="../SnapmaticWidget.cpp" line="320"/> <location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation></translation> <translation></translation>
@ -2462,7 +2460,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../UserInterface.cpp" line="645"/> <location filename="../UserInterface.cpp" line="645"/>
<source>%1 - Messages</source> <source>%1 - Messages</source>
<translation type="unfinished"></translation> <translation>%1 - </translation>
</message> </message>
</context> </context>
</TS> </TS>