Fix Qt4 builds
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Syping 2021-05-23 07:20:20 +02:00
parent 268e8d3468
commit f4b4450f69
11 changed files with 1356 additions and 1340 deletions

View File

@ -18,6 +18,7 @@
#include "PlayerListDialog.h"
#include "ui_PlayerListDialog.h"
#include "wrapper.h"
#include "AppEnv.h"
#include <QStringBuilder>
#include <QFontMetrics>

View File

@ -138,8 +138,10 @@ ProfileInterface::ProfileInterface(ProfileDatabase *profileDB, CrewDatabase *cre
// Seed RNG
pcg32_srandom_r(&rng, time(NULL), (intptr_t)&rng);
#if QT_VERSION >= 0x050000
// Register Metatypes
qRegisterMetaType<QVector<QString>>();
#endif
setMouseTracking(true);
installEventFilter(this);
@ -182,7 +184,9 @@ void ProfileInterface::setupProfileInterface()
fixedPictures.clear();
ui->labProfileLoading->setText(tr("Loading..."));
profileLoader = new ProfileLoader(profileFolder, crewDB);
#if QT_VERSION >= 0x050000
QObject::connect(profileLoader, SIGNAL(directoryScanned(QVector<QString>,QVector<QString>)), this, SLOT(directoryScanned(QVector<QString>,QVector<QString>)));
#endif
QObject::connect(profileLoader, SIGNAL(savegameLoaded(SavegameData*, QString)), this, SLOT(savegameLoaded_event(SavegameData*, QString)));
QObject::connect(profileLoader, SIGNAL(pictureLoaded(SnapmaticPicture*)), this, SLOT(pictureLoaded_event(SnapmaticPicture*)));
QObject::connect(profileLoader, SIGNAL(pictureFixed(SnapmaticPicture*)), this, SLOT(pictureFixed_event(SnapmaticPicture*)));
@ -258,8 +262,10 @@ void ProfileInterface::loadingProgress(int value, int maximum)
ui->labProfileLoading->setText(loadingStr.arg(QString::number(value), QString::number(maximum)));
}
#if QT_VERSION >= 0x050000
void ProfileInterface::directoryChanged(const QString &path)
{
Q_UNUSED(path)
QDir dir(profileFolder);
QVector<QString> t_savegameFiles;
QVector<QString> t_snapmaticPics;
@ -314,6 +320,7 @@ void ProfileInterface::directoryScanned(QVector<QString> savegameFiles_s, QVecto
fileSystemWatcher.addPath(profileFolder);
QObject::connect(&fileSystemWatcher, SIGNAL(directoryChanged(QString)), this, SLOT(directoryChanged(QString)));
}
#endif
void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
{
@ -1206,7 +1213,9 @@ bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool wa
if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format)) {
picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format);
picture->setPicFilePath(profileFolder % "/" % adjustedFileName);
#if QT_VERSION >= 0x050000
snapmaticPics << picture->getPictureFileName();
#endif
pictureLoaded(picture, true);
return true;
}
@ -1240,7 +1249,9 @@ bool ProfileInterface::importSavegameData(SavegameData *savegame, QString sgdPat
const QString newSgdPath = profileFolder % "/" % sgdFileName;
if (QFile::copy(sgdPath, newSgdPath)) {
savegame->setSavegameFileName(newSgdPath);
#if QT_VERSION >= 0x050000
savegameFiles << newSgdPath;
#endif
savegameLoaded(savegame, newSgdPath, true);
return true;
}

View File

@ -90,8 +90,10 @@ private slots:
void dialogNextPictureRequested(QWidget *dialog);
void dialogPreviousPictureRequested(QWidget *dialog);
void on_saProfileContent_dropped(const QMimeData *mimeData);
#if QT_VERSION >= 0x050000
void directoryChanged(const QString &path);
void directoryScanned(QVector<QString> savegameFiles, QVector<QString> snapmaticPics);
#endif
protected:
bool eventFilter(QObject *watched, QEvent *event);
@ -107,9 +109,11 @@ private:
QList<SavegameData*> savegames;
QList<SnapmaticPicture*> pictures;
QMap<ProfileWidget*,QString> widgets;
#if QT_VERSION >= 0x050000
QFileSystemWatcher fileSystemWatcher;
QVector<QString> savegameFiles;
QVector<QString> snapmaticPics;
#endif
QSpacerItem *saSpacerItem;
QStringList fixedPictures;
QString enabledPicStr;

View File

@ -373,7 +373,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="744"/>
<location filename="../ProfileInterface.cpp" line="751"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation>
@ -381,7 +381,7 @@ Pictures and Savegames</source>
<message>
<location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="760"/>
<location filename="../ProfileInterface.cpp" line="767"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation>
@ -1020,37 +1020,37 @@ Y: %2</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1649"/>
<location filename="../ProfileInterface.cpp" line="1660"/>
<source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1642"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1643"/>
<location filename="../ProfileInterface.cpp" line="1654"/>
<source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1645"/>
<location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1657"/>
<source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation>
</message>
@ -1227,28 +1227,28 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Add Players...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Failed to add more Players because the limit of Players are %1!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Add Player...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<source>Enter Social Club Player ID</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Failed to add Player %1 because Player %1 is already added!</source>
<translation type="unfinished"></translation>
</message>
@ -1300,23 +1300,23 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="544"/>
<location filename="../ProfileInterface.cpp" line="545"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Import...</source>
<translation type="unfinished"></translation>
</message>
@ -1333,14 +1333,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="555"/>
<location filename="../ProfileInterface.cpp" line="562"/>
<source>All image files (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source>
<translation type="unfinished"></translation>
@ -1348,14 +1348,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<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="559"/>
<location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation>
</message>
@ -1365,194 +1365,194 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="183"/>
<location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<source>Snapmatic Loader</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<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="551"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Importable files (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../ProfileInterface.cpp" line="559"/>
<location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../ProfileInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="614"/>
<location filename="../ProfileInterface.cpp" line="605"/>
<location filename="../ProfileInterface.cpp" line="621"/>
<source>Import file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<source>Import failed with...
%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<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="1016"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<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="1128"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<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="1215"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<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="1255"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<location filename="../ProfileInterface.cpp" line="1401"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<source>Export selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1355"/>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1359"/>
<location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1370"/>
<source>JPG pictures only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1362"/>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<source>GTA Snapmatic only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<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="1391"/>
<location filename="../ProfileInterface.cpp" line="1402"/>
<source>Initialising export...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<source>Export failed with...
%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<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="1447"/>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>%1 failed with...
%2</source>
@ -1560,81 +1560,81 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2319"/>
<location filename="../ProfileInterface.cpp" line="2027"/>
<location filename="../ProfileInterface.cpp" line="2120"/>
<location filename="../ProfileInterface.cpp" line="2235"/>
<location filename="../ProfileInterface.cpp" line="2330"/>
<source>Patch selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2338"/>
<location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2046"/>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2139"/>
<location filename="../ProfileInterface.cpp" line="2236"/>
<location filename="../ProfileInterface.cpp" line="2254"/>
<location filename="../ProfileInterface.cpp" line="2331"/>
<location filename="../ProfileInterface.cpp" line="2349"/>
<source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
@ -1718,45 +1718,45 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1716"/>
<location filename="../ProfileInterface.cpp" line="1727"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1747"/>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1728"/>
<location filename="../ProfileInterface.cpp" line="1758"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1748"/>
<location filename="../ProfileInterface.cpp" line="1693"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1762"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1764"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1770"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -1959,25 +1959,25 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source>
<translation type="unfinished"></translation>
@ -2152,62 +2152,62 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1683"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Edi&amp;t</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<source>Show &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1745"/>
<location filename="../ProfileInterface.cpp" line="1651"/>
<location filename="../ProfileInterface.cpp" line="1690"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<source>Hide &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1647"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1650"/>
<location filename="../ProfileInterface.cpp" line="1661"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1664"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1667"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../ProfileInterface.cpp" line="1669"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1691"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -2410,42 +2410,42 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1742"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<source>Change &amp;Title...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>Change &amp;Crew...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1739"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../ProfileInterface.cpp" line="1750"/>
<source>&amp;Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<source>Change &amp;Players...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source>
<translation type="unfinished"></translation>

View File

@ -401,7 +401,7 @@ Snapmatic Bilder und Spielständen</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="744"/>
<location filename="../ProfileInterface.cpp" line="751"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigener Avatar</translation>
@ -409,7 +409,7 @@ Snapmatic Bilder und Spielständen</translation>
<message>
<location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="760"/>
<location filename="../ProfileInterface.cpp" line="767"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigenes Bild</translation>
@ -1065,31 +1065,31 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Picture...</source>
<translation>Als &amp;Bild exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1649"/>
<location filename="../ProfileInterface.cpp" line="1660"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Als &amp;Snapmatic exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1642"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Edit Properties...</source>
<translation>Eigenschaften bearb&amp;eiten...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1643"/>
<location filename="../ProfileInterface.cpp" line="1654"/>
<source>&amp;Overwrite Image...</source>
<translation>Bild &amp;überschreiben...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1645"/>
<location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;Map Viewer...</source>
<translation>&amp;Kartenansicht öffnen...</translation>
</message>
@ -1236,7 +1236,7 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1657"/>
<source>Open &amp;JSON Editor...</source>
<translation>&amp;JSON Editor öffnen...</translation>
</message>
@ -1269,28 +1269,28 @@ Drücke 1 für Standardmodus</translation>
<translation>Abbre&amp;chen</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Add Players...</source>
<translation>Spieler hinzufügen...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Failed to add more Players because the limit of Players are %1!</source>
<translation>Fehlgeschlagen beim Hinzufügen von mehr Spielern weil der Limit von Spielern %1 ist!</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Add Player...</source>
<translation>Spieler hinzufügen...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<source>Enter Social Club Player ID</source>
<translation>Social Club Spieler ID eingeben</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Failed to add Player %1 because Player %1 is already added!</source>
<translation>Fehlgeschlagen beim Hinzufügen vom Spieler %1 weil Spieler %1 bereits hinzugefügt wurde!</translation>
</message>
@ -1334,40 +1334,40 @@ Drücke 1 für Standardmodus</translation>
<translation>S&amp;chließen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="183"/>
<location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source>
<translation>Lade...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<source>Snapmatic Loader</source>
<translation>Snapmatic Lader</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<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="523"/>
<location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="544"/>
<location filename="../ProfileInterface.cpp" line="545"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Import...</source>
<translation>Importieren...</translation>
</message>
@ -1382,45 +1382,45 @@ Drücke 1 für Standardmodus</translation>
<translation>Importieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../ProfileInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source>
<translation>Spielstanddateien (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic Bilder (PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="551"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Importable files (%1)</source>
<translation>Importfähige Dateien (%1)</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="555"/>
<location filename="../ProfileInterface.cpp" line="562"/>
<source>All image files (%1)</source>
<translation>Alle Bilddateien (%1)</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source>
<translation>Alle Dateien (**)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="614"/>
<location filename="../ProfileInterface.cpp" line="605"/>
<location filename="../ProfileInterface.cpp" line="621"/>
<source>Import file %1 of %2 files</source>
<translation>Importiere Datei %1 von %2 Dateien</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<source>Import failed with...
%1</source>
@ -1429,13 +1429,13 @@ Drücke 1 für Standardmodus</translation>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source>
<translation>Fehler beim Lesen vom Snapmatic Bild</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source>
<translation>Fehler beim Lesen von Spielstanddatei</translation>
@ -1443,40 +1443,40 @@ Drücke 1 für Standardmodus</translation>
<message>
<location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<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="559"/>
<location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<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="961"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<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="1391"/>
<location filename="../ProfileInterface.cpp" line="1402"/>
<source>Initialising export...</source>
<translation>Initialisiere Export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<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="1353"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<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="576"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source>
<translation>Keine gültige Datei wurde ausgewählt</translation>
@ -1487,91 +1487,91 @@ Drücke 1 für Standardmodus</translation>
<translation>Aktivierte Bilder: %1 von %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<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="1215"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<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="1255"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<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="1338"/>
<location filename="../ProfileInterface.cpp" line="1355"/>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG Bilder und GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1359"/>
<location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1370"/>
<source>JPG pictures only</source>
<translation>Nur JPG Bilder</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1362"/>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<source>GTA Snapmatic only</source>
<translation>Nur GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2319"/>
<location filename="../ProfileInterface.cpp" line="2027"/>
<location filename="../ProfileInterface.cpp" line="2120"/>
<location filename="../ProfileInterface.cpp" line="2235"/>
<location filename="../ProfileInterface.cpp" line="2330"/>
<source>Patch selected...</source>
<translation>Auswahl patchen...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2338"/>
<location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2046"/>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2139"/>
<location filename="../ProfileInterface.cpp" line="2236"/>
<location filename="../ProfileInterface.cpp" line="2254"/>
<location filename="../ProfileInterface.cpp" line="2331"/>
<location filename="../ProfileInterface.cpp" line="2349"/>
<source>Patch file %1 of %2 files</source>
<translation>Patche Datei %1 von %2 Dateien</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify as Avatar</source>
<translation>Als Avatar qualifizieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<source>No Snapmatic pictures are selected</source>
<translation>Keine Snapmatic Bilder sind ausgewählt</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<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="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>%1 failed with...
%2</source>
@ -1581,93 +1581,93 @@ Drücke 1 für Standardmodus</translation>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1016"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>Bereite Inhalt für Import vor...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Qualifizieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players...</source>
<translation>Spieler ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Spieler ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew...</source>
<translation>Crew ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<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="2269"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Crew ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title...</source>
<translation>Titel ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<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="2361"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Titel ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<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="1447"/>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source>
<translation>Auswahl löschen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<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="1318"/>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<location filename="../ProfileInterface.cpp" line="1401"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<source>Export selected...</source>
<translation>Auswahl exportieren...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<source>Export failed with...
%1</source>
@ -1686,7 +1686,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../ProfileInterface.cpp" line="559"/>
<location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
@ -1810,38 +1810,38 @@ 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="1716"/>
<location filename="../ProfileInterface.cpp" line="1727"/>
<source>&amp;View</source>
<translation>A&amp;nsehen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1748"/>
<location filename="../ProfileInterface.cpp" line="1693"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1762"/>
<source>&amp;Select</source>
<translation>Au&amp;swählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1764"/>
<source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Select &amp;All</source>
<translation>&amp;Alles auswählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1770"/>
<source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation>
</message>
@ -1856,9 +1856,9 @@ Drücke 1 für Standardmodus</translation>
<translation>Spielstand kopieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1747"/>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1728"/>
<location filename="../ProfileInterface.cpp" line="1758"/>
<source>&amp;Export</source>
<translation>&amp;Exportieren</translation>
</message>
@ -1952,7 +1952,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source>
<translation>Snapmatic Titel</translation>
@ -2068,19 +2068,19 @@ Drücke 1 für Standardmodus</translation>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source>
<translation>Neuer Snapmatic Titel:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source>
<translation>Snapmatic Crew</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source>
<translation>Neue Snapmatic Crew:</translation>
@ -2208,62 +2208,62 @@ 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="1635"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1683"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Edi&amp;t</source>
<translation>Bearbei&amp;ten</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1647"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<source>&amp;Export</source>
<translation>&amp;Exportieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<source>Show &amp;In-game</source>
<translation>&amp;Im Spiel anzeigen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1745"/>
<location filename="../ProfileInterface.cpp" line="1651"/>
<location filename="../ProfileInterface.cpp" line="1690"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<source>Hide &amp;In-game</source>
<translation>&amp;Im Spiel ausblenden</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1650"/>
<location filename="../ProfileInterface.cpp" line="1661"/>
<source>&amp;View</source>
<translation>A&amp;nsehen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1664"/>
<source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1667"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Select</source>
<translation>Au&amp;swählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../ProfileInterface.cpp" line="1669"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1691"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source>
<translation>Alles &amp;auswählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation>
</message>
@ -2376,29 +2376,29 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1742"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<source>Change &amp;Title...</source>
<translation>&amp;Titel ändern...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1739"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../ProfileInterface.cpp" line="1750"/>
<source>&amp;Qualify as Avatar</source>
<translation>Als Avatar &amp;qualifizieren</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<source>Change &amp;Players...</source>
<translation>S&amp;pieler ändern...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>Change &amp;Crew...</source>
<translation>&amp;Crew ändern...</translation>
</message>
@ -2552,15 +2552,15 @@ Drücke 1 für Standardmodus</translation>
<translation>&amp;Neuladen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation>Im Spiel anzeigen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source>
<translation>Im Spiel ausblenden</translation>

View File

@ -379,7 +379,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="744"/>
<location filename="../ProfileInterface.cpp" line="751"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation>
@ -387,7 +387,7 @@ Pictures and Savegames</source>
<message>
<location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="760"/>
<location filename="../ProfileInterface.cpp" line="767"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation>
@ -1020,31 +1020,31 @@ Y: %2</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1649"/>
<location filename="../ProfileInterface.cpp" line="1660"/>
<source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1643"/>
<location filename="../ProfileInterface.cpp" line="1654"/>
<source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1642"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1645"/>
<location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation>
</message>
@ -1194,7 +1194,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1657"/>
<source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation>
</message>
@ -1227,28 +1227,28 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Add Players...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Failed to add more Players because the limit of Players are %1!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Add Player...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<source>Enter Social Club Player ID</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Failed to add Player %1 because Player %1 is already added!</source>
<translation type="unfinished"></translation>
</message>
@ -1303,40 +1303,40 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="183"/>
<location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<source>Snapmatic Loader</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<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="523"/>
<location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="544"/>
<location filename="../ProfileInterface.cpp" line="545"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Import...</source>
<translation type="unfinished"></translation>
</message>
@ -1351,24 +1351,24 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="551"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Importable files (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../ProfileInterface.cpp" line="559"/>
<location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../ProfileInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation>
@ -1376,46 +1376,46 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="555"/>
<location filename="../ProfileInterface.cpp" line="562"/>
<source>All image files (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="614"/>
<location filename="../ProfileInterface.cpp" line="605"/>
<location filename="../ProfileInterface.cpp" line="621"/>
<source>Import file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<source>Import failed with...
%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source>
<translation type="unfinished"></translation>
@ -1423,147 +1423,147 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<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="559"/>
<location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<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="961"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<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="1122"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<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="1215"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<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="1255"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1355"/>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1359"/>
<location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1370"/>
<source>JPG pictures only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1362"/>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<source>GTA Snapmatic only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<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="1318"/>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<location filename="../ProfileInterface.cpp" line="1401"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<source>Export selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1391"/>
<location filename="../ProfileInterface.cpp" line="1402"/>
<source>Initialising export...</source>
<translation>Initializing export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<source>Export failed with...
%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<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="1447"/>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2319"/>
<source>Patch selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2338"/>
<source>Patch file %1 of %2 files</source>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2027"/>
<location filename="../ProfileInterface.cpp" line="2120"/>
<location filename="../ProfileInterface.cpp" line="2235"/>
<location filename="../ProfileInterface.cpp" line="2330"/>
<source>Patch selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2046"/>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2139"/>
<location filename="../ProfileInterface.cpp" line="2236"/>
<location filename="../ProfileInterface.cpp" line="2254"/>
<location filename="../ProfileInterface.cpp" line="2331"/>
<location filename="../ProfileInterface.cpp" line="2349"/>
<source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>%1 failed with...
%2</source>
@ -1571,70 +1571,70 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1016"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<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="2065"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
@ -1718,45 +1718,45 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1716"/>
<location filename="../ProfileInterface.cpp" line="1727"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1747"/>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1728"/>
<location filename="../ProfileInterface.cpp" line="1758"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1748"/>
<location filename="../ProfileInterface.cpp" line="1693"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1762"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1764"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1770"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -2006,25 +2006,25 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source>
<translation type="unfinished"></translation>
@ -2152,62 +2152,62 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1683"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Edi&amp;t</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<source>Show &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1745"/>
<location filename="../ProfileInterface.cpp" line="1651"/>
<location filename="../ProfileInterface.cpp" line="1690"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<source>Hide &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1647"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1650"/>
<location filename="../ProfileInterface.cpp" line="1661"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1664"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1667"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../ProfileInterface.cpp" line="1669"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1691"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -2405,8 +2405,8 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<source>Change &amp;Players...</source>
<translation type="unfinished"></translation>
</message>
@ -2417,22 +2417,22 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1742"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<source>Change &amp;Title...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>Change &amp;Crew...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1739"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../ProfileInterface.cpp" line="1750"/>
<source>&amp;Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
@ -2488,15 +2488,15 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source>
<translation type="unfinished"></translation>

View File

@ -398,7 +398,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="744"/>
<location filename="../ProfileInterface.cpp" line="751"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Avatar personnalisé</translation>
@ -406,7 +406,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<message>
<location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="760"/>
<location filename="../ProfileInterface.cpp" line="767"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Image personnalisé</translation>
@ -1142,31 +1142,31 @@ Y : %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Picture...</source>
<translation>Exporter comme &amp;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1649"/>
<location filename="../ProfileInterface.cpp" line="1660"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Exporter comme &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1643"/>
<location filename="../ProfileInterface.cpp" line="1654"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Remplacer l&apos;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1642"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Edit Properties...</source>
<translation>Modifier les &amp;propriétés...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1645"/>
<location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;Map Viewer...</source>
<translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
</message>
@ -1233,7 +1233,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1657"/>
<source>Open &amp;JSON Editor...</source>
<translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
</message>
@ -1266,28 +1266,28 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>A&amp;nnuler</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Add Players...</source>
<translation>Ajouter des joueurs...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Failed to add more Players because the limit of Players are %1!</source>
<translation>Échec de l&apos;ajout de joueurs : la limite de %1 est atteinte !</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Add Player...</source>
<translation>Ajouter un joueur...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<source>Enter Social Club Player ID</source>
<translation>Entrer l&apos;ID Social Club du joueur</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Failed to add Player %1 because Player %1 is already added!</source>
<translation>Échec de l&apos;ajout du joueur %1 car le joueur %1 est déjà ajouté !</translation>
</message>
@ -1342,40 +1342,40 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Photos activées : %1 sur %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="183"/>
<location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source>
<translation>Chargement...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<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="523"/>
<location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="544"/>
<location filename="../ProfileInterface.cpp" line="545"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Import...</source>
<translation>Importer...</translation>
</message>
@ -1390,13 +1390,13 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Importer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../ProfileInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source>
<translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Photos Snapmatic (PGTA*)</translation>
@ -1404,26 +1404,26 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message>
<location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="555"/>
<location filename="../ProfileInterface.cpp" line="562"/>
<source>All image files (%1)</source>
<translation>Toutes les images (%1)</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source>
<translation>Tous les fichiers (**)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="614"/>
<location filename="../ProfileInterface.cpp" line="605"/>
<location filename="../ProfileInterface.cpp" line="621"/>
<source>Import file %1 of %2 files</source>
<translation>Importation du fichier %1 sur %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<source>Import failed with...
%1</source>
@ -1432,25 +1432,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source>
<translation>Fichier invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="551"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Importable files (%1)</source>
<translation>Fichiers importables (%1)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source>
<translation>Impossible d&apos;ouvrir la photo Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source>
<translation>Impossible de lire le fichier de sauvegarde</translation>
@ -1458,122 +1458,122 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message>
<location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<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="559"/>
<location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<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="961"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<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="1122"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<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="1215"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<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="1255"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<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="1338"/>
<location filename="../ProfileInterface.cpp" line="1355"/>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>Images JPG et GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1359"/>
<location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1370"/>
<source>JPG pictures only</source>
<translation>Images JPG seulement</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1362"/>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<source>GTA Snapmatic only</source>
<translation>GTA Snapmatic seulement</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<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="1318"/>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<location filename="../ProfileInterface.cpp" line="1401"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<source>Export selected...</source>
<translation>Exporter la sélection...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1391"/>
<location filename="../ProfileInterface.cpp" line="1402"/>
<source>Initialising export...</source>
<translation>Initialisation de l&apos;export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify as Avatar</source>
<translation>Qualifier comme Avatar</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<source>No Snapmatic pictures are selected</source>
<translation>Aucun Snapmatic sélectionné</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2319"/>
<location filename="../ProfileInterface.cpp" line="2027"/>
<location filename="../ProfileInterface.cpp" line="2120"/>
<location filename="../ProfileInterface.cpp" line="2235"/>
<location filename="../ProfileInterface.cpp" line="2330"/>
<source>Patch selected...</source>
<translation>Patcher la sélection...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2338"/>
<location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2046"/>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2139"/>
<location filename="../ProfileInterface.cpp" line="2236"/>
<location filename="../ProfileInterface.cpp" line="2254"/>
<location filename="../ProfileInterface.cpp" line="2331"/>
<location filename="../ProfileInterface.cpp" line="2349"/>
<source>Patch file %1 of %2 files</source>
<translation>Patch du fichier %1 sur %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>%1 failed with...
%2</source>
@ -1583,76 +1583,76 @@ Appuyer sur 1 pour le mode par défaut</translation>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<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="1016"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>Préparation du contenu pour l&apos;import...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<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="2065"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Qualifier</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players...</source>
<translation>Modifier les joueurs...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Modifier les joueurs</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew...</source>
<translation>Modifier le Crew...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Snapmatic Crew ID invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Changer le Crew</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title...</source>
<translation>Changer le titre...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Titre Snapmatic invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Changer le titre</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<source>Export failed with...
%1</source>
@ -1661,20 +1661,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<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="1447"/>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source>
<translation>Supprimer la sélection</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Supprimer la sélection ?</translation>
</message>
@ -1684,7 +1684,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="552"/>
<location filename="../ProfileInterface.cpp" line="559"/>
<location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
@ -1778,9 +1778,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1747"/>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1728"/>
<location filename="../ProfileInterface.cpp" line="1758"/>
<source>&amp;Export</source>
<translation>&amp;Exporter</translation>
</message>
@ -1871,38 +1871,38 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible de supprimer %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1716"/>
<location filename="../ProfileInterface.cpp" line="1727"/>
<source>&amp;View</source>
<translation>&amp;Voir</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1748"/>
<location filename="../ProfileInterface.cpp" line="1693"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Remove</source>
<translation>&amp;Supprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1762"/>
<source>&amp;Select</source>
<translation>&amp;Sélectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1764"/>
<source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Select &amp;All</source>
<translation>Sélectionner to&amp;ut</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1770"/>
<source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation>
</message>
@ -1958,7 +1958,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source>
<translation>Titre Snapmatic</translation>
@ -2076,19 +2076,19 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source>
<translation>Nouveau titre Snapmatic :</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source>
<translation>Crew Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source>
<translation>Nouveau crew Snapmatic :</translation>
@ -2236,62 +2236,62 @@ 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="1635"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1683"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Edi&amp;t</source>
<translation>Édi&amp;ter</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<source>Show &amp;In-game</source>
<translation>&amp;Visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1745"/>
<location filename="../ProfileInterface.cpp" line="1651"/>
<location filename="../ProfileInterface.cpp" line="1690"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<source>Hide &amp;In-game</source>
<translation>&amp;Invisible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1647"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<source>&amp;Export</source>
<translation>&amp;Exporter</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1650"/>
<location filename="../ProfileInterface.cpp" line="1661"/>
<source>&amp;View</source>
<translation>&amp;Voir</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1664"/>
<source>&amp;Remove</source>
<translation>S&amp;upprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1667"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Select</source>
<translation>&amp;Sélectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../ProfileInterface.cpp" line="1669"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1691"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source>
<translation>Sélectionner &amp;tout</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation>
</message>
@ -2446,8 +2446,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<source>Change &amp;Players...</source>
<translation>Modifier les &amp;joueurs...</translation>
</message>
@ -2458,22 +2458,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1742"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<source>Change &amp;Title...</source>
<translation>Changer le &amp;titre...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>Change &amp;Crew...</source>
<translation>Changer le &amp;Crew...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1739"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../ProfileInterface.cpp" line="1750"/>
<source>&amp;Qualify as Avatar</source>
<translation>&amp;Qualifier comme Avatar</translation>
</message>
@ -2560,15 +2560,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>%1 - Nouvelles</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation>Visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source>
<translation>Invisible en jeu</translation>

View File

@ -395,7 +395,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="744"/>
<location filename="../ProfileInterface.cpp" line="751"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment>
@ -404,7 +404,7 @@ Pictures and Savegames</source>
<message>
<location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="760"/>
<location filename="../ProfileInterface.cpp" line="767"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment>
@ -1073,37 +1073,37 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Picture...</source>
<translation> PC에 (&amp;P)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1649"/>
<location filename="../ProfileInterface.cpp" line="1660"/>
<source>Export as &amp;Snapmatic...</source>
<translation> PC에 (&amp;S)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1642"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Edit Properties...</source>
<translation> (&amp;E)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1643"/>
<location filename="../ProfileInterface.cpp" line="1654"/>
<source>&amp;Overwrite Image...</source>
<translation> (&amp;O)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1645"/>
<location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;Map Viewer...</source>
<translation> (&amp;M)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1657"/>
<source>Open &amp;JSON Editor...</source>
<translation>JSON (&amp;J)</translation>
</message>
@ -1283,28 +1283,28 @@ Press 1 for Default View</source>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Add Players...</source>
<translation> </translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Failed to add more Players because the limit of Players are %1!</source>
<translation> %1 !</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Add Player...</source>
<translation> </translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<source>Enter Social Club Player ID</source>
<translation> </translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Failed to add Player %1 because Player %1 is already added!</source>
<translation>%1 %1 !</translation>
</message>
@ -1356,23 +1356,23 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="544"/>
<location filename="../ProfileInterface.cpp" line="545"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Import...</source>
<translation></translation>
</message>
@ -1389,14 +1389,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="555"/>
<location filename="../ProfileInterface.cpp" line="562"/>
<source>All image files (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source>
<translation> (**)</translation>
@ -1404,14 +1404,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1 .</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1 .</translation>
</message>
@ -1421,58 +1421,58 @@ Press 1 for Default View</source>
<translation> : %2 %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="183"/>
<location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source>
<translation> ...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<source>Snapmatic Loader</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<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="551"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Importable files (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../ProfileInterface.cpp" line="559"/>
<location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V로 (*.g5e)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../ProfileInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source>
<translation> (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation> (PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="614"/>
<location filename="../ProfileInterface.cpp" line="605"/>
<location filename="../ProfileInterface.cpp" line="621"/>
<source>Import file %1 of %2 files</source>
<translation>%2 %1 .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<source>Import failed with...
%1</source>
@ -1481,91 +1481,91 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<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="1016"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<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="1128"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<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="1215"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation> . .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation> . .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<location filename="../ProfileInterface.cpp" line="1401"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<source>Export selected...</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1355"/>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1359"/>
<location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1370"/>
<source>JPG pictures only</source>
<translation>JPG </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1362"/>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<source>GTA Snapmatic only</source>
<translation>GTA </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<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="1391"/>
<location filename="../ProfileInterface.cpp" line="1402"/>
<source>Initialising export...</source>
<translation> ...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<source>Export failed with...
%1</source>
@ -1574,45 +1574,45 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<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="1447"/>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> ?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<source>No Snapmatic pictures are selected</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>%1 failed with...
%2</source>
@ -1623,84 +1623,84 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify as Avatar</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2319"/>
<location filename="../ProfileInterface.cpp" line="2027"/>
<location filename="../ProfileInterface.cpp" line="2120"/>
<location filename="../ProfileInterface.cpp" line="2235"/>
<location filename="../ProfileInterface.cpp" line="2330"/>
<source>Patch selected...</source>
<translation> ...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2338"/>
<location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2046"/>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2139"/>
<location filename="../ProfileInterface.cpp" line="2236"/>
<location filename="../ProfileInterface.cpp" line="2254"/>
<location filename="../ProfileInterface.cpp" line="2331"/>
<location filename="../ProfileInterface.cpp" line="2349"/>
<source>Patch file %1 of %2 files</source>
<translation>%2 %1 .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players...</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew...</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title...</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment>
@ -1800,45 +1800,45 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1716"/>
<location filename="../ProfileInterface.cpp" line="1727"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1747"/>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1728"/>
<location filename="../ProfileInterface.cpp" line="1758"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1748"/>
<location filename="../ProfileInterface.cpp" line="1693"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1762"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1764"/>
<source>&amp;Deselect</source>
<translation> (&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Select &amp;All</source>
<translation> (&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1770"/>
<source>&amp;Deselect All</source>
<translation> (&amp;D)</translation>
</message>
@ -2043,25 +2043,25 @@ Press 1 for Default View</source>
<translation>JSON .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source>
<translation> :</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source>
<translation> :</translation>
@ -2241,62 +2241,62 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1683"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Edi&amp;t</source>
<translation>(&amp;T)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<source>Show &amp;In-game</source>
<translation> (&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1745"/>
<location filename="../ProfileInterface.cpp" line="1651"/>
<location filename="../ProfileInterface.cpp" line="1690"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<source>Hide &amp;In-game</source>
<translation> (&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1647"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1650"/>
<location filename="../ProfileInterface.cpp" line="1661"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1664"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1667"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../ProfileInterface.cpp" line="1669"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source>
<translation> (&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1691"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source>
<translation> (&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>&amp;Deselect All</source>
<translation> (&amp;D)</translation>
</message>
@ -2500,42 +2500,42 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1742"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<source>Change &amp;Title...</source>
<translation> (&amp;T)</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>Change &amp;Crew...</source>
<translation>&amp; (&amp;C)</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1739"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../ProfileInterface.cpp" line="1750"/>
<source>&amp;Qualify as Avatar</source>
<translation> (&amp;Q)</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<source>Change &amp;Players...</source>
<translation> (&amp;P)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source>
<translation> </translation>

View File

@ -409,7 +409,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="744"/>
<location filename="../ProfileInterface.cpp" line="751"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Свой Аватар</translation>
@ -417,7 +417,7 @@ Pictures and Savegames</source>
<message>
<location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="760"/>
<location filename="../ProfileInterface.cpp" line="767"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Своя Картинка</translation>
@ -1076,31 +1076,31 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Picture...</source>
<translation>Экспортировать как &amp;картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1649"/>
<location filename="../ProfileInterface.cpp" line="1660"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Экспортировать как &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1643"/>
<location filename="../ProfileInterface.cpp" line="1654"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписать картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1642"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Изменить свойства...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1645"/>
<location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;Map Viewer...</source>
<translation>Открыть &amp;карту...</translation>
</message>
@ -1247,7 +1247,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1657"/>
<source>Open &amp;JSON Editor...</source>
<translation>Открыть &amp;редактор JSON...</translation>
</message>
@ -1280,28 +1280,28 @@ Press 1 for Default View</source>
<translation>&amp;Отмена</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Add Players...</source>
<translation>Добавить игроков...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Failed to add more Players because the limit of Players are %1!</source>
<translation>Невозможно добавить больше игроков из-за ограничения в %1!</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Add Player...</source>
<translation>Добавить игрока...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<source>Enter Social Club Player ID</source>
<translation>Введите идентификатор игрока из Social Club</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Failed to add Player %1 because Player %1 is already added!</source>
<translation>Нельзя повторно добавить игрока %1, %1 уже добавлен!</translation>
</message>
@ -1344,17 +1344,17 @@ Press 1 for Default View</source>
<translation>&amp;Закрыть</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="183"/>
<location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source>
<translation>Загрузка...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<source>Snapmatic Loader</source>
<translation>Загрузчик Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<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>
@ -1363,23 +1363,23 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="544"/>
<location filename="../ProfileInterface.cpp" line="545"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Import...</source>
<translation>Импортировать...</translation>
</message>
@ -1394,13 +1394,13 @@ Press 1 for Default View</source>
<translation>Импортировать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../ProfileInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source>
<translation>Файлы сохранения (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Картинка Snapmatic (PGTA*)</translation>
@ -1408,19 +1408,19 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source>
<translation>Все файлы (**)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="614"/>
<location filename="../ProfileInterface.cpp" line="605"/>
<location filename="../ProfileInterface.cpp" line="621"/>
<source>Import file %1 of %2 files</source>
<translation>Импортируются файлы %1 из %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<source>Import failed with...
%1</source>
@ -1429,20 +1429,20 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source>
<translation>Не удалось загрузить картинку Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source>
<translation>Не удалось загрузить файл сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source>
<translation>Выбранный файл неверен</translation>
@ -1453,145 +1453,145 @@ Press 1 for Default View</source>
<translation>Включенные картинки: %1 из %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="551"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Importable files (%1)</source>
<translation>Файлы для импорта (%1)</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="555"/>
<location filename="../ProfileInterface.cpp" line="562"/>
<source>All image files (%1)</source>
<translation>Все файлы изображений (%1)</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<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="961"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<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="1122"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<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="1215"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1355"/>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>Картинки JPG и GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1359"/>
<location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1370"/>
<source>JPG pictures only</source>
<translation>Только картинки JPG</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1362"/>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<source>GTA Snapmatic only</source>
<translation>Только GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1391"/>
<location filename="../ProfileInterface.cpp" line="1402"/>
<source>Initialising export...</source>
<translation>Подготовка к экспорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<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="1447"/>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source>
<translation>Снять выделение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1016"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>Подготовка данных к импорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify as Avatar</source>
<translation>Пометить как Аватар</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<source>No Snapmatic pictures are selected</source>
<translation>Не выделена ни одна картинка Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2319"/>
<location filename="../ProfileInterface.cpp" line="2027"/>
<location filename="../ProfileInterface.cpp" line="2120"/>
<location filename="../ProfileInterface.cpp" line="2235"/>
<location filename="../ProfileInterface.cpp" line="2330"/>
<source>Patch selected...</source>
<translation>Пропатчить выделенные...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2338"/>
<location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2046"/>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2139"/>
<location filename="../ProfileInterface.cpp" line="2236"/>
<location filename="../ProfileInterface.cpp" line="2254"/>
<location filename="../ProfileInterface.cpp" line="2331"/>
<location filename="../ProfileInterface.cpp" line="2349"/>
<source>Patch file %1 of %2 files</source>
<translation>Изменяется файл %1 из %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>%1 failed with...
%2</source>
@ -1601,86 +1601,86 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<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="1470"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Помечание</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players...</source>
<translation>Изменить игроков...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Измение игроков</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew...</source>
<translation>Изменить банду...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Введённый идентификатор банды не верен</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Изменение банды</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title...</source>
<translation>Изменить заголовок...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Введённый заголовок не верен</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Изменение заголовка</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<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="1318"/>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<location filename="../ProfileInterface.cpp" line="1401"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<source>Export selected...</source>
<translation>Экпортировать выделенное...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<source>Export failed with...
%1</source>
@ -1701,7 +1701,7 @@ Press 1 for Default View</source>
<translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../ProfileInterface.cpp" line="559"/>
<location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
@ -1830,38 +1830,38 @@ Press 1 for Default View</source>
<translation>Не удалось удалить сохранение %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1716"/>
<location filename="../ProfileInterface.cpp" line="1727"/>
<source>&amp;View</source>
<translation>&amp;Просмотр</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1748"/>
<location filename="../ProfileInterface.cpp" line="1693"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Remove</source>
<translation>&amp;Удалить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1762"/>
<source>&amp;Select</source>
<translation>&amp;Выбрать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1764"/>
<source>&amp;Deselect</source>
<translation>Сн&amp;ять выбор</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1770"/>
<source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation>
</message>
@ -1871,9 +1871,9 @@ Press 1 for Default View</source>
<translation>Копировать сохранение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1747"/>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1728"/>
<location filename="../ProfileInterface.cpp" line="1758"/>
<source>&amp;Export</source>
<translation>&amp;Экспортировать</translation>
</message>
@ -1977,7 +1977,7 @@ Press 1 for Default View</source>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source>
<translation>Заголовок Snapmatic</translation>
@ -2083,19 +2083,19 @@ Press 1 for Default View</source>
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source>
<translation>Новый заголовок Snapmatic:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source>
<translation>Банда на Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source>
<translation>Новая банда на Snapmatic:</translation>
@ -2233,62 +2233,62 @@ Press 1 for Default View</source>
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1683"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Edi&amp;t</source>
<translation>&amp;Правка</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<source>Show &amp;In-game</source>
<translation>Показывать в &amp;игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1745"/>
<location filename="../ProfileInterface.cpp" line="1651"/>
<location filename="../ProfileInterface.cpp" line="1690"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<source>Hide &amp;In-game</source>
<translation>Ск&amp;рыть в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1647"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<source>&amp;Export</source>
<translation>&amp;Экспорт</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1650"/>
<location filename="../ProfileInterface.cpp" line="1661"/>
<source>&amp;View</source>
<translation>По&amp;казать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1664"/>
<source>&amp;Remove</source>
<translation>У&amp;далить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1667"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Select</source>
<translation>&amp;Выделить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../ProfileInterface.cpp" line="1669"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source>
<translation>Сн&amp;ять выделение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1691"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation>
</message>
@ -2412,29 +2412,29 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<source>Change &amp;Players...</source>
<translation>&amp;Изменить игрока...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1742"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<source>Change &amp;Title...</source>
<translation>Изменить &amp;Заголовок...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>Change &amp;Crew...</source>
<translation>Изменить &amp;банду...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1739"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../ProfileInterface.cpp" line="1750"/>
<source>&amp;Qualify as Avatar</source>
<translation>&amp;Пометить как Аватар</translation>
</message>
@ -2567,15 +2567,15 @@ Press 1 for Default View</source>
<translation>Пере&amp;загрузить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation>Показывать в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source>
<translation>Скрыть в игре</translation>

View File

@ -398,7 +398,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="744"/>
<location filename="../ProfileInterface.cpp" line="751"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацький Аватар</translation>
@ -406,7 +406,7 @@ Pictures and Savegames</source>
<message>
<location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="760"/>
<location filename="../ProfileInterface.cpp" line="767"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацьке Зображення</translation>
@ -1063,37 +1063,37 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Picture...</source>
<translation>Експортувати як &amp;зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1649"/>
<location filename="../ProfileInterface.cpp" line="1660"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Експортувати як &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1642"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Змінити властивості...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1643"/>
<location filename="../ProfileInterface.cpp" line="1654"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписати зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1645"/>
<location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;Map Viewer...</source>
<translation>Відкрити &amp;карту...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1657"/>
<source>Open &amp;JSON Editor...</source>
<translation>Відкрити редактор &amp;JSON...</translation>
</message>
@ -1273,28 +1273,28 @@ Press 1 for Default View</source>
<translation>&amp;Скасувати</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Add Players...</source>
<translation>Додати гравців...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Failed to add more Players because the limit of Players are %1!</source>
<translation>Не вдалося додати більше гравців, бо ліміт %1!</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Add Player...</source>
<translation>Додати гравця...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<source>Enter Social Club Player ID</source>
<translation>Введіть ID гравця Social Club</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Failed to add Player %1 because Player %1 is already added!</source>
<translation>Не вдалося додати гравця %1, оскільки %1 вже доданий!</translation>
</message>
@ -1346,23 +1346,23 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="544"/>
<location filename="../ProfileInterface.cpp" line="545"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Import...</source>
<translation>Імпортування...</translation>
</message>
@ -1379,14 +1379,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="555"/>
<location filename="../ProfileInterface.cpp" line="562"/>
<source>All image files (%1)</source>
<translation>Файли зображень (%1)</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source>
<translation>Усі файли (**)</translation>
@ -1394,14 +1394,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
</message>
@ -1411,58 +1411,58 @@ Press 1 for Default View</source>
<translation>Увімкнено фотографії:%1 з%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="183"/>
<location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source>
<translation>Завантаження...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<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="551"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Importable files (%1)</source>
<translation>Імпортуються файли (%1)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../ProfileInterface.cpp" line="559"/>
<location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../ProfileInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source>
<translation>Файли збереження гри (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic зображення (PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source>
<translation>Вибрані недійсні файли</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="614"/>
<location filename="../ProfileInterface.cpp" line="605"/>
<location filename="../ProfileInterface.cpp" line="621"/>
<source>Import file %1 of %2 files</source>
<translation>Імпортується файл %1 з %2 файлів</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<source>Import failed with...
%1</source>
@ -1471,81 +1471,81 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source>
<translation>Не вдалося прочитати Snapmatic картинку</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source>
<translation>Не вдалося прочитати файл збереження гри</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<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="1122"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<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="1215"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<location filename="../ProfileInterface.cpp" line="1401"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<source>Export selected...</source>
<translation>Експорт обраних...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1355"/>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG картинки і GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1359"/>
<location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1370"/>
<source>JPG pictures only</source>
<translation>Тільки JPG картинки</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1362"/>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<source>GTA Snapmatic only</source>
<translation>Тільки GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<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="1391"/>
<location filename="../ProfileInterface.cpp" line="1402"/>
<source>Initialising export...</source>
<translation>Ініціалізація експорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<source>Export failed with...
%1</source>
@ -1554,45 +1554,45 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<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="1447"/>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source>
<translation>Видалити вибрані</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<source>No Snapmatic pictures are selected</source>
<translation>Не вибрано жодного Snapmatic зображення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>%1 failed with...
%2</source>
@ -1602,91 +1602,91 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1016"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>Підготувати контент для імпорту ...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<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="2005"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify as Avatar</source>
<translation>Позначити як Аватар</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2319"/>
<location filename="../ProfileInterface.cpp" line="2027"/>
<location filename="../ProfileInterface.cpp" line="2120"/>
<location filename="../ProfileInterface.cpp" line="2235"/>
<location filename="../ProfileInterface.cpp" line="2330"/>
<source>Patch selected...</source>
<translation>Вибір патчу...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2338"/>
<location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2046"/>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2139"/>
<location filename="../ProfileInterface.cpp" line="2236"/>
<location filename="../ProfileInterface.cpp" line="2254"/>
<location filename="../ProfileInterface.cpp" line="2331"/>
<location filename="../ProfileInterface.cpp" line="2349"/>
<source>Patch file %1 of %2 files</source>
<translation>Патч файлу %1 з %2 файлів</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Якість</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players...</source>
<translation>Зміна гравців...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Змінити гравців</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew...</source>
<translation>Зміна банди...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Змінити банду</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title...</source>
<translation>Зміна назви...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Змінити назву</translation>
@ -1785,45 +1785,45 @@ Press 1 for Default View</source>
<translation>Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1716"/>
<location filename="../ProfileInterface.cpp" line="1727"/>
<source>&amp;View</source>
<translation>&amp;Перегляд</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1747"/>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1728"/>
<location filename="../ProfileInterface.cpp" line="1758"/>
<source>&amp;Export</source>
<translation>&amp;Експорт</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1748"/>
<location filename="../ProfileInterface.cpp" line="1693"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Remove</source>
<translation>&amp;Видалення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1762"/>
<source>&amp;Select</source>
<translation>&amp;Виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1764"/>
<source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1770"/>
<source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation>
</message>
@ -2028,25 +2028,25 @@ Press 1 for Default View</source>
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source>
<translation>Snapmatic банда</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source>
<translation>Нова Snapmatic банда:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source>
<translation>Snapmatic назва</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source>
<translation>Новий Snapmatic заголовок:</translation>
@ -2221,62 +2221,62 @@ Press 1 for Default View</source>
<translation>Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1683"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Edi&amp;t</source>
<translation>Редагува&amp;ти</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<source>Show &amp;In-game</source>
<translation>Показати &amp;у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1745"/>
<location filename="../ProfileInterface.cpp" line="1651"/>
<location filename="../ProfileInterface.cpp" line="1690"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<source>Hide &amp;In-game</source>
<translation>Сховати &amp;у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1647"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<source>&amp;Export</source>
<translation>&amp;Експортувати</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1650"/>
<location filename="../ProfileInterface.cpp" line="1661"/>
<source>&amp;View</source>
<translation>&amp;Переглянути</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1664"/>
<source>&amp;Remove</source>
<translation>&amp;Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1667"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Select</source>
<translation>&amp;Виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../ProfileInterface.cpp" line="1669"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1691"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation>
</message>
@ -2480,42 +2480,42 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1742"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<source>Change &amp;Title...</source>
<translation>Змінити &amp;заголовок...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>Change &amp;Crew...</source>
<translation>Змінити &amp;банду...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1739"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../ProfileInterface.cpp" line="1750"/>
<source>&amp;Qualify as Avatar</source>
<translation>Позначити як &amp;аватар</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<source>Change &amp;Players...</source>
<translation>Змінити &amp;гравців...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation>Показати у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source>
<translation>Сховати у грі</translation>

View File

@ -394,7 +394,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="744"/>
<location filename="../ProfileInterface.cpp" line="751"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation></translation>
@ -402,7 +402,7 @@ Pictures and Savegames</source>
<message>
<location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="760"/>
<location filename="../ProfileInterface.cpp" line="767"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation></translation>
@ -1057,37 +1057,37 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1659"/>
<source>Export as &amp;Picture...</source>
<translation>(&amp;P)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1649"/>
<location filename="../ProfileInterface.cpp" line="1660"/>
<source>Export as &amp;Snapmatic...</source>
<translation> Snapmatic(&amp;S)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1642"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Edit Properties...</source>
<translation>(&amp;E) ...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1643"/>
<location filename="../ProfileInterface.cpp" line="1654"/>
<source>&amp;Overwrite Image...</source>
<translation>(&amp;O)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1645"/>
<location filename="../ProfileInterface.cpp" line="1656"/>
<source>Open &amp;Map Viewer...</source>
<translation>(&amp;M)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1657"/>
<source>Open &amp;JSON Editor...</source>
<translation> JSON (&amp;J)...</translation>
</message>
@ -1267,28 +1267,28 @@ Press 1 for Default View</source>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Add Players...</source>
<translation>...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="160"/>
<location filename="../PlayerListDialog.cpp" line="161"/>
<source>Failed to add more Players because the limit of Players are %1!</source>
<translation> %1!</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Add Player...</source>
<translation>...</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="176"/>
<location filename="../PlayerListDialog.cpp" line="177"/>
<source>Enter Social Club Player ID</source>
<translation> Social Club ID</translation>
</message>
<message>
<location filename="../PlayerListDialog.cpp" line="195"/>
<location filename="../PlayerListDialog.cpp" line="196"/>
<source>Failed to add Player %1 because Player %1 is already added!</source>
<translation> %1 %1 !</translation>
</message>
@ -1340,23 +1340,23 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="544"/>
<location filename="../ProfileInterface.cpp" line="545"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Import...</source>
<translation>...</translation>
</message>
@ -1373,14 +1373,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="555"/>
<location filename="../ProfileInterface.cpp" line="562"/>
<source>All image files (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source>
<translation> (**)</translation>
@ -1388,14 +1388,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="811"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="820"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1</translation>
</message>
@ -1405,184 +1405,184 @@ Press 1 for Default View</source>
<translation> %1 %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="183"/>
<location filename="../ProfileInterface.cpp" line="185"/>
<source>Loading...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<source>Snapmatic Loader</source>
<translation>Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="464"/>
<location filename="../ProfileInterface.cpp" line="471"/>
<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="551"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Importable files (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../ProfileInterface.cpp" line="559"/>
<location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../ProfileInterface.cpp" line="560"/>
<location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source>
<translation> (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../ProfileInterface.cpp" line="561"/>
<location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic (PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="583"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="614"/>
<location filename="../ProfileInterface.cpp" line="605"/>
<location filename="../ProfileInterface.cpp" line="621"/>
<source>Import file %1 of %2 files</source>
<translation> %1 %2 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="634"/>
<source>Import failed with...
%1</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="676"/>
<location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="711"/>
<location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="968"/>
<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="1122"/>
<location filename="../ProfileInterface.cpp" line="1129"/>
<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="1215"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1260"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1266"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<location filename="../ProfileInterface.cpp" line="1401"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<source>Export selected...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1355"/>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1359"/>
<location filename="../ProfileInterface.cpp" line="1350"/>
<location filename="../ProfileInterface.cpp" line="1370"/>
<source>JPG pictures only</source>
<translation> JPG </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1362"/>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<source>GTA Snapmatic only</source>
<translation> GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<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="1391"/>
<location filename="../ProfileInterface.cpp" line="1402"/>
<source>Initialising export...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<source>Export failed with...
%1</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1451"/>
<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="1447"/>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Remove selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1458"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> Snapmatic /?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1481"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> Snapmatic /</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<source>No Snapmatic pictures are selected</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>%1 failed with...
%2</source>
@ -1592,91 +1592,91 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1016"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<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="2005"/>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify as Avatar</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2319"/>
<location filename="../ProfileInterface.cpp" line="2027"/>
<location filename="../ProfileInterface.cpp" line="2120"/>
<location filename="../ProfileInterface.cpp" line="2235"/>
<location filename="../ProfileInterface.cpp" line="2330"/>
<source>Patch selected...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2338"/>
<location filename="../ProfileInterface.cpp" line="2028"/>
<location filename="../ProfileInterface.cpp" line="2046"/>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2139"/>
<location filename="../ProfileInterface.cpp" line="2236"/>
<location filename="../ProfileInterface.cpp" line="2254"/>
<location filename="../ProfileInterface.cpp" line="2331"/>
<location filename="../ProfileInterface.cpp" line="2349"/>
<source>Patch file %1 of %2 files</source>
<translation> %1 %2 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2076"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2184"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2214"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> ID</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2280"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2313"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2361"/>
<location filename="../ProfileInterface.cpp" line="2372"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation></translation>
@ -1767,45 +1767,45 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1716"/>
<location filename="../ProfileInterface.cpp" line="1727"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1747"/>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1728"/>
<location filename="../ProfileInterface.cpp" line="1758"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1748"/>
<location filename="../ProfileInterface.cpp" line="1693"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1762"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1764"/>
<source>&amp;Deselect</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Select &amp;All</source>
<translation>(&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1770"/>
<source>&amp;Deselect All</source>
<translation>(&amp;D)</translation>
</message>
@ -2010,25 +2010,25 @@ Press 1 for Default View</source>
<translation>JSON Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../ProfileInterface.cpp" line="2208"/>
<location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source>
<translation>:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../ProfileInterface.cpp" line="2310"/>
<location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source>
<translation>:</translation>
@ -2203,62 +2203,62 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1646"/>
<location filename="../ProfileInterface.cpp" line="1683"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Edi&amp;t</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<location filename="../ProfileInterface.cpp" line="1648"/>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<source>Show &amp;In-game</source>
<translation>(&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1745"/>
<location filename="../ProfileInterface.cpp" line="1651"/>
<location filename="../ProfileInterface.cpp" line="1690"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<source>Hide &amp;In-game</source>
<translation>(&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1647"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1650"/>
<location filename="../ProfileInterface.cpp" line="1661"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1664"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1667"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../ProfileInterface.cpp" line="1669"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<source>&amp;Deselect</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1691"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>Select &amp;All</source>
<translation>(&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>&amp;Deselect All</source>
<translation>(&amp;D)</translation>
</message>
@ -2461,42 +2461,42 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1742"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../ProfileInterface.cpp" line="1753"/>
<source>Change &amp;Title...</source>
<translation>(&amp;T)...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>Change &amp;Crew...</source>
<translation>(&amp;C)...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1739"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../ProfileInterface.cpp" line="1750"/>
<source>&amp;Qualify as Avatar</source>
<translation>(&amp;Q)</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../ProfileInterface.cpp" line="1751"/>
<source>Change &amp;Players...</source>
<translation>(&amp;P)...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1594"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source>
<translation></translation>