added the ability to import duplicates

This commit is contained in:
Syping 2018-07-27 04:26:10 +02:00
parent 9ced2253fc
commit c29cc44717
17 changed files with 928 additions and 854 deletions

View File

@ -183,6 +183,7 @@ bool JsonEditorDialog::saveJsonContent()
return false;
}
jsonCode = newCode;
smpic->updateStrings();
smpic->emitUpdate();
return true;
}

View File

@ -480,7 +480,7 @@ fileDialogPreOpen: //Work?
fileDialog.setOption(QFileDialog::DontUseNativeDialog, dontUseNativeDialog);
fileDialog.setWindowFlags(fileDialog.windowFlags()^Qt::WindowContextHelpButtonHint);
fileDialog.setWindowTitle(tr("Import..."));
fileDialog.setLabelText(QFileDialog::Accept, tr("Import"));
fileDialog.setLabelText(QFileDialog::Accept, tr("Import..."));
// Getting readable Image formats
QString imageFormatsStr = " ";
@ -524,7 +524,7 @@ fileDialogPreOpen: //Work?
}
else
{
QMessageBox::warning(this, tr("Import"), tr("No valid file is selected"));
QMessageBox::warning(this, tr("Import..."), tr("No valid file is selected"));
goto fileDialogPreOpen; //Work?
}
}
@ -579,7 +579,7 @@ bool ProfileInterface::importFilesProgress(QStringList selectedFiles)
if (errorStr != "")
{
errorStr.remove(0, 2);
QMessageBox::warning(this, tr("Import"), tr("Import failed with...\n\n%1").arg(errorStr));
QMessageBox::warning(this, tr("Import..."), tr("Import failed with...\n\n%1").arg(errorStr));
return false;
}
return true;
@ -601,7 +601,7 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
}
else
{
if (notMultiple) QMessageBox::warning(this, tr("Import"), tr("Failed to read Snapmatic picture"));
if (notMultiple) QMessageBox::warning(this, tr("Import..."), tr("Failed to read Snapmatic picture"));
delete picture;
return false;
}
@ -617,7 +617,7 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
}
else
{
if (notMultiple) QMessageBox::warning(this, tr("Import"), tr("Failed to read Savegame file"));
if (notMultiple) QMessageBox::warning(this, tr("Import..."), tr("Failed to read Savegame file"));
delete savegame;
return false;
}
@ -722,7 +722,7 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
QFile snapmaticFile(selectedFile);
if (!snapmaticFile.open(QFile::ReadOnly))
{
QMessageBox::warning(this, tr("Import"), tr("Can't import %1 because file can't be open").arg("\""+selectedFileName+"\""));
QMessageBox::warning(this, tr("Import..."), tr("Can't import %1 because file can't be open").arg("\""+selectedFileName+"\""));
delete picture;
return false;
}
@ -732,7 +732,7 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
snapmaticImageReader.setDevice(&snapmaticFile);
if (!snapmaticImageReader.read(snapmaticImage))
{
QMessageBox::warning(this, tr("Import"), tr("Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\""));
QMessageBox::warning(this, tr("Import..."), tr("Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\""));
delete snapmaticImage;
delete picture;
return false;
@ -811,12 +811,12 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
#endif
delete picture;
delete savegame;
if (notMultiple) QMessageBox::warning(this, tr("Import"), tr("Can't import %1 because file format can't be detected").arg("\""+selectedFileName+"\""));
if (notMultiple) QMessageBox::warning(this, tr("Import..."), tr("Can't import %1 because file format can't be detected").arg("\""+selectedFileName+"\""));
return false;
}
}
}
if (notMultiple) QMessageBox::warning(this, tr("Import"), tr("No valid file is selected"));
if (notMultiple) QMessageBox::warning(this, tr("Import..."), tr("No valid file is selected"));
return false;
}
@ -976,15 +976,86 @@ bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool wa
QString adjustedFileName = picture->getOriginalPictureFileName();
if (picFileName.left(4) != "PGTA")
{
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e"));
if (warn) QMessageBox::warning(this, tr("Import..."), tr("Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e"));
return false;
}
else if (QFile::exists(profileFolder % "/" % adjustedFileName) || QFile::exists(profileFolder % "/" % adjustedFileName % ".hidden"))
{
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Snapmatic picture, the picture is already in the game"));
return false;
SnapmaticProperties snapmaticProperties = picture->getSnapmaticProperties();
if (warn)
{
int uchoice = QMessageBox::question(this, tr("Import..."), tr("A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?").arg(QString::number(snapmaticProperties.uid)), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
if (uchoice == QMessageBox::Yes)
{
// Update Snapmatic uid
snapmaticProperties.uid = getRandomUid();
snapmaticProperties.createdDateTime = QDateTime::currentDateTime();
snapmaticProperties.createdTimestamp = snapmaticProperties.createdDateTime.toTime_t();
bool fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid));
bool fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".bak");
bool fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".hidden");
int cEnough = 0;
while ((fExists || fExistsBackup || fExistsHidden) && cEnough < findRetryLimit)
{
snapmaticProperties.uid = getRandomUid();
fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid));
fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".bak");
fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".hidden");
cEnough++;
}
if (fExists || fExistsBackup || fExistsHidden)
{
// That should never happen
return false;
}
if (!picture->setSnapmaticProperties(snapmaticProperties))
{
// That should never happen
return false;
}
picture->updateStrings();
picFileName = picture->getPictureFileName();
adjustedFileName = picture->getOriginalPictureFileName();
}
else
{
return false;
}
}
else
{
// Update Snapmatic uid
snapmaticProperties.uid = getRandomUid();
snapmaticProperties.createdDateTime = QDateTime::currentDateTime();
snapmaticProperties.createdTimestamp = snapmaticProperties.createdDateTime.toTime_t();
bool fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid));
bool fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".bak");
bool fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".hidden");
int cEnough = 0;
while ((fExists || fExistsBackup || fExistsHidden) && cEnough < findRetryLimit)
{
snapmaticProperties.uid = getRandomUid();
fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid));
fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".bak");
fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(snapmaticProperties.uid) % ".hidden");
cEnough++;
}
if (fExists || fExistsBackup || fExistsHidden)
{
// That should never happen
return false;
}
if (!picture->setSnapmaticProperties(snapmaticProperties))
{
// That should never happen
return false;
}
picture->updateStrings();
picFileName = picture->getPictureFileName();
adjustedFileName = picture->getOriginalPictureFileName();
}
}
else if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format))
if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format))
{
picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format);
picture->setPicFilePath(profileFolder % "/" % adjustedFileName);
@ -993,7 +1064,7 @@ bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool wa
}
else
{
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Snapmatic picture, can't copy the file into profile"));
if (warn) QMessageBox::warning(this, tr("Import..."), tr("Failed to import the Snapmatic picture, can't copy the file into profile"));
return false;
}
}
@ -1030,13 +1101,13 @@ bool ProfileInterface::importSavegameData(SavegameData *savegame, QString sgdPat
}
else
{
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Savegame, can't copy the file into profile"));
if (warn) QMessageBox::warning(this, tr("Import..."), tr("Failed to import the Savegame, can't copy the file into profile"));
return false;
}
}
else
{
if (warn) QMessageBox::warning(this, tr("Import"), tr("Failed to import the Savegame, no Savegame slot is left"));
if (warn) QMessageBox::warning(this, tr("Import..."), tr("Failed to import the Savegame, no Savegame slot is left"));
return false;
}
}

View File

@ -330,6 +330,7 @@ void SnapmaticEditor::on_cmdApply_clicked()
}
else
{
smpic->updateStrings();
smpic->emitUpdate();
}
}

View File

@ -167,9 +167,10 @@ DEFINES += GTA5SYNC_NOASSIST # Not assisting at proper usage of SnapmaticPicture
win32: DEFINES += GTA5SYNC_WIN
win32: RC_FILE += res/app.rc
win32: LIBS += -luser32 -ld3d9
win32: LIBS += -luser32
win32: CONFIG -= embed_manifest_exe
contains(DEFINES, GTA5SYNC_APV): greaterThan(QT_MAJOR_VERSION, 4): greaterThan(QT_MINOR_VERSION, 1): win32: LIBS += -ldwmapi
contains(DEFINES, GTA5SYNC_TELEMETRY): win32: LIBS += -ld3d9 # Required for getting information about GPU
# MAC OS X ONLY
macx: ICON = res/5sync.icns

View File

@ -935,37 +935,37 @@ Y: %2</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1505"/>
<source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="154"/>
<location filename="../ProfileInterface.cpp" line="1435"/>
<location filename="../ProfileInterface.cpp" line="1506"/>
<source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1428"/>
<location filename="../ProfileInterface.cpp" line="1499"/>
<source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="157"/>
<location filename="../ProfileInterface.cpp" line="1429"/>
<location filename="../ProfileInterface.cpp" line="1500"/>
<source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="159"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="161"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<location filename="../ProfileInterface.cpp" line="1503"/>
<source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation>
</message>
@ -1219,8 +1219,22 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="422"/>
<location filename="../ImportDialog.cpp" line="742"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="857"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Import...</source>
<translation type="unfinished"></translation>
</message>
@ -1234,20 +1248,6 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="743"/>
<location filename="../ImportDialog.cpp" line="774"/>
<location filename="../ImportDialog.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="984"/>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1033"/>
<location filename="../ProfileInterface.cpp" line="1039"/>
<source>Import</source>
<translation type="unfinished"></translation>
</message>
@ -1375,109 +1375,109 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="984"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<location filename="../ProfileInterface.cpp" line="987"/>
<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="996"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<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="1033"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<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="1039"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1186"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1174"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<source>Export selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1126"/>
<location filename="../ProfileInterface.cpp" line="1144"/>
<location filename="../ProfileInterface.cpp" line="1197"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1127"/>
<location filename="../ProfileInterface.cpp" line="1149"/>
<location filename="../ProfileInterface.cpp" line="1198"/>
<location filename="../ProfileInterface.cpp" line="1220"/>
<source>JPG pictures only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1153"/>
<location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<source>GTA Snapmatic only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<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="1187"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<source>Initialising export...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<source>Export failed with...
%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>Remove selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>%1 failed with...
%2</source>
@ -1485,81 +1485,81 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="2023"/>
<location filename="../ProfileInterface.cpp" line="2129"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2200"/>
<source>Patch selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1897"/>
<location filename="../ProfileInterface.cpp" line="1916"/>
<location filename="../ProfileInterface.cpp" line="2024"/>
<location filename="../ProfileInterface.cpp" line="2043"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2149"/>
<location filename="../ProfileInterface.cpp" line="1865"/>
<location filename="../ProfileInterface.cpp" line="1884"/>
<location filename="../ProfileInterface.cpp" line="1968"/>
<location filename="../ProfileInterface.cpp" line="1987"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2114"/>
<location filename="../ProfileInterface.cpp" line="2201"/>
<location filename="../ProfileInterface.cpp" line="2220"/>
<source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
@ -1661,37 +1661,37 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1541"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1471"/>
<location filename="../ProfileInterface.cpp" line="1542"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1472"/>
<location filename="../ProfileInterface.cpp" line="1543"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1545"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1546"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1478"/>
<location filename="../ProfileInterface.cpp" line="1549"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1482"/>
<location filename="../ProfileInterface.cpp" line="1553"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -1788,7 +1788,7 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="110"/>
<location filename="../JsonEditorDialog.cpp" line="175"/>
<location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<location filename="../PictureDialog.cpp" line="907"/>
<location filename="../SnapmaticEditor.cpp" line="327"/>
<location filename="../SnapmaticWidget.cpp" line="387"/>
@ -1889,31 +1889,31 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>Snapmatic Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>New Snapmatic crew:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>Snapmatic Title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>New Snapmatic title:</source>
<translation type="unfinished"></translation>
</message>
@ -2087,52 +2087,52 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1419"/>
<location filename="../ProfileInterface.cpp" line="1490"/>
<source>Edi&amp;t</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1422"/>
<location filename="../ProfileInterface.cpp" line="1493"/>
<source>Show &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1426"/>
<location filename="../ProfileInterface.cpp" line="1497"/>
<source>Hide &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1433"/>
<location filename="../ProfileInterface.cpp" line="1504"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1436"/>
<location filename="../ProfileInterface.cpp" line="1507"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1439"/>
<location filename="../ProfileInterface.cpp" line="1510"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1441"/>
<location filename="../ProfileInterface.cpp" line="1512"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1442"/>
<location filename="../ProfileInterface.cpp" line="1513"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1516"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1449"/>
<location filename="../ProfileInterface.cpp" line="1520"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -2351,15 +2351,15 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../SnapmaticWidget.cpp" line="299"/>
<source>Show In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../SnapmaticWidget.cpp" line="291"/>
<source>Hide In-game</source>
<translation type="unfinished"></translation>

Binary file not shown.

View File

@ -956,31 +956,31 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1505"/>
<source>Export as &amp;Picture...</source>
<translation>Als &amp;Bild exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="154"/>
<location filename="../ProfileInterface.cpp" line="1435"/>
<location filename="../ProfileInterface.cpp" line="1506"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Als &amp;Snapmatic exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1428"/>
<location filename="../ProfileInterface.cpp" line="1499"/>
<source>&amp;Edit Properties...</source>
<translation>Eigenschaften bearb&amp;eiten...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="157"/>
<location filename="../ProfileInterface.cpp" line="1429"/>
<location filename="../ProfileInterface.cpp" line="1500"/>
<source>&amp;Overwrite Image...</source>
<translation>Bild &amp;überschreiben...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="159"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<source>Open &amp;Map Viewer...</source>
<translation>&amp;Kartenansicht öffnen...</translation>
</message>
@ -1129,7 +1129,7 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="161"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<location filename="../ProfileInterface.cpp" line="1503"/>
<source>Open &amp;JSON Editor...</source>
<translation>&amp;JSON Editor öffnen...</translation>
</message>
@ -1246,8 +1246,22 @@ Drücke 1 für Standardmodus</translation>
<location filename="../ImportDialog.cpp" line="422"/>
<location filename="../ImportDialog.cpp" line="742"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="857"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Import...</source>
<translation>Importieren...</translation>
</message>
@ -1261,20 +1275,6 @@ Drücke 1 für Standardmodus</translation>
<location filename="../ImportDialog.cpp" line="743"/>
<location filename="../ImportDialog.cpp" line="774"/>
<location filename="../ImportDialog.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="984"/>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1033"/>
<location filename="../ProfileInterface.cpp" line="1039"/>
<source>Import</source>
<translation>Importieren</translation>
</message>
@ -1361,7 +1361,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1187"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<source>Initialising export...</source>
<translation>Initialisiere Export...</translation>
</message>
@ -1371,12 +1371,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="984"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, dieses Bild ist bereits im Spiel</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<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>
@ -1393,86 +1388,91 @@ Drücke 1 für Standardmodus</translation>
<translation>Aktivierte Bilder: %1 von %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<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="1067"/>
<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="1033"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<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="1039"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<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="1126"/>
<location filename="../ProfileInterface.cpp" line="1144"/>
<location filename="../ProfileInterface.cpp" line="1197"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG Bilder und GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1127"/>
<location filename="../ProfileInterface.cpp" line="1149"/>
<location filename="../ProfileInterface.cpp" line="1198"/>
<location filename="../ProfileInterface.cpp" line="1220"/>
<source>JPG pictures only</source>
<translation>Nur JPG Bilder</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1153"/>
<location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<source>GTA Snapmatic only</source>
<translation>Nur GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="2023"/>
<location filename="../ProfileInterface.cpp" line="2129"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2200"/>
<source>Patch selected...</source>
<translation>Auswahl patchen...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1897"/>
<location filename="../ProfileInterface.cpp" line="1916"/>
<location filename="../ProfileInterface.cpp" line="2024"/>
<location filename="../ProfileInterface.cpp" line="2043"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2149"/>
<location filename="../ProfileInterface.cpp" line="1865"/>
<location filename="../ProfileInterface.cpp" line="1884"/>
<location filename="../ProfileInterface.cpp" line="1968"/>
<location filename="../ProfileInterface.cpp" line="1987"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2114"/>
<location filename="../ProfileInterface.cpp" line="2201"/>
<location filename="../ProfileInterface.cpp" line="2220"/>
<source>Patch file %1 of %2 files</source>
<translation>Patche Datei %1 von %2 Dateien</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify as Avatar</source>
<translation>Als Avatar qualifizieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>No Snapmatic pictures are selected</source>
<translation>Keine Snapmatic Bilder sind ausgewählt</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<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="1363"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>%1 failed with...
%2</source>
@ -1487,88 +1487,88 @@ Drücke 1 für Standardmodus</translation>
<translation>Bereite Inhalt für Import vor...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Qualifizieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players...</source>
<translation>Spieler ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Spieler ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew...</source>
<translation>Crew ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<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="2073"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Crew ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title...</source>
<translation>Titel ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<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="2176"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Titel ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>Remove selected</source>
<translation>Auswahl löschen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<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="1103"/>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1186"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1174"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<source>Export selected...</source>
<translation>Auswahl exportieren...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<source>Export failed with...
%1</source>
@ -1722,32 +1722,32 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1541"/>
<source>&amp;View</source>
<translation>A&amp;nsehen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1472"/>
<location filename="../ProfileInterface.cpp" line="1543"/>
<source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1545"/>
<source>&amp;Select</source>
<translation>Au&amp;swählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1546"/>
<source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1478"/>
<location filename="../ProfileInterface.cpp" line="1549"/>
<source>Select &amp;All</source>
<translation>&amp;Alles auswählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1482"/>
<location filename="../ProfileInterface.cpp" line="1553"/>
<source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation>
</message>
@ -1762,7 +1762,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Spielstand kopieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1471"/>
<location filename="../ProfileInterface.cpp" line="1542"/>
<source>&amp;Export</source>
<translation>&amp;Exportieren</translation>
</message>
@ -1813,7 +1813,7 @@ Drücke 1 für Standardmodus</translation>
<location filename="../JsonEditorDialog.cpp" line="110"/>
<location filename="../JsonEditorDialog.cpp" line="175"/>
<location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<location filename="../PictureDialog.cpp" line="907"/>
<location filename="../SnapmaticEditor.cpp" line="327"/>
<location filename="../SnapmaticWidget.cpp" line="387"/>
@ -1856,8 +1856,8 @@ Drücke 1 für Standardmodus</translation>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>Snapmatic Title</source>
<translation>Snapmatic Titel</translation>
</message>
@ -1959,7 +1959,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen %1</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen JSON Fehler</translation>
</message>
@ -1972,20 +1972,20 @@ 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="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>New Snapmatic title:</source>
<translation>Neuer Snapmatic Titel:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>Snapmatic Crew</source>
<translation>Snapmatic Crew</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>New Snapmatic crew:</source>
<translation>Neue Snapmatic Crew:</translation>
</message>
@ -2112,52 +2112,52 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1419"/>
<location filename="../ProfileInterface.cpp" line="1490"/>
<source>Edi&amp;t</source>
<translation>Bearbei&amp;ten</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1433"/>
<location filename="../ProfileInterface.cpp" line="1504"/>
<source>&amp;Export</source>
<translation>&amp;Exportieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1422"/>
<location filename="../ProfileInterface.cpp" line="1493"/>
<source>Show &amp;In-game</source>
<translation>&amp;Im Spiel anzeigen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1426"/>
<location filename="../ProfileInterface.cpp" line="1497"/>
<source>Hide &amp;In-game</source>
<translation>&amp;Im Spiel ausblenden</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1436"/>
<location filename="../ProfileInterface.cpp" line="1507"/>
<source>&amp;View</source>
<translation>A&amp;nsehen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1439"/>
<location filename="../ProfileInterface.cpp" line="1510"/>
<source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1441"/>
<location filename="../ProfileInterface.cpp" line="1512"/>
<source>&amp;Select</source>
<translation>Au&amp;swählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1442"/>
<location filename="../ProfileInterface.cpp" line="1513"/>
<source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1516"/>
<source>Select &amp;All</source>
<translation>Alles &amp;auswählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1449"/>
<location filename="../ProfileInterface.cpp" line="1520"/>
<source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation>
</message>
@ -2401,15 +2401,15 @@ Drücke 1 für Standardmodus</translation>
<translation>&amp;Neuladen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../SnapmaticWidget.cpp" line="299"/>
<source>Show In-game</source>
<translation>Im Spiel anzeigen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../SnapmaticWidget.cpp" line="291"/>
<source>Hide In-game</source>
<translation>Im Spiel ausblenden</translation>

Binary file not shown.

View File

@ -935,31 +935,31 @@ Y: %2</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1505"/>
<source>Export as &amp;Picture...</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="154"/>
<location filename="../ProfileInterface.cpp" line="1435"/>
<location filename="../ProfileInterface.cpp" line="1506"/>
<source>Export as &amp;Snapmatic...</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="157"/>
<location filename="../ProfileInterface.cpp" line="1429"/>
<location filename="../ProfileInterface.cpp" line="1500"/>
<source>&amp;Overwrite Image...</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1428"/>
<location filename="../ProfileInterface.cpp" line="1499"/>
<source>&amp;Edit Properties...</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="159"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<source>Open &amp;Map Viewer...</source>
<translation></translation>
</message>
@ -1111,7 +1111,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="161"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<location filename="../ProfileInterface.cpp" line="1503"/>
<source>Open &amp;JSON Editor...</source>
<translation></translation>
</message>
@ -1239,8 +1239,22 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="422"/>
<location filename="../ImportDialog.cpp" line="742"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="857"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Import...</source>
<translation></translation>
</message>
@ -1254,20 +1268,6 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="743"/>
<location filename="../ImportDialog.cpp" line="774"/>
<location filename="../ImportDialog.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="984"/>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1033"/>
<location filename="../ProfileInterface.cpp" line="1039"/>
<source>Import</source>
<translation></translation>
</message>
@ -1370,130 +1370,125 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="984"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<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="1033"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1039"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1126"/>
<location filename="../ProfileInterface.cpp" line="1144"/>
<location filename="../ProfileInterface.cpp" line="1197"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1127"/>
<location filename="../ProfileInterface.cpp" line="1149"/>
<location filename="../ProfileInterface.cpp" line="1198"/>
<location filename="../ProfileInterface.cpp" line="1220"/>
<source>JPG pictures only</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1153"/>
<location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<source>GTA Snapmatic only</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<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></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1186"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1174"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<source>Export selected...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1187"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<source>Initialising export...</source>
<translation>Initializing export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<source>Export failed with...
%1</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>Remove selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify as Avatar</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>No Snapmatic pictures are selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="2023"/>
<location filename="../ProfileInterface.cpp" line="2129"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2200"/>
<source>Patch selected...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1897"/>
<location filename="../ProfileInterface.cpp" line="1916"/>
<location filename="../ProfileInterface.cpp" line="2024"/>
<location filename="../ProfileInterface.cpp" line="2043"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2149"/>
<location filename="../ProfileInterface.cpp" line="1865"/>
<location filename="../ProfileInterface.cpp" line="1884"/>
<location filename="../ProfileInterface.cpp" line="1968"/>
<location filename="../ProfileInterface.cpp" line="1987"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2114"/>
<location filename="../ProfileInterface.cpp" line="2201"/>
<location filename="../ProfileInterface.cpp" line="2220"/>
<source>Patch file %1 of %2 files</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>%1 failed with...
%2</source>
@ -1501,7 +1496,7 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation></translation>
</message>
@ -1511,55 +1506,60 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<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="1918"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation></translation>
@ -1661,37 +1661,37 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1541"/>
<source>&amp;View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1471"/>
<location filename="../ProfileInterface.cpp" line="1542"/>
<source>&amp;Export</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1472"/>
<location filename="../ProfileInterface.cpp" line="1543"/>
<source>&amp;Remove</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1545"/>
<source>&amp;Select</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1546"/>
<source>&amp;Deselect</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1478"/>
<location filename="../ProfileInterface.cpp" line="1549"/>
<source>Select &amp;All</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1482"/>
<location filename="../ProfileInterface.cpp" line="1553"/>
<source>&amp;Deselect All</source>
<translation></translation>
</message>
@ -1788,7 +1788,7 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="110"/>
<location filename="../JsonEditorDialog.cpp" line="175"/>
<location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<location filename="../PictureDialog.cpp" line="907"/>
<location filename="../SnapmaticEditor.cpp" line="327"/>
<location filename="../SnapmaticWidget.cpp" line="387"/>
@ -1928,7 +1928,7 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation></translation>
</message>
@ -1941,26 +1941,26 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>Snapmatic Title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>New Snapmatic title:</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>Snapmatic Crew</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>New Snapmatic crew:</source>
<translation></translation>
</message>
@ -2087,52 +2087,52 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1419"/>
<location filename="../ProfileInterface.cpp" line="1490"/>
<source>Edi&amp;t</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1422"/>
<location filename="../ProfileInterface.cpp" line="1493"/>
<source>Show &amp;In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1426"/>
<location filename="../ProfileInterface.cpp" line="1497"/>
<source>Hide &amp;In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1433"/>
<location filename="../ProfileInterface.cpp" line="1504"/>
<source>&amp;Export</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1436"/>
<location filename="../ProfileInterface.cpp" line="1507"/>
<source>&amp;View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1439"/>
<location filename="../ProfileInterface.cpp" line="1510"/>
<source>&amp;Remove</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1441"/>
<location filename="../ProfileInterface.cpp" line="1512"/>
<source>&amp;Select</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1442"/>
<location filename="../ProfileInterface.cpp" line="1513"/>
<source>&amp;Deselect</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1516"/>
<source>Select &amp;All</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1449"/>
<location filename="../ProfileInterface.cpp" line="1520"/>
<source>&amp;Deselect All</source>
<translation></translation>
</message>
@ -2376,15 +2376,15 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../SnapmaticWidget.cpp" line="299"/>
<source>Show In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../SnapmaticWidget.cpp" line="291"/>
<source>Hide In-game</source>
<translation></translation>

Binary file not shown.

View File

@ -1036,31 +1036,31 @@ Y : %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1505"/>
<source>Export as &amp;Picture...</source>
<translation>Exporter comme &amp;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="154"/>
<location filename="../ProfileInterface.cpp" line="1435"/>
<location filename="../ProfileInterface.cpp" line="1506"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Exporter comme &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="157"/>
<location filename="../ProfileInterface.cpp" line="1429"/>
<location filename="../ProfileInterface.cpp" line="1500"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Remplacer l&apos;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1428"/>
<location filename="../ProfileInterface.cpp" line="1499"/>
<source>&amp;Edit Properties...</source>
<translation>Modifier les &amp;propriétés...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="159"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<source>Open &amp;Map Viewer...</source>
<translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
</message>
@ -1129,7 +1129,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="161"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<location filename="../ProfileInterface.cpp" line="1503"/>
<source>Open &amp;JSON Editor...</source>
<translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
</message>
@ -1257,8 +1257,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
<location filename="../ImportDialog.cpp" line="422"/>
<location filename="../ImportDialog.cpp" line="742"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="857"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Import...</source>
<translation>Importer...</translation>
</message>
@ -1272,20 +1286,6 @@ Appuyer sur 1 pour le mode par défaut</translation>
<location filename="../ImportDialog.cpp" line="743"/>
<location filename="../ImportDialog.cpp" line="774"/>
<location filename="../ImportDialog.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="984"/>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1033"/>
<location filename="../ProfileInterface.cpp" line="1039"/>
<source>Import</source>
<translation>Importer</translation>
</message>
@ -1384,105 +1384,100 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible d&apos;importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="984"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Impossible d&apos;importer la photo Snapmatic, un fichier du même nom existe déjà</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<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="1033"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<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="1039"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<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="1126"/>
<location filename="../ProfileInterface.cpp" line="1144"/>
<location filename="../ProfileInterface.cpp" line="1197"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>Images JPG et GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1127"/>
<location filename="../ProfileInterface.cpp" line="1149"/>
<location filename="../ProfileInterface.cpp" line="1198"/>
<location filename="../ProfileInterface.cpp" line="1220"/>
<source>JPG pictures only</source>
<translation>Images JPG seulement</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1153"/>
<location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<source>GTA Snapmatic only</source>
<translation>GTA Snapmatic seulement</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<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="1103"/>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1186"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1174"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<source>Export selected...</source>
<translation>Exporter la sélection...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1187"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<source>Initialising export...</source>
<translation>Initialisation de l&apos;export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify as Avatar</source>
<translation>Qualifier comme Avatar</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>No Snapmatic pictures are selected</source>
<translation>Aucun Snapmatic sélectionné</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="2023"/>
<location filename="../ProfileInterface.cpp" line="2129"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2200"/>
<source>Patch selected...</source>
<translation>Patcher la sélection...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1897"/>
<location filename="../ProfileInterface.cpp" line="1916"/>
<location filename="../ProfileInterface.cpp" line="2024"/>
<location filename="../ProfileInterface.cpp" line="2043"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2149"/>
<location filename="../ProfileInterface.cpp" line="1865"/>
<location filename="../ProfileInterface.cpp" line="1884"/>
<location filename="../ProfileInterface.cpp" line="1968"/>
<location filename="../ProfileInterface.cpp" line="1987"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2114"/>
<location filename="../ProfileInterface.cpp" line="2201"/>
<location filename="../ProfileInterface.cpp" line="2220"/>
<source>Patch file %1 of %2 files</source>
<translation>Patch du fichier %1 sur %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>%1 failed with...
%2</source>
@ -1492,7 +1487,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<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>
@ -1502,61 +1497,66 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<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="1918"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Qualifier</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players...</source>
<translation>Modifier les joueurs...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Modifier les joueurs</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew...</source>
<translation>Modifier le Crew...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Snapmatic Crew ID invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Changer le Crew</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title...</source>
<translation>Changer le titre...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Titre Snapmatic invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Changer le titre</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<source>Export failed with...
%1</source>
@ -1565,20 +1565,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<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="1249"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>Remove selected</source>
<translation>Supprimer la sélection</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Supprimer la sélection ?</translation>
</message>
@ -1685,7 +1685,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1471"/>
<location filename="../ProfileInterface.cpp" line="1542"/>
<source>&amp;Export</source>
<translation>&amp;Exporter</translation>
</message>
@ -1776,32 +1776,32 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible de supprimer %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1541"/>
<source>&amp;View</source>
<translation>&amp;Voir</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1472"/>
<location filename="../ProfileInterface.cpp" line="1543"/>
<source>&amp;Remove</source>
<translation>&amp;Supprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1545"/>
<source>&amp;Select</source>
<translation>&amp;Sélectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1546"/>
<source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1478"/>
<location filename="../ProfileInterface.cpp" line="1549"/>
<source>Select &amp;All</source>
<translation>Sélectionner to&amp;ut</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1482"/>
<location filename="../ProfileInterface.cpp" line="1553"/>
<source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation>
</message>
@ -1814,7 +1814,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<location filename="../JsonEditorDialog.cpp" line="110"/>
<location filename="../JsonEditorDialog.cpp" line="175"/>
<location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<location filename="../PictureDialog.cpp" line="907"/>
<location filename="../SnapmaticEditor.cpp" line="327"/>
<location filename="../SnapmaticWidget.cpp" line="387"/>
@ -1857,8 +1857,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>Snapmatic Title</source>
<translation>Titre Snapmatic</translation>
</message>
@ -1962,7 +1962,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Patch des propriétés Snapmatic échoué : %1</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>Patch des propriétés Snapmatic échoué : erreur JSON</translation>
</message>
@ -1975,20 +1975,20 @@ 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="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>New Snapmatic title:</source>
<translation>Nouveau titre Snapmatic :</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>Snapmatic Crew</source>
<translation>Crew Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>New Snapmatic crew:</source>
<translation>Nouveau crew Snapmatic :</translation>
</message>
@ -2135,52 +2135,52 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>%1 n&apos;a pas pu être rendu visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1419"/>
<location filename="../ProfileInterface.cpp" line="1490"/>
<source>Edi&amp;t</source>
<translation>Édi&amp;ter</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1422"/>
<location filename="../ProfileInterface.cpp" line="1493"/>
<source>Show &amp;In-game</source>
<translation>&amp;Visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1426"/>
<location filename="../ProfileInterface.cpp" line="1497"/>
<source>Hide &amp;In-game</source>
<translation>&amp;Invisible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1433"/>
<location filename="../ProfileInterface.cpp" line="1504"/>
<source>&amp;Export</source>
<translation>&amp;Exporter</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1436"/>
<location filename="../ProfileInterface.cpp" line="1507"/>
<source>&amp;View</source>
<translation>&amp;Voir</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1439"/>
<location filename="../ProfileInterface.cpp" line="1510"/>
<source>&amp;Remove</source>
<translation>S&amp;upprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1441"/>
<location filename="../ProfileInterface.cpp" line="1512"/>
<source>&amp;Select</source>
<translation>&amp;Sélectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1442"/>
<location filename="../ProfileInterface.cpp" line="1513"/>
<source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1516"/>
<source>Select &amp;All</source>
<translation>Sélectionner &amp;tout</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1449"/>
<location filename="../ProfileInterface.cpp" line="1520"/>
<source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation>
</message>
@ -2404,15 +2404,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible d&apos;ouvrir %1, format invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../SnapmaticWidget.cpp" line="299"/>
<source>Show In-game</source>
<translation>Visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../SnapmaticWidget.cpp" line="291"/>
<source>Hide In-game</source>
<translation>Invisible en jeu</translation>

Binary file not shown.

View File

@ -967,31 +967,31 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1505"/>
<source>Export as &amp;Picture...</source>
<translation>Экспортировать как &amp;картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="154"/>
<location filename="../ProfileInterface.cpp" line="1435"/>
<location filename="../ProfileInterface.cpp" line="1506"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Экспортировать как &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="157"/>
<location filename="../ProfileInterface.cpp" line="1429"/>
<location filename="../ProfileInterface.cpp" line="1500"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписать картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1428"/>
<location filename="../ProfileInterface.cpp" line="1499"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Изменить свойства...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="159"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<source>Open &amp;Map Viewer...</source>
<translation>Открыть &amp;карту...</translation>
</message>
@ -1140,7 +1140,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="161"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<location filename="../ProfileInterface.cpp" line="1503"/>
<source>Open &amp;JSON Editor...</source>
<translation>Открыть &amp;редактор JSON...</translation>
</message>
@ -1258,8 +1258,22 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="422"/>
<location filename="../ImportDialog.cpp" line="742"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="857"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Import...</source>
<translation>Импортировать...</translation>
</message>
@ -1273,20 +1287,6 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="743"/>
<location filename="../ImportDialog.cpp" line="774"/>
<location filename="../ImportDialog.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="984"/>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1033"/>
<location filename="../ProfileInterface.cpp" line="1039"/>
<source>Import</source>
<translation>Импортировать</translation>
</message>
@ -1390,63 +1390,58 @@ Press 1 for Default View</source>
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="984"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Не удалось импортировать картинку Snapmatic, картинка уже в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<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="1033"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1039"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1126"/>
<location filename="../ProfileInterface.cpp" line="1144"/>
<location filename="../ProfileInterface.cpp" line="1197"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>Картинки JPG и GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1127"/>
<location filename="../ProfileInterface.cpp" line="1149"/>
<location filename="../ProfileInterface.cpp" line="1198"/>
<location filename="../ProfileInterface.cpp" line="1220"/>
<source>JPG pictures only</source>
<translation>Только картинки JPG</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1153"/>
<location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<source>GTA Snapmatic only</source>
<translation>Только GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1187"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<source>Initialising export...</source>
<translation>Подготовка к экспорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не выделены ни один Snapmatic или сохранение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>Remove selected</source>
<translation>Снять выделение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
</message>
@ -1456,48 +1451,48 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify as Avatar</source>
<translation>Пометить как Аватар</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>No Snapmatic pictures are selected</source>
<translation>Не выделена ни одна картинка Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="2023"/>
<location filename="../ProfileInterface.cpp" line="2129"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2200"/>
<source>Patch selected...</source>
<translation>Пропатчить выделенные...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1897"/>
<location filename="../ProfileInterface.cpp" line="1916"/>
<location filename="../ProfileInterface.cpp" line="2024"/>
<location filename="../ProfileInterface.cpp" line="2043"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2149"/>
<location filename="../ProfileInterface.cpp" line="1865"/>
<location filename="../ProfileInterface.cpp" line="1884"/>
<location filename="../ProfileInterface.cpp" line="1968"/>
<location filename="../ProfileInterface.cpp" line="1987"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2114"/>
<location filename="../ProfileInterface.cpp" line="2201"/>
<location filename="../ProfileInterface.cpp" line="2220"/>
<source>Patch file %1 of %2 files</source>
<translation>Изменяется файл %1 из %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>%1 failed with...
%2</source>
@ -1507,80 +1502,85 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<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="1348"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Помечание</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players...</source>
<translation>Изменить игроков...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Измение игроков</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew...</source>
<translation>Изменить банду...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Введённый идентификатор банды не верен</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Изменение банды</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title...</source>
<translation>Изменить заголовок...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Введённый заголовок не верен</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Изменение заголовка</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<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="1103"/>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1186"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1174"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<source>Export selected...</source>
<translation>Экпортировать выделенное...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<source>Export failed with...
%1</source>
@ -1741,32 +1741,32 @@ Press 1 for Default View</source>
<translation>Не удалось удалить сохранение %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1541"/>
<source>&amp;View</source>
<translation>&amp;Просмотр</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1472"/>
<location filename="../ProfileInterface.cpp" line="1543"/>
<source>&amp;Remove</source>
<translation>&amp;Удалить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1545"/>
<source>&amp;Select</source>
<translation>&amp;Выбрать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1546"/>
<source>&amp;Deselect</source>
<translation>Сн&amp;ять выбор</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1478"/>
<location filename="../ProfileInterface.cpp" line="1549"/>
<source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1482"/>
<location filename="../ProfileInterface.cpp" line="1553"/>
<source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation>
</message>
@ -1776,7 +1776,7 @@ Press 1 for Default View</source>
<translation>Копировать сохранение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1471"/>
<location filename="../ProfileInterface.cpp" line="1542"/>
<source>&amp;Export</source>
<translation>&amp;Экспортировать</translation>
</message>
@ -1827,7 +1827,7 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="110"/>
<location filename="../JsonEditorDialog.cpp" line="175"/>
<location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<location filename="../PictureDialog.cpp" line="907"/>
<location filename="../SnapmaticEditor.cpp" line="327"/>
<location filename="../SnapmaticWidget.cpp" line="387"/>
@ -1880,8 +1880,8 @@ Press 1 for Default View</source>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>Snapmatic Title</source>
<translation>Заголовок Snapmatic</translation>
</message>
@ -1973,7 +1973,7 @@ Press 1 for Default View</source>
<translation>Не удалось изменить свойства Snapmatic из-за %1</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>Не удалось измененить свойства Snapmatic из-за ошибки JSON</translation>
</message>
@ -1986,20 +1986,20 @@ Press 1 for Default View</source>
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>New Snapmatic title:</source>
<translation>Новый заголовок Snapmatic:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>Snapmatic Crew</source>
<translation>Банда на Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>New Snapmatic crew:</source>
<translation>Новая банда на Snapmatic:</translation>
</message>
@ -2136,52 +2136,52 @@ Press 1 for Default View</source>
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1419"/>
<location filename="../ProfileInterface.cpp" line="1490"/>
<source>Edi&amp;t</source>
<translation>&amp;Правка</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1422"/>
<location filename="../ProfileInterface.cpp" line="1493"/>
<source>Show &amp;In-game</source>
<translation>Показывать в &amp;игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1426"/>
<location filename="../ProfileInterface.cpp" line="1497"/>
<source>Hide &amp;In-game</source>
<translation>Ск&amp;рыть в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1433"/>
<location filename="../ProfileInterface.cpp" line="1504"/>
<source>&amp;Export</source>
<translation>&amp;Экспорт</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1436"/>
<location filename="../ProfileInterface.cpp" line="1507"/>
<source>&amp;View</source>
<translation>По&amp;казать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1439"/>
<location filename="../ProfileInterface.cpp" line="1510"/>
<source>&amp;Remove</source>
<translation>У&amp;далить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1441"/>
<location filename="../ProfileInterface.cpp" line="1512"/>
<source>&amp;Select</source>
<translation>&amp;Выделить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1442"/>
<location filename="../ProfileInterface.cpp" line="1513"/>
<source>&amp;Deselect</source>
<translation>Сн&amp;ять выделение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1516"/>
<source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1449"/>
<location filename="../ProfileInterface.cpp" line="1520"/>
<source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation>
</message>
@ -2415,15 +2415,15 @@ Press 1 for Default View</source>
<translation>Пере&amp;загрузить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../SnapmaticWidget.cpp" line="299"/>
<source>Show In-game</source>
<translation>Показывать в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../SnapmaticWidget.cpp" line="291"/>
<source>Hide In-game</source>
<translation>Скрыть в игре</translation>

Binary file not shown.

View File

@ -950,37 +950,37 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1505"/>
<source>Export as &amp;Picture...</source>
<translation>Експортувати як &amp;зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="154"/>
<location filename="../ProfileInterface.cpp" line="1435"/>
<location filename="../ProfileInterface.cpp" line="1506"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Експортувати як &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1428"/>
<location filename="../ProfileInterface.cpp" line="1499"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Змінити властивості...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="157"/>
<location filename="../ProfileInterface.cpp" line="1429"/>
<location filename="../ProfileInterface.cpp" line="1500"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписати зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="159"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<source>Open &amp;Map Viewer...</source>
<translation>Відкрити &amp;карту...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="161"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<location filename="../ProfileInterface.cpp" line="1503"/>
<source>Open &amp;JSON Editor...</source>
<translation>Відкрити редактор &amp;JSON...</translation>
</message>
@ -1237,8 +1237,22 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="422"/>
<location filename="../ImportDialog.cpp" line="742"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="857"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Import...</source>
<translation>Імпортування...</translation>
</message>
@ -1252,20 +1266,6 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="743"/>
<location filename="../ImportDialog.cpp" line="774"/>
<location filename="../ImportDialog.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="984"/>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1033"/>
<location filename="../ProfileInterface.cpp" line="1039"/>
<source>Import</source>
<translation>Імпорт</translation>
</message>
@ -1390,64 +1390,59 @@ Press 1 for Default View</source>
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="984"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Не вдалося імпортувати знімок Snapmatic, картинка вже в грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<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="1033"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1039"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1186"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1174"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<source>Export selected...</source>
<translation>Експорт обраних...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1126"/>
<location filename="../ProfileInterface.cpp" line="1144"/>
<location filename="../ProfileInterface.cpp" line="1197"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG картинки і GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1127"/>
<location filename="../ProfileInterface.cpp" line="1149"/>
<location filename="../ProfileInterface.cpp" line="1198"/>
<location filename="../ProfileInterface.cpp" line="1220"/>
<source>JPG pictures only</source>
<translation>Тільки JPG картинки</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1153"/>
<location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<source>GTA Snapmatic only</source>
<translation>Тільки GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<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="1187"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<source>Initialising export...</source>
<translation>Ініціалізація експорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<source>Export failed with...
%1</source>
@ -1456,45 +1451,45 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>Remove selected</source>
<translation>Видалити вибрані</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>No Snapmatic pictures are selected</source>
<translation>Не вибрано жодного Snapmatic зображення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>%1 failed with...
%2</source>
@ -1509,81 +1504,86 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<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="1853"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify as Avatar</source>
<translation>Позначити як Аватар</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="2023"/>
<location filename="../ProfileInterface.cpp" line="2129"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2200"/>
<source>Patch selected...</source>
<translation>Вибір патчу...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1897"/>
<location filename="../ProfileInterface.cpp" line="1916"/>
<location filename="../ProfileInterface.cpp" line="2024"/>
<location filename="../ProfileInterface.cpp" line="2043"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2149"/>
<location filename="../ProfileInterface.cpp" line="1865"/>
<location filename="../ProfileInterface.cpp" line="1884"/>
<location filename="../ProfileInterface.cpp" line="1968"/>
<location filename="../ProfileInterface.cpp" line="1987"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2114"/>
<location filename="../ProfileInterface.cpp" line="2201"/>
<location filename="../ProfileInterface.cpp" line="2220"/>
<source>Patch file %1 of %2 files</source>
<translation>Патч файлу %1 з %2 файлів</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Якість</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players...</source>
<translation>Зміна гравців...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Змінити гравців</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew...</source>
<translation>Зміна банди...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Змінити банду</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title...</source>
<translation>Зміна назви...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Змінити назву</translation>
@ -1685,37 +1685,37 @@ Press 1 for Default View</source>
<translation>Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1541"/>
<source>&amp;View</source>
<translation>&amp;Перегляд</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1471"/>
<location filename="../ProfileInterface.cpp" line="1542"/>
<source>&amp;Export</source>
<translation>&amp;Експорт</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1472"/>
<location filename="../ProfileInterface.cpp" line="1543"/>
<source>&amp;Remove</source>
<translation>&amp;Видалення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1545"/>
<source>&amp;Select</source>
<translation>&amp;Виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1546"/>
<source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1478"/>
<location filename="../ProfileInterface.cpp" line="1549"/>
<source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1482"/>
<location filename="../ProfileInterface.cpp" line="1553"/>
<source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation>
</message>
@ -1814,7 +1814,7 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="110"/>
<location filename="../JsonEditorDialog.cpp" line="175"/>
<location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<location filename="../PictureDialog.cpp" line="907"/>
<location filename="../SnapmaticEditor.cpp" line="327"/>
<location filename="../SnapmaticWidget.cpp" line="387"/>
@ -1915,31 +1915,31 @@ Press 1 for Default View</source>
<translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>Snapmatic Crew</source>
<translation>Snapmatic банда</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>New Snapmatic crew:</source>
<translation>Нова Snapmatic банда:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>Snapmatic Title</source>
<translation>Snapmatic назва</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>New Snapmatic title:</source>
<translation>Новий Snapmatic заголовок:</translation>
</message>
@ -2113,52 +2113,52 @@ Press 1 for Default View</source>
<translation>Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1419"/>
<location filename="../ProfileInterface.cpp" line="1490"/>
<source>Edi&amp;t</source>
<translation>Редагува&amp;ти</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1422"/>
<location filename="../ProfileInterface.cpp" line="1493"/>
<source>Show &amp;In-game</source>
<translation>Показати &amp;у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1426"/>
<location filename="../ProfileInterface.cpp" line="1497"/>
<source>Hide &amp;In-game</source>
<translation>Сховати &amp;у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1433"/>
<location filename="../ProfileInterface.cpp" line="1504"/>
<source>&amp;Export</source>
<translation>&amp;Експортувати</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1436"/>
<location filename="../ProfileInterface.cpp" line="1507"/>
<source>&amp;View</source>
<translation>&amp;Переглянути</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1439"/>
<location filename="../ProfileInterface.cpp" line="1510"/>
<source>&amp;Remove</source>
<translation>&amp;Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1441"/>
<location filename="../ProfileInterface.cpp" line="1512"/>
<source>&amp;Select</source>
<translation>&amp;Виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1442"/>
<location filename="../ProfileInterface.cpp" line="1513"/>
<source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1516"/>
<source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1449"/>
<location filename="../ProfileInterface.cpp" line="1520"/>
<source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation>
</message>
@ -2377,15 +2377,15 @@ Press 1 for Default View</source>
<translation>Змінити &amp;гравців...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../SnapmaticWidget.cpp" line="299"/>
<source>Show In-game</source>
<translation>Показати у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../SnapmaticWidget.cpp" line="291"/>
<source>Hide In-game</source>
<translation>Сховати у грі</translation>

Binary file not shown.

View File

@ -948,37 +948,37 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1505"/>
<source>Export as &amp;Picture...</source>
<translation>(&amp;P)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="154"/>
<location filename="../ProfileInterface.cpp" line="1435"/>
<location filename="../ProfileInterface.cpp" line="1506"/>
<source>Export as &amp;Snapmatic...</source>
<translation> Snapmatic(&amp;S)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1428"/>
<location filename="../ProfileInterface.cpp" line="1499"/>
<source>&amp;Edit Properties...</source>
<translation>(&amp;E) ...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="157"/>
<location filename="../ProfileInterface.cpp" line="1429"/>
<location filename="../ProfileInterface.cpp" line="1500"/>
<source>&amp;Overwrite Image...</source>
<translation>(&amp;O)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="159"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<source>Open &amp;Map Viewer...</source>
<translation>(&amp;M)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="161"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<location filename="../ProfileInterface.cpp" line="1503"/>
<source>Open &amp;JSON Editor...</source>
<translation> JSON (&amp;J)...</translation>
</message>
@ -1235,8 +1235,22 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="422"/>
<location filename="../ImportDialog.cpp" line="742"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="857"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Import...</source>
<translation>...</translation>
</message>
@ -1250,20 +1264,6 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="743"/>
<location filename="../ImportDialog.cpp" line="774"/>
<location filename="../ImportDialog.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="527"/>
<location filename="../ProfileInterface.cpp" line="582"/>
<location filename="../ProfileInterface.cpp" line="604"/>
<location filename="../ProfileInterface.cpp" line="620"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="735"/>
<location filename="../ProfileInterface.cpp" line="814"/>
<location filename="../ProfileInterface.cpp" line="819"/>
<location filename="../ProfileInterface.cpp" line="979"/>
<location filename="../ProfileInterface.cpp" line="984"/>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1033"/>
<location filename="../ProfileInterface.cpp" line="1039"/>
<source>Import</source>
<translation></translation>
</message>
@ -1386,109 +1386,104 @@ Press 1 for Default View</source>
<translation> Snapmatic PGTA .g5e</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="984"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="996"/>
<location filename="../ProfileInterface.cpp" line="1067"/>
<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="1033"/>
<location filename="../ProfileInterface.cpp" line="1104"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1039"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1103"/>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1186"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1174"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<source>Export selected...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1126"/>
<location filename="../ProfileInterface.cpp" line="1144"/>
<location filename="../ProfileInterface.cpp" line="1197"/>
<location filename="../ProfileInterface.cpp" line="1215"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1127"/>
<location filename="../ProfileInterface.cpp" line="1149"/>
<location filename="../ProfileInterface.cpp" line="1198"/>
<location filename="../ProfileInterface.cpp" line="1220"/>
<source>JPG pictures only</source>
<translation> JPG </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1153"/>
<location filename="../ProfileInterface.cpp" line="1199"/>
<location filename="../ProfileInterface.cpp" line="1224"/>
<source>GTA Snapmatic only</source>
<translation> GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1141"/>
<location filename="../ProfileInterface.cpp" line="1212"/>
<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="1187"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<source>Initialising export...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1292"/>
<source>Export failed with...
%1</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1312"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1283"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1354"/>
<source>Remove selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> Snapmatic /?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> Snapmatic /</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1853"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<source>No Snapmatic pictures are selected</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>%1 failed with...
%2</source>
@ -1503,81 +1498,86 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<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="1853"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify as Avatar</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="2023"/>
<location filename="../ProfileInterface.cpp" line="2129"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2200"/>
<source>Patch selected...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1897"/>
<location filename="../ProfileInterface.cpp" line="1916"/>
<location filename="../ProfileInterface.cpp" line="2024"/>
<location filename="../ProfileInterface.cpp" line="2043"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2149"/>
<location filename="../ProfileInterface.cpp" line="1865"/>
<location filename="../ProfileInterface.cpp" line="1884"/>
<location filename="../ProfileInterface.cpp" line="1968"/>
<location filename="../ProfileInterface.cpp" line="1987"/>
<location filename="../ProfileInterface.cpp" line="2095"/>
<location filename="../ProfileInterface.cpp" line="2114"/>
<location filename="../ProfileInterface.cpp" line="2201"/>
<location filename="../ProfileInterface.cpp" line="2220"/>
<source>Patch file %1 of %2 files</source>
<translation> %1 %2 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1847"/>
<location filename="../ProfileInterface.cpp" line="1918"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1868"/>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="1939"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1946"/>
<location filename="../ProfileInterface.cpp" line="2017"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1967"/>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2038"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2004"/>
<location filename="../ProfileInterface.cpp" line="2075"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> ID</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2073"/>
<location filename="../ProfileInterface.cpp" line="2144"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2094"/>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2165"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2111"/>
<location filename="../ProfileInterface.cpp" line="2182"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2176"/>
<location filename="../ProfileInterface.cpp" line="2247"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation></translation>
@ -1679,37 +1679,37 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1541"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1471"/>
<location filename="../ProfileInterface.cpp" line="1542"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1472"/>
<location filename="../ProfileInterface.cpp" line="1543"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1545"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1475"/>
<location filename="../ProfileInterface.cpp" line="1546"/>
<source>&amp;Deselect</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1478"/>
<location filename="../ProfileInterface.cpp" line="1549"/>
<source>Select &amp;All</source>
<translation>(&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1482"/>
<location filename="../ProfileInterface.cpp" line="1553"/>
<source>&amp;Deselect All</source>
<translation>(&amp;D)</translation>
</message>
@ -1808,7 +1808,7 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="110"/>
<location filename="../JsonEditorDialog.cpp" line="175"/>
<location filename="../JsonEditorDialog.cpp" line="181"/>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<location filename="../PictureDialog.cpp" line="907"/>
<location filename="../SnapmaticEditor.cpp" line="327"/>
<location filename="../SnapmaticWidget.cpp" line="387"/>
@ -1909,31 +1909,31 @@ Press 1 for Default View</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="193"/>
<location filename="../JsonEditorDialog.cpp" line="194"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>JSON Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>Snapmatic Crew</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1995"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<location filename="../ProfileInterface.cpp" line="2066"/>
<location filename="../SnapmaticEditor.cpp" line="420"/>
<source>New Snapmatic crew:</source>
<translation>:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>Snapmatic Title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2106"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<location filename="../ProfileInterface.cpp" line="2177"/>
<location filename="../SnapmaticEditor.cpp" line="391"/>
<source>New Snapmatic title:</source>
<translation>:</translation>
</message>
@ -2107,52 +2107,52 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1419"/>
<location filename="../ProfileInterface.cpp" line="1490"/>
<source>Edi&amp;t</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1422"/>
<location filename="../ProfileInterface.cpp" line="1493"/>
<source>Show &amp;In-game</source>
<translation>(&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1426"/>
<location filename="../ProfileInterface.cpp" line="1497"/>
<source>Hide &amp;In-game</source>
<translation>(&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1433"/>
<location filename="../ProfileInterface.cpp" line="1504"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1436"/>
<location filename="../ProfileInterface.cpp" line="1507"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1439"/>
<location filename="../ProfileInterface.cpp" line="1510"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1441"/>
<location filename="../ProfileInterface.cpp" line="1512"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1442"/>
<location filename="../ProfileInterface.cpp" line="1513"/>
<source>&amp;Deselect</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1445"/>
<location filename="../ProfileInterface.cpp" line="1516"/>
<source>Select &amp;All</source>
<translation>(&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1449"/>
<location filename="../ProfileInterface.cpp" line="1520"/>
<source>&amp;Deselect All</source>
<translation>(&amp;D)</translation>
</message>
@ -2371,15 +2371,15 @@ Press 1 for Default View</source>
<translation>(&amp;P)...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1349"/>
<location filename="../ProfileInterface.cpp" line="1363"/>
<location filename="../ProfileInterface.cpp" line="1420"/>
<location filename="../ProfileInterface.cpp" line="1434"/>
<location filename="../SnapmaticWidget.cpp" line="299"/>
<source>Show In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1383"/>
<location filename="../ProfileInterface.cpp" line="1397"/>
<location filename="../ProfileInterface.cpp" line="1454"/>
<location filename="../ProfileInterface.cpp" line="1468"/>
<location filename="../SnapmaticWidget.cpp" line="291"/>
<source>Hide In-game</source>
<translation></translation>