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
${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} && \
rm -rf ${GTA5VIEW_EXECUTABLE}
rm -rf ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE}
elif [ "${PACKAGE_CODE}" == "gtainside" ]; then
${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} && \
rm -rf ${GTA5VIEW_EXECUTABLE}
rm -rf ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE}
fi

View File

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

View File

@ -2,7 +2,7 @@ kind: pipeline
type: docker
environment:
BUILD_TYPE: "RC"
BUILD_TYPE: "REL"
steps:
- name: Windows Installer
@ -14,6 +14,9 @@ steps:
from_secret: tca_pass
commands:
- .drone/drone.sh
volumes:
- name: gta5view
path: /srv/gta5view
- name: Windows Portable
image: sypingauto/gta5view-build:1.8-static
environment:
@ -23,3 +26,11 @@ steps:
from_secret: tca_pass
commands:
- .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
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 && \
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
runtime: org.kde.Platform
runtime-version: '5.14'
runtime-version: '5.15'
sdk: org.kde.Sdk
command: gta5view
finish-args:

View File

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

View File

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

View File

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

View File

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

View File

@ -263,11 +263,7 @@ void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
QStringList widgetsKeyList = widgets.values();
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
#if QT_VERSION >= 0x050600
#if QT_VERSION >= 0x050F00
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
#else
qSort(pictureKeyList.rbegin(), pictureKeyList.rend());
#endif
#else
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
#endif
@ -287,7 +283,7 @@ void ProfileInterface::insertSavegameIPI(QWidget *widget)
QString widgetKey = widgets[proWidget];
QStringList widgetsKeyList = widgets.values();
QStringList savegameKeyList = widgetsKeyList.filter("SGD", Qt::CaseSensitive);
#if QT_VERSION >= 0x050F00
#if QT_VERSION >= 0x050600
std::sort(savegameKeyList.begin(), savegameKeyList.end());
#else
qSort(savegameKeyList.begin(), savegameKeyList.end());
@ -310,11 +306,7 @@ void ProfileInterface::dialogNextPictureRequested(QWidget *dialog)
QStringList widgetsKeyList = widgets.values();
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
#if QT_VERSION >= 0x050600
#if QT_VERSION >= 0x050F00
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
#else
qSort(pictureKeyList.rbegin(), pictureKeyList.rend());
#endif
#else
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
#endif
@ -349,11 +341,7 @@ void ProfileInterface::dialogPreviousPictureRequested(QWidget *dialog)
QStringList widgetsKeyList = widgets.values();
QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
#if QT_VERSION >= 0x050600
#if QT_VERSION >= 0x050F00
std::sort(pictureKeyList.rbegin(), pictureKeyList.rend());
#else
qSort(pictureKeyList.rbegin(), pictureKeyList.rend());
#endif
#else
qSort(pictureKeyList.begin(), pictureKeyList.end(), qGreater<QString>());
#endif
@ -385,7 +373,7 @@ void ProfileInterface::sortingProfileInterface()
QStringList widgetsKeyList = widgets.values();
#if QT_VERSION >= 0x050F00
#if QT_VERSION >= 0x050600
std::sort(widgetsKeyList.begin(), widgetsKeyList.end());
#else
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
- Edit Snapmatic pictures and properties in multiple ways
- 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
![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
QStringDecoder strDecoder = QStringDecoder(QStringDecoder::Utf16LE);
QString retStr = strDecoder(commitBytes);
retStr = retStr.trimmed();
#else
QString retStr = QTextCodec::codecForName("UTF-16LE")->toUnicode(commitBytes).trimmed();
#endif

View File

@ -48,12 +48,16 @@ QString StringParser::escapeString(const QString &toEscape)
QString StringParser::convertBuildedString(const QString &buildedStr)
{
QString outputStr = buildedStr;
QByteArray sharePath = GTA5SYNC_SHARE;
outputStr.replace("APPNAME:", GTA5SYNC_APPSTR);
outputStr.replace("SHAREDDIR:", QString::fromUtf8(sharePath));
outputStr.replace("RUNDIR:", QFileInfo(qApp->applicationFilePath()).absoluteDir().absolutePath());
outputStr.replace("APPNAME:", QString::fromUtf8(GTA5SYNC_APPSTR));
outputStr.replace("SHAREDDIR:", QString::fromUtf8(GTA5SYNC_SHARE));
outputStr.replace("RUNDIR:", QFileInfo(QApplication::applicationFilePath()).canonicalPath());
#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("QCONFPLUG:", QLibraryInfo::location(QLibraryInfo::PluginsPath));
#endif
outputStr.replace("SEPARATOR:", QDir::separator());
return outputStr;
}

View File

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

Binary file not shown.

View File

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

View File

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

Binary file not shown.

View File

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

Binary file not shown.

View File

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

Binary file not shown.

View File

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

Binary file not shown.

View File

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