Feature: Auto-detect new files in Profile folder
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Syping 2021-05-23 07:12:56 +02:00
parent b47a0119a5
commit 268e8d3468
12 changed files with 1470 additions and 1393 deletions

View File

@ -138,6 +138,9 @@ ProfileInterface::ProfileInterface(ProfileDatabase *profileDB, CrewDatabase *cre
// Seed RNG // Seed RNG
pcg32_srandom_r(&rng, time(NULL), (intptr_t)&rng); pcg32_srandom_r(&rng, time(NULL), (intptr_t)&rng);
// Register Metatypes
qRegisterMetaType<QVector<QString>>();
setMouseTracking(true); setMouseTracking(true);
installEventFilter(this); installEventFilter(this);
} }
@ -179,6 +182,7 @@ void ProfileInterface::setupProfileInterface()
fixedPictures.clear(); fixedPictures.clear();
ui->labProfileLoading->setText(tr("Loading...")); ui->labProfileLoading->setText(tr("Loading..."));
profileLoader = new ProfileLoader(profileFolder, crewDB); profileLoader = new ProfileLoader(profileFolder, crewDB);
QObject::connect(profileLoader, SIGNAL(directoryScanned(QVector<QString>,QVector<QString>)), this, SLOT(directoryScanned(QVector<QString>,QVector<QString>)));
QObject::connect(profileLoader, SIGNAL(savegameLoaded(SavegameData*, QString)), this, SLOT(savegameLoaded_event(SavegameData*, QString))); QObject::connect(profileLoader, SIGNAL(savegameLoaded(SavegameData*, QString)), this, SLOT(savegameLoaded_event(SavegameData*, QString)));
QObject::connect(profileLoader, SIGNAL(pictureLoaded(SnapmaticPicture*)), this, SLOT(pictureLoaded_event(SnapmaticPicture*))); QObject::connect(profileLoader, SIGNAL(pictureLoaded(SnapmaticPicture*)), this, SLOT(pictureLoaded_event(SnapmaticPicture*)));
QObject::connect(profileLoader, SIGNAL(pictureFixed(SnapmaticPicture*)), this, SLOT(pictureFixed_event(SnapmaticPicture*))); QObject::connect(profileLoader, SIGNAL(pictureFixed(SnapmaticPicture*)), this, SLOT(pictureFixed_event(SnapmaticPicture*)));
@ -254,6 +258,63 @@ void ProfileInterface::loadingProgress(int value, int maximum)
ui->labProfileLoading->setText(loadingStr.arg(QString::number(value), QString::number(maximum))); ui->labProfileLoading->setText(loadingStr.arg(QString::number(value), QString::number(maximum)));
} }
void ProfileInterface::directoryChanged(const QString &path)
{
QDir dir(profileFolder);
QVector<QString> t_savegameFiles;
QVector<QString> t_snapmaticPics;
QVector<QString> n_savegameFiles;
QVector<QString> n_snapmaticPics;
const QStringList files = dir.entryList(QDir::Files);
for (const QString &fileName : files) {
if (fileName.startsWith("SGTA5") && !fileName.endsWith(".bak")) {
t_savegameFiles << fileName;
if (!savegameFiles.contains(fileName)) {
n_savegameFiles << fileName;
}
}
if (fileName.startsWith("PGTA5") && !fileName.endsWith(".bak")) {
t_snapmaticPics << fileName;
if (!snapmaticPics.contains(fileName)) {
n_snapmaticPics << fileName;
}
}
}
savegameFiles = t_savegameFiles;
snapmaticPics = t_snapmaticPics;
if (!n_savegameFiles.isEmpty() || !n_snapmaticPics.isEmpty()) {
QEventLoop loop;
QTimer::singleShot(1000, &loop, SLOT(quit()));
loop.exec();
for (const QString &fileName : qAsConst(n_savegameFiles)) {
const QString filePath = profileFolder % "/" % fileName;
SavegameData *savegame = new SavegameData(filePath);
if (savegame->readingSavegame())
savegameLoaded(savegame, filePath, true);
else
delete savegame;
}
for (const QString &fileName : qAsConst(n_snapmaticPics)) {
const QString filePath = profileFolder % "/" % fileName;
SnapmaticPicture *picture = new SnapmaticPicture(filePath);
if (picture->readingPicture(true))
pictureLoaded(picture, true);
else
delete picture;
}
}
}
void ProfileInterface::directoryScanned(QVector<QString> savegameFiles_s, QVector<QString> snapmaticPics_s)
{
savegameFiles = savegameFiles_s;
snapmaticPics = snapmaticPics_s;
fileSystemWatcher.addPath(profileFolder);
QObject::connect(&fileSystemWatcher, SIGNAL(directoryChanged(QString)), this, SLOT(directoryChanged(QString)));
}
void ProfileInterface::insertSnapmaticIPI(QWidget *widget) void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
{ {
ProfileWidget *proWidget = qobject_cast<ProfileWidget*>(widget); ProfileWidget *proWidget = qobject_cast<ProfileWidget*>(widget);
@ -727,7 +788,8 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
spJson.createdTimestamp = spJson.createdDateTime.toTime_t(); spJson.createdTimestamp = spJson.createdDateTime.toTime_t();
#endif #endif
picture->setSnapmaticProperties(spJson); picture->setSnapmaticProperties(spJson);
picture->setPicFileName(QString("PGTA5%1").arg(QString::number(spJson.uid))); const QString picFileName = QString("PGTA5%1").arg(QString::number(spJson.uid));
picture->setPicFileName(picFileName);
picture->setPictureTitle(customImageTitle); picture->setPictureTitle(customImageTitle);
picture->updateStrings(); picture->updateStrings();
bool success = importSnapmaticPicture(picture, notMultiple); bool success = importSnapmaticPicture(picture, notMultiple);
@ -784,7 +846,8 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
spJson.createdTimestamp = spJson.createdDateTime.toTime_t(); spJson.createdTimestamp = spJson.createdDateTime.toTime_t();
#endif #endif
picture->setSnapmaticProperties(spJson); picture->setSnapmaticProperties(spJson);
picture->setPicFileName(QString("PGTA5%1").arg(QString::number(spJson.uid))); const QString picFileName = QString("PGTA5%1").arg(QString::number(spJson.uid));
picture->setPicFileName(picFileName);
picture->setPictureTitle(importDialog->getImageTitle()); picture->setPictureTitle(importDialog->getImageTitle());
picture->updateStrings(); picture->updateStrings();
success = importSnapmaticPicture(picture, notMultiple); success = importSnapmaticPicture(picture, notMultiple);
@ -1028,7 +1091,8 @@ bool ProfileInterface::importImage(QImage *snapmaticImage, QDateTime importDateT
spJson.createdTimestamp = spJson.createdDateTime.toTime_t(); spJson.createdTimestamp = spJson.createdDateTime.toTime_t();
#endif #endif
picture->setSnapmaticProperties(spJson); picture->setSnapmaticProperties(spJson);
picture->setPicFileName(QString("PGTA5%1").arg(QString::number(spJson.uid))); const QString picFileName = QString("PGTA5%1").arg(QString::number(spJson.uid));
picture->setPicFileName(picFileName);
picture->setPictureTitle(importDialog->getImageTitle()); picture->setPictureTitle(importDialog->getImageTitle());
picture->updateStrings(); picture->updateStrings();
success = importSnapmaticPicture(picture, true); success = importSnapmaticPicture(picture, true);
@ -1142,6 +1206,7 @@ bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool wa
if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format)) { if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format)) {
picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format); picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format);
picture->setPicFilePath(profileFolder % "/" % adjustedFileName); picture->setPicFilePath(profileFolder % "/" % adjustedFileName);
snapmaticPics << picture->getPictureFileName();
pictureLoaded(picture, true); pictureLoaded(picture, true);
return true; return true;
} }
@ -1172,9 +1237,11 @@ bool ProfileInterface::importSavegameData(SavegameData *savegame, QString sgdPat
} }
if (foundFree) { if (foundFree) {
if (QFile::copy(sgdPath, profileFolder % "/" % sgdFileName)) { const QString newSgdPath = profileFolder % "/" % sgdFileName;
savegame->setSavegameFileName(profileFolder % "/" % sgdFileName); if (QFile::copy(sgdPath, newSgdPath)) {
savegameLoaded(savegame, profileFolder % "/" % sgdFileName, true); savegame->setSavegameFileName(newSgdPath);
savegameFiles << newSgdPath;
savegameLoaded(savegame, newSgdPath, true);
return true; return true;
} }
else { else {
@ -2131,7 +2198,7 @@ preSelectionCrewID:
if (ok && !newCrew.isEmpty()) { if (ok && !newCrew.isEmpty()) {
if (newCrew.contains(" ")) newCrew = newCrew.split(" ").at(0); if (newCrew.contains(" ")) newCrew = newCrew.split(" ").at(0);
if (newCrew.length() > 10) return; if (newCrew.length() > 10) return;
for (const QChar &crewChar : newCrew) { for (const QChar &crewChar : qAsConst(newCrew)) {
if (!crewChar.isNumber()) { if (!crewChar.isNumber()) {
QMessageBox::warning(this, tr("Change Crew..."), tr("Failed to enter a valid Snapmatic Crew ID")); QMessageBox::warning(this, tr("Change Crew..."), tr("Failed to enter a valid Snapmatic Crew ID"));
goto preSelectionCrewID; goto preSelectionCrewID;

View File

@ -1,6 +1,6 @@
/***************************************************************************** /*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer * gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2017 Syping * Copyright (C) 2016-2021 Syping
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -30,6 +30,7 @@
#include "SavegameData.h" #include "SavegameData.h"
#include "CrewDatabase.h" #include "CrewDatabase.h"
#include "pcg_basic.h" #include "pcg_basic.h"
#include <QFileSystemWatcher>
#include <QProgressDialog> #include <QProgressDialog>
#include <QSpacerItem> #include <QSpacerItem>
#include <QDateTime> #include <QDateTime>
@ -89,6 +90,8 @@ private slots:
void dialogNextPictureRequested(QWidget *dialog); void dialogNextPictureRequested(QWidget *dialog);
void dialogPreviousPictureRequested(QWidget *dialog); void dialogPreviousPictureRequested(QWidget *dialog);
void on_saProfileContent_dropped(const QMimeData *mimeData); void on_saProfileContent_dropped(const QMimeData *mimeData);
void directoryChanged(const QString &path);
void directoryScanned(QVector<QString> savegameFiles, QVector<QString> snapmaticPics);
protected: protected:
bool eventFilter(QObject *watched, QEvent *event); bool eventFilter(QObject *watched, QEvent *event);
@ -104,6 +107,9 @@ private:
QList<SavegameData*> savegames; QList<SavegameData*> savegames;
QList<SnapmaticPicture*> pictures; QList<SnapmaticPicture*> pictures;
QMap<ProfileWidget*,QString> widgets; QMap<ProfileWidget*,QString> widgets;
QFileSystemWatcher fileSystemWatcher;
QVector<QString> savegameFiles;
QVector<QString> snapmaticPics;
QSpacerItem *saSpacerItem; QSpacerItem *saSpacerItem;
QStringList fixedPictures; QStringList fixedPictures;
QString enabledPicStr; QString enabledPicStr;

View File

@ -81,6 +81,9 @@ void ProfileLoader::run()
closedir(dirp); closedir(dirp);
#endif #endif
// Directory successfully scanned
emit directoryScanned(savegameFiles, snapmaticPics);
// Loading pictures and savegames // Loading pictures and savegames
emit loadingProgress(curFile, maximumV); emit loadingProgress(curFile, maximumV);
for (const QString &SavegameFile : qAsConst(savegameFiles)) { for (const QString &SavegameFile : qAsConst(savegameFiles)) {

View File

@ -1,6 +1,6 @@
/***************************************************************************** /*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer * gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2017 Syping * Copyright (C) 2016-2021 Syping
* *
* This program is free software: you can redistribute it and/or modify * This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -48,6 +48,7 @@ signals:
void pictureFixed(SnapmaticPicture *picture); void pictureFixed(SnapmaticPicture *picture);
void savegameLoaded(SavegameData *savegame, QString savegamePath); void savegameLoaded(SavegameData *savegame, QString savegamePath);
void loadingProgress(int value, int maximum); void loadingProgress(int value, int maximum);
void directoryScanned(QVector<QString> savegameFiles, QVector<QString> snapmaticPics);
}; };
#endif // PROFILELOADER_H #endif // PROFILELOADER_H

View File

@ -373,7 +373,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="216"/> <location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="683"/> <location filename="../ProfileInterface.cpp" line="744"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -381,7 +381,7 @@ Pictures and Savegames</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="262"/> <location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/> <location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="699"/> <location filename="../ProfileInterface.cpp" line="760"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1020,37 +1020,37 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="186"/> <location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1581"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="187"/> <location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1582"/> <location filename="../ProfileInterface.cpp" line="1649"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="189"/> <location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1575"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="190"/> <location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1576"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="192"/> <location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1578"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="194"/> <location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1300,23 +1300,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="523"/> <location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/> <location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="476"/> <location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="477"/> <location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="536"/> <location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="937"/> <location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Import...</source> <source>Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1333,14 +1333,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="533"/> <location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/> <location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="494"/> <location filename="../ProfileInterface.cpp" line="555"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="534"/> <location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/> <location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="590"/> <location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1348,14 +1348,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="551"/> <location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/> <location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="559"/> <location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/> <location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1365,194 +1365,194 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="180"/> <location filename="../ProfileInterface.cpp" line="183"/>
<source>Loading...</source> <source>Loading...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="490"/> <location filename="../ProfileInterface.cpp" line="551"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="491"/> <location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../UserInterface.cpp" line="587"/> <location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="492"/> <location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../UserInterface.cpp" line="588"/> <location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="493"/> <location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../UserInterface.cpp" line="589"/> <location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../UserInterface.cpp" line="669"/> <location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="537"/> <location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="614"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../UserInterface.cpp" line="625"/> <location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../UserInterface.cpp" line="639"/> <location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="953"/> <location filename="../ProfileInterface.cpp" line="1016"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1251"/> <location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1271"/> <location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1288"/> <location filename="../ProfileInterface.cpp" line="1355"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1272"/> <location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1292"/> <location filename="../ProfileInterface.cpp" line="1359"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1273"/> <location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1295"/> <location filename="../ProfileInterface.cpp" line="1362"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1391"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1560,81 +1560,81 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1949"/> <location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2042"/> <location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2157"/> <location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2252"/> <location filename="../ProfileInterface.cpp" line="2319"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1950"/> <location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="1968"/> <location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2043"/> <location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2061"/> <location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2158"/> <location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2176"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2253"/> <location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2271"/> <location filename="../ProfileInterface.cpp" line="2338"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1718,45 +1718,45 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1649"/> <location filename="../ProfileInterface.cpp" line="1716"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1614"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1650"/> <location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1680"/> <location filename="../ProfileInterface.cpp" line="1747"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1651"/> <location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1748"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1654"/> <location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1684"/> <location filename="../ProfileInterface.cpp" line="1751"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1657"/> <location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1686"/> <location filename="../ProfileInterface.cpp" line="1753"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1660"/> <location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1689"/> <location filename="../ProfileInterface.cpp" line="1756"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1663"/> <location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1692"/> <location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1959,25 +1959,25 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -2034,19 +2034,19 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="165"/> <location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="336"/> <location filename="../SnapmaticPicture.cpp" line="344"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="168"/> <location filename="../JsonEditorDialog.cpp" line="168"/>
<location filename="../SnapmaticPicture.cpp" line="339"/> <location filename="../SnapmaticPicture.cpp" line="347"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="171"/> <location filename="../JsonEditorDialog.cpp" line="171"/>
<location filename="../SnapmaticPicture.cpp" line="342"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2056,42 +2056,42 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="306"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="318"/> <location filename="../SnapmaticPicture.cpp" line="326"/>
<source>header not exists</source> <source>header not exists</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="321"/> <location filename="../SnapmaticPicture.cpp" line="329"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="324"/> <location filename="../SnapmaticPicture.cpp" line="332"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="327"/> <location filename="../SnapmaticPicture.cpp" line="335"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="330"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="333"/> <location filename="../SnapmaticPicture.cpp" line="341"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="344"/> <location filename="../SnapmaticPicture.cpp" line="352"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -2152,62 +2152,62 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1568"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1605"/> <location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1738"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1570"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1611"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1744"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1573"/> <location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1612"/> <location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1745"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1580"/> <location filename="../ProfileInterface.cpp" line="1647"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1583"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1589"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1591"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1621"/> <location filename="../ProfileInterface.cpp" line="1688"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1594"/> <location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1691"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1597"/> <location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2410,42 +2410,42 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="346"/> <location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1609"/> <location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1742"/>
<source>Change &amp;Title...</source> <source>Change &amp;Title...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="354"/> <location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1608"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1741"/>
<source>Change &amp;Crew...</source> <source>Change &amp;Crew...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="362"/> <location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1606"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1672"/> <location filename="../ProfileInterface.cpp" line="1739"/>
<source>&amp;Qualify as Avatar</source> <source>&amp;Qualify as Avatar</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="370"/> <location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1607"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1740"/>
<source>Change &amp;Players...</source> <source>Change &amp;Players...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../SnapmaticWidget.cpp" line="322"/> <location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>

View File

@ -401,7 +401,7 @@ Snapmatic Bilder und Spielständen</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="216"/> <location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="683"/> <location filename="../ProfileInterface.cpp" line="744"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigener Avatar</translation> <translation>Eigener Avatar</translation>
@ -409,7 +409,7 @@ Snapmatic Bilder und Spielständen</translation>
<message> <message>
<location filename="../ImportDialog.cpp" line="262"/> <location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/> <location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="699"/> <location filename="../ProfileInterface.cpp" line="760"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigenes Bild</translation> <translation>Eigenes Bild</translation>
@ -1065,31 +1065,31 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="186"/> <location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1581"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Als &amp;Bild exportieren...</translation> <translation>Als &amp;Bild exportieren...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="187"/> <location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1582"/> <location filename="../ProfileInterface.cpp" line="1649"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Als &amp;Snapmatic exportieren...</translation> <translation>Als &amp;Snapmatic exportieren...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="189"/> <location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1575"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>Eigenschaften bearb&amp;eiten...</translation> <translation>Eigenschaften bearb&amp;eiten...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="190"/> <location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1576"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>Bild &amp;überschreiben...</translation> <translation>Bild &amp;überschreiben...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="192"/> <location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1578"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>&amp;Kartenansicht öffnen...</translation> <translation>&amp;Kartenansicht öffnen...</translation>
</message> </message>
@ -1236,7 +1236,7 @@ Drücke 1 für Standardmodus</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="194"/> <location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>&amp;JSON Editor öffnen...</translation> <translation>&amp;JSON Editor öffnen...</translation>
</message> </message>
@ -1334,40 +1334,40 @@ Drücke 1 für Standardmodus</translation>
<translation>S&amp;chließen</translation> <translation>S&amp;chließen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="180"/> <location filename="../ProfileInterface.cpp" line="183"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Lade...</translation> <translation>Lade...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic Lader</translation> <translation>Snapmatic Lader</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation> <translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="523"/> <location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/> <location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="476"/> <location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="477"/> <location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="536"/> <location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="937"/> <location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Import...</source> <source>Import...</source>
<translation>Importieren...</translation> <translation>Importieren...</translation>
</message> </message>
@ -1382,45 +1382,45 @@ Drücke 1 für Standardmodus</translation>
<translation>Importieren</translation> <translation>Importieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="492"/> <location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../UserInterface.cpp" line="588"/> <location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Spielstanddateien (SGTA*)</translation> <translation>Spielstanddateien (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="493"/> <location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../UserInterface.cpp" line="589"/> <location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic Bilder (PGTA*)</translation> <translation>Snapmatic Bilder (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="490"/> <location filename="../ProfileInterface.cpp" line="551"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Importfähige Dateien (%1)</translation> <translation>Importfähige Dateien (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="533"/> <location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/> <location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="494"/> <location filename="../ProfileInterface.cpp" line="555"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Alle Bilddateien (%1)</translation> <translation>Alle Bilddateien (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="534"/> <location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/> <location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="590"/> <location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Alle Dateien (**)</translation> <translation>Alle Dateien (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="537"/> <location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="614"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Importiere Datei %1 von %2 Dateien</translation> <translation>Importiere Datei %1 von %2 Dateien</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1429,13 +1429,13 @@ Drücke 1 für Standardmodus</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../UserInterface.cpp" line="625"/> <location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Fehler beim Lesen vom Snapmatic Bild</translation> <translation>Fehler beim Lesen vom Snapmatic Bild</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../UserInterface.cpp" line="639"/> <location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Fehler beim Lesen von Spielstanddatei</translation> <translation>Fehler beim Lesen von Spielstanddatei</translation>
@ -1443,40 +1443,40 @@ Drücke 1 für Standardmodus</translation>
<message> <message>
<location filename="../ImportDialog.cpp" line="551"/> <location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/> <location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation> <translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="559"/> <location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/> <location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation> <translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation> <translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1391"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initialisiere Export...</translation> <translation>Initialisiere Export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation> <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Exportiere Snapmatic Bilder%2&lt;br&gt;&lt;br&gt;JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen&lt;br&gt;Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren&lt;br&gt;&lt;br&gt;Exportieren als:</translation> <translation>%1Exportiere Snapmatic Bilder%2&lt;br&gt;&lt;br&gt;JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen&lt;br&gt;Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren&lt;br&gt;&lt;br&gt;Exportieren als:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../UserInterface.cpp" line="669"/> <location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Keine gültige Datei wurde ausgewählt</translation> <translation>Keine gültige Datei wurde ausgewählt</translation>
@ -1487,91 +1487,91 @@ Drücke 1 für Standardmodus</translation>
<translation>Aktivierte Bilder: %1 von %2</translation> <translation>Aktivierte Bilder: %1 von %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation> <translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation> <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation> <translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation> <translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1271"/> <location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1288"/> <location filename="../ProfileInterface.cpp" line="1355"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG Bilder und GTA Snapmatic</translation> <translation>JPG Bilder und GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1272"/> <location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1292"/> <location filename="../ProfileInterface.cpp" line="1359"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Nur JPG Bilder</translation> <translation>Nur JPG Bilder</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1273"/> <location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1295"/> <location filename="../ProfileInterface.cpp" line="1362"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Nur GTA Snapmatic</translation> <translation>Nur GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1949"/> <location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2042"/> <location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2157"/> <location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2252"/> <location filename="../ProfileInterface.cpp" line="2319"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Auswahl patchen...</translation> <translation>Auswahl patchen...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1950"/> <location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="1968"/> <location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2043"/> <location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2061"/> <location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2158"/> <location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2176"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2253"/> <location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2271"/> <location filename="../ProfileInterface.cpp" line="2338"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Patche Datei %1 von %2 Dateien</translation> <translation>Patche Datei %1 von %2 Dateien</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Als Avatar qualifizieren</translation> <translation>Als Avatar qualifizieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Keine Snapmatic Bilder sind ausgewählt</translation> <translation>Keine Snapmatic Bilder sind ausgewählt</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation> <translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1581,93 +1581,93 @@ Drücke 1 für Standardmodus</translation>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="953"/> <location filename="../ProfileInterface.cpp" line="1016"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Bereite Inhalt für Import vor...</translation> <translation>Bereite Inhalt für Import vor...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Qualifizieren</translation> <translation>Qualifizieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Spieler ändern...</translation> <translation>Spieler ändern...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Spieler ändern</translation> <translation>Spieler ändern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Crew ändern...</translation> <translation>Crew ändern...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation> <translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Crew ändern</translation> <translation>Crew ändern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Titel ändern...</translation> <translation>Titel ändern...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation> <translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Titel ändern</translation> <translation>Titel ändern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation> <translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Auswahl löschen</translation> <translation>Auswahl löschen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation> <translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1251"/> <location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Auswahl exportieren...</translation> <translation>Auswahl exportieren...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1686,7 +1686,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation> <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="491"/> <location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../UserInterface.cpp" line="587"/> <location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
@ -1810,38 +1810,38 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation> <translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1649"/> <location filename="../ProfileInterface.cpp" line="1716"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>A&amp;nsehen</translation> <translation>A&amp;nsehen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1651"/> <location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1748"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation> <translation>Entfe&amp;rnen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1654"/> <location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1684"/> <location filename="../ProfileInterface.cpp" line="1751"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>Au&amp;swählen</translation> <translation>Au&amp;swählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1657"/> <location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1686"/> <location filename="../ProfileInterface.cpp" line="1753"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation> <translation>A&amp;bwählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1660"/> <location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1689"/> <location filename="../ProfileInterface.cpp" line="1756"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>&amp;Alles auswählen</translation> <translation>&amp;Alles auswählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1663"/> <location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1692"/> <location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation> <translation>Alles a&amp;bwählen</translation>
</message> </message>
@ -1856,9 +1856,9 @@ Drücke 1 für Standardmodus</translation>
<translation>Spielstand kopieren</translation> <translation>Spielstand kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1614"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1650"/> <location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1680"/> <location filename="../ProfileInterface.cpp" line="1747"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exportieren</translation> <translation>&amp;Exportieren</translation>
</message> </message>
@ -1952,7 +1952,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Meme</translation> <translation>Meme</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Snapmatic Titel</translation> <translation>Snapmatic Titel</translation>
@ -2068,19 +2068,19 @@ Drücke 1 für Standardmodus</translation>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation> <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Neuer Snapmatic Titel:</translation> <translation>Neuer Snapmatic Titel:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Snapmatic Crew</translation> <translation>Snapmatic Crew</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Neue Snapmatic Crew:</translation> <translation>Neue Snapmatic Crew:</translation>
@ -2094,61 +2094,61 @@ Drücke 1 für Standardmodus</translation>
<translation>FOTO - %1</translation> <translation>FOTO - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="306"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation>Datei öffnen %1</translation> <translation>Datei öffnen %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="318"/> <location filename="../SnapmaticPicture.cpp" line="326"/>
<source>header not exists</source> <source>header not exists</source>
<translation>Header nicht existiert</translation> <translation>Header nicht existiert</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="321"/> <location filename="../SnapmaticPicture.cpp" line="329"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>Header fehlerhaft ist</translation> <translation>Header fehlerhaft ist</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="324"/> <location filename="../SnapmaticPicture.cpp" line="332"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>Bild nicht existiert (%1)</translation> <translation>Bild nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="327"/> <location filename="../SnapmaticPicture.cpp" line="335"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON nicht existiert (%1)</translation> <translation>JSON nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="330"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>Titel nicht existiert (%1)</translation> <translation>Titel nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="333"/> <location filename="../SnapmaticPicture.cpp" line="341"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>Beschreibung nicht existiert (%1)</translation> <translation>Beschreibung nicht existiert (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="344"/> <location filename="../SnapmaticPicture.cpp" line="352"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>Datei lesen von %1 weil %2</translation> <translation>Datei lesen von %1 weil %2</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="165"/> <location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="336"/> <location filename="../SnapmaticPicture.cpp" line="344"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON ist unvollständig und Fehlerhaft</translation> <translation>JSON ist unvollständig und Fehlerhaft</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="168"/> <location filename="../JsonEditorDialog.cpp" line="168"/>
<location filename="../SnapmaticPicture.cpp" line="339"/> <location filename="../SnapmaticPicture.cpp" line="347"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON ist unvollständig</translation> <translation>JSON ist unvollständig</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="171"/> <location filename="../JsonEditorDialog.cpp" line="171"/>
<location filename="../SnapmaticPicture.cpp" line="342"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON ist Fehlerhaft</translation> <translation>JSON ist Fehlerhaft</translation>
</message> </message>
@ -2208,62 +2208,62 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation> <translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1568"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1605"/> <location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1738"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Bearbei&amp;ten</translation> <translation>Bearbei&amp;ten</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1580"/> <location filename="../ProfileInterface.cpp" line="1647"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exportieren</translation> <translation>&amp;Exportieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1570"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1611"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1744"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>&amp;Im Spiel anzeigen</translation> <translation>&amp;Im Spiel anzeigen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1573"/> <location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1612"/> <location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1745"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>&amp;Im Spiel ausblenden</translation> <translation>&amp;Im Spiel ausblenden</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1583"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>A&amp;nsehen</translation> <translation>A&amp;nsehen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation> <translation>Entfe&amp;rnen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1589"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>Au&amp;swählen</translation> <translation>Au&amp;swählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1591"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1621"/> <location filename="../ProfileInterface.cpp" line="1688"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation> <translation>A&amp;bwählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1594"/> <location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1691"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Alles &amp;auswählen</translation> <translation>Alles &amp;auswählen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1597"/> <location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation> <translation>Alles a&amp;bwählen</translation>
</message> </message>
@ -2376,29 +2376,29 @@ Drücke 1 für Standardmodus</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="346"/> <location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1609"/> <location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1742"/>
<source>Change &amp;Title...</source> <source>Change &amp;Title...</source>
<translation>&amp;Titel ändern...</translation> <translation>&amp;Titel ändern...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="362"/> <location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1606"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1672"/> <location filename="../ProfileInterface.cpp" line="1739"/>
<source>&amp;Qualify as Avatar</source> <source>&amp;Qualify as Avatar</source>
<translation>Als Avatar &amp;qualifizieren</translation> <translation>Als Avatar &amp;qualifizieren</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="370"/> <location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1607"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1740"/>
<source>Change &amp;Players...</source> <source>Change &amp;Players...</source>
<translation>S&amp;pieler ändern...</translation> <translation>S&amp;pieler ändern...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="354"/> <location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1608"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1741"/>
<source>Change &amp;Crew...</source> <source>Change &amp;Crew...</source>
<translation>&amp;Crew ändern...</translation> <translation>&amp;Crew ändern...</translation>
</message> </message>
@ -2552,15 +2552,15 @@ Drücke 1 für Standardmodus</translation>
<translation>&amp;Neuladen</translation> <translation>&amp;Neuladen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Im Spiel anzeigen</translation> <translation>Im Spiel anzeigen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../SnapmaticWidget.cpp" line="322"/> <location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Im Spiel ausblenden</translation> <translation>Im Spiel ausblenden</translation>

View File

@ -379,7 +379,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="216"/> <location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="683"/> <location filename="../ProfileInterface.cpp" line="744"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -387,7 +387,7 @@ Pictures and Savegames</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="262"/> <location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/> <location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="699"/> <location filename="../ProfileInterface.cpp" line="760"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1020,31 +1020,31 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="186"/> <location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1581"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="187"/> <location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1582"/> <location filename="../ProfileInterface.cpp" line="1649"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="190"/> <location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1576"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="189"/> <location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1575"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="192"/> <location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1578"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1194,7 +1194,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="194"/> <location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1303,40 +1303,40 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="180"/> <location filename="../ProfileInterface.cpp" line="183"/>
<source>Loading...</source> <source>Loading...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="523"/> <location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/> <location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="476"/> <location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="477"/> <location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="536"/> <location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="937"/> <location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Import...</source> <source>Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1351,24 +1351,24 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="490"/> <location filename="../ProfileInterface.cpp" line="551"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="491"/> <location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../UserInterface.cpp" line="587"/> <location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="492"/> <location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../UserInterface.cpp" line="588"/> <location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="493"/> <location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../UserInterface.cpp" line="589"/> <location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1376,46 +1376,46 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="533"/> <location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/> <location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="494"/> <location filename="../ProfileInterface.cpp" line="555"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="534"/> <location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/> <location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="590"/> <location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../UserInterface.cpp" line="669"/> <location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="537"/> <location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="614"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../UserInterface.cpp" line="625"/> <location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../UserInterface.cpp" line="639"/> <location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1423,147 +1423,147 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="551"/> <location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/> <location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="559"/> <location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/> <location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1271"/> <location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1288"/> <location filename="../ProfileInterface.cpp" line="1355"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1272"/> <location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1292"/> <location filename="../ProfileInterface.cpp" line="1359"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1273"/> <location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1295"/> <location filename="../ProfileInterface.cpp" line="1362"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1251"/> <location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1391"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initializing export...</translation> <translation>Initializing export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1949"/> <location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2042"/> <location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2157"/> <location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2252"/> <location filename="../ProfileInterface.cpp" line="2319"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1950"/> <location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="1968"/> <location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2043"/> <location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2061"/> <location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2158"/> <location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2176"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2253"/> <location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2271"/> <location filename="../ProfileInterface.cpp" line="2338"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1571,70 +1571,70 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="953"/> <location filename="../ProfileInterface.cpp" line="1016"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -1718,45 +1718,45 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1649"/> <location filename="../ProfileInterface.cpp" line="1716"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1614"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1650"/> <location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1680"/> <location filename="../ProfileInterface.cpp" line="1747"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1651"/> <location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1748"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1654"/> <location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1684"/> <location filename="../ProfileInterface.cpp" line="1751"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1657"/> <location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1686"/> <location filename="../ProfileInterface.cpp" line="1753"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1660"/> <location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1689"/> <location filename="../ProfileInterface.cpp" line="1756"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1663"/> <location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1692"/> <location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2006,25 +2006,25 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
@ -2038,61 +2038,61 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="306"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="318"/> <location filename="../SnapmaticPicture.cpp" line="326"/>
<source>header not exists</source> <source>header not exists</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="321"/> <location filename="../SnapmaticPicture.cpp" line="329"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="324"/> <location filename="../SnapmaticPicture.cpp" line="332"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="327"/> <location filename="../SnapmaticPicture.cpp" line="335"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="330"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="333"/> <location filename="../SnapmaticPicture.cpp" line="341"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="344"/> <location filename="../SnapmaticPicture.cpp" line="352"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="165"/> <location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="336"/> <location filename="../SnapmaticPicture.cpp" line="344"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="168"/> <location filename="../JsonEditorDialog.cpp" line="168"/>
<location filename="../SnapmaticPicture.cpp" line="339"/> <location filename="../SnapmaticPicture.cpp" line="347"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="171"/> <location filename="../JsonEditorDialog.cpp" line="171"/>
<location filename="../SnapmaticPicture.cpp" line="342"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2152,62 +2152,62 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1568"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1605"/> <location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1738"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1570"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1611"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1744"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1573"/> <location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1612"/> <location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1745"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1580"/> <location filename="../ProfileInterface.cpp" line="1647"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1583"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1589"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1591"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1621"/> <location filename="../ProfileInterface.cpp" line="1688"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1594"/> <location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1691"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1597"/> <location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2405,8 +2405,8 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="370"/> <location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1607"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1740"/>
<source>Change &amp;Players...</source> <source>Change &amp;Players...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2417,22 +2417,22 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="346"/> <location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1609"/> <location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1742"/>
<source>Change &amp;Title...</source> <source>Change &amp;Title...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="354"/> <location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1608"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1741"/>
<source>Change &amp;Crew...</source> <source>Change &amp;Crew...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="362"/> <location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1606"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1672"/> <location filename="../ProfileInterface.cpp" line="1739"/>
<source>&amp;Qualify as Avatar</source> <source>&amp;Qualify as Avatar</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -2488,15 +2488,15 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../SnapmaticWidget.cpp" line="322"/> <location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>

View File

@ -398,7 +398,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="216"/> <location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="683"/> <location filename="../ProfileInterface.cpp" line="744"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Avatar personnalisé</translation> <translation>Avatar personnalisé</translation>
@ -406,7 +406,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<message> <message>
<location filename="../ImportDialog.cpp" line="262"/> <location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/> <location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="699"/> <location filename="../ProfileInterface.cpp" line="760"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Image personnalisé</translation> <translation>Image personnalisé</translation>
@ -1142,31 +1142,31 @@ Y : %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="186"/> <location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1581"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Exporter comme &amp;image...</translation> <translation>Exporter comme &amp;image...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="187"/> <location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1582"/> <location filename="../ProfileInterface.cpp" line="1649"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Exporter comme &amp;Snapmatic...</translation> <translation>Exporter comme &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="190"/> <location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1576"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>&amp;Remplacer l&apos;image...</translation> <translation>&amp;Remplacer l&apos;image...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="189"/> <location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1575"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>Modifier les &amp;propriétés...</translation> <translation>Modifier les &amp;propriétés...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="192"/> <location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1578"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>Ouvrir la &amp;Visionneuse de Carte...</translation> <translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
</message> </message>
@ -1233,7 +1233,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="194"/> <location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>Ouvrir l&apos;éditeur &amp;JSON...</translation> <translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
</message> </message>
@ -1342,40 +1342,40 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Photos activées : %1 sur %2</translation> <translation>Photos activées : %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="180"/> <location filename="../ProfileInterface.cpp" line="183"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Chargement...</translation> <translation>Chargement...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation> <translation>Snapmatic Loader</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Les Snapmatic suivants ont é répaés&lt;/h4&gt;%1</translation> <translation>&lt;h4&gt;Les Snapmatic suivants ont é répaés&lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="523"/> <location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/> <location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="476"/> <location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="477"/> <location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="536"/> <location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="937"/> <location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Import...</source> <source>Import...</source>
<translation>Importer...</translation> <translation>Importer...</translation>
</message> </message>
@ -1390,13 +1390,13 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Importer</translation> <translation>Importer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="492"/> <location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../UserInterface.cpp" line="588"/> <location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Fichiers de sauvegarde GTA (SGTA*)</translation> <translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="493"/> <location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../UserInterface.cpp" line="589"/> <location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Photos Snapmatic (PGTA*)</translation> <translation>Photos Snapmatic (PGTA*)</translation>
@ -1404,26 +1404,26 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message> <message>
<location filename="../ImportDialog.cpp" line="533"/> <location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/> <location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="494"/> <location filename="../ProfileInterface.cpp" line="555"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Toutes les images (%1)</translation> <translation>Toutes les images (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="534"/> <location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/> <location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="590"/> <location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Tous les fichiers (**)</translation> <translation>Tous les fichiers (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="537"/> <location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="614"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Importation du fichier %1 sur %2</translation> <translation>Importation du fichier %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1432,25 +1432,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../UserInterface.cpp" line="669"/> <location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Fichier invalide</translation> <translation>Fichier invalide</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="490"/> <location filename="../ProfileInterface.cpp" line="551"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Fichiers importables (%1)</translation> <translation>Fichiers importables (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../UserInterface.cpp" line="625"/> <location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Impossible d&apos;ouvrir la photo Snapmatic</translation> <translation>Impossible d&apos;ouvrir la photo Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../UserInterface.cpp" line="639"/> <location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Impossible de lire le fichier de sauvegarde</translation> <translation>Impossible de lire le fichier de sauvegarde</translation>
@ -1458,122 +1458,122 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message> <message>
<location filename="../ImportDialog.cpp" line="551"/> <location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/> <location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation> <translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="559"/> <location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/> <location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être parsé correctement</translation> <translation>Impossible d&apos;importer %1, le fichier ne peut pas être parsé correctement</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Impossible d&apos;importer %1, le format du fichier n&apos;est pas détecté</translation> <translation>Impossible d&apos;importer %1, le format du fichier n&apos;est pas détecté</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Impossible d&apos;importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation> <translation>Impossible d&apos;importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Impossible d&apos;importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation> <translation>Impossible d&apos;importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Impossible d&apos;importer la sauvegarde, impossible de copier le fichier dans le profil</translation> <translation>Impossible d&apos;importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Impossible d&apos;importer la sauvegarde, aucun emplacement libre</translation> <translation>Impossible d&apos;importer la sauvegarde, aucun emplacement libre</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1271"/> <location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1288"/> <location filename="../ProfileInterface.cpp" line="1355"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>Images JPG et GTA Snapmatic</translation> <translation>Images JPG et GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1272"/> <location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1292"/> <location filename="../ProfileInterface.cpp" line="1359"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Images JPG seulement</translation> <translation>Images JPG seulement</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1273"/> <location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1295"/> <location filename="../ProfileInterface.cpp" line="1362"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>GTA Snapmatic seulement</translation> <translation>GTA Snapmatic seulement</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Exporter les photos Snapmatic%2&lt;br&gt;&lt;br&gt;Les fichiers JPG permettent d&apos;ouvrir les photos avec une visionneuse d&apos;images&lt;br&gt;Les GTA Snapmatic permettent d&apos;importer les photos dans le jeu&lt;br&gt;&lt;br&gt;Exporter comme :</translation> <translation>%1Exporter les photos Snapmatic%2&lt;br&gt;&lt;br&gt;Les fichiers JPG permettent d&apos;ouvrir les photos avec une visionneuse d&apos;images&lt;br&gt;Les GTA Snapmatic permettent d&apos;importer les photos dans le jeu&lt;br&gt;&lt;br&gt;Exporter comme :</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1251"/> <location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Exporter la sélection...</translation> <translation>Exporter la sélection...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1391"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initialisation de l&apos;export...</translation> <translation>Initialisation de l&apos;export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Qualifier comme Avatar</translation> <translation>Qualifier comme Avatar</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Aucun Snapmatic sélectionné</translation> <translation>Aucun Snapmatic sélectionné</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1949"/> <location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2042"/> <location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2157"/> <location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2252"/> <location filename="../ProfileInterface.cpp" line="2319"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Patcher la sélection...</translation> <translation>Patcher la sélection...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1950"/> <location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="1968"/> <location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2043"/> <location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2061"/> <location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2158"/> <location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2176"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2253"/> <location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2271"/> <location filename="../ProfileInterface.cpp" line="2338"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Patch du fichier %1 sur %2</translation> <translation>Patch du fichier %1 sur %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1583,76 +1583,76 @@ Appuyer sur 1 pour le mode par défaut</translation>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation> <translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="953"/> <location filename="../ProfileInterface.cpp" line="1016"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Préparation du contenu pour l&apos;import...</translation> <translation>Préparation du contenu pour l&apos;import...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation> <translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Qualifier</translation> <translation>Qualifier</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Modifier les joueurs...</translation> <translation>Modifier les joueurs...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Modifier les joueurs</translation> <translation>Modifier les joueurs</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Modifier le Crew...</translation> <translation>Modifier le Crew...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Snapmatic Crew ID invalide</translation> <translation>Snapmatic Crew ID invalide</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Changer le Crew</translation> <translation>Changer le Crew</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Changer le titre...</translation> <translation>Changer le titre...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Titre Snapmatic invalide</translation> <translation>Titre Snapmatic invalide</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Changer le titre</translation> <translation>Changer le titre</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1661,20 +1661,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation> <translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Supprimer la sélection</translation> <translation>Supprimer la sélection</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Supprimer la sélection ?</translation> <translation>Supprimer la sélection ?</translation>
</message> </message>
@ -1684,7 +1684,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation> <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="491"/> <location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../UserInterface.cpp" line="587"/> <location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
@ -1778,9 +1778,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer</translation> <translation>Supprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1614"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1650"/> <location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1680"/> <location filename="../ProfileInterface.cpp" line="1747"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exporter</translation> <translation>&amp;Exporter</translation>
</message> </message>
@ -1871,38 +1871,38 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible de supprimer %1</translation> <translation>Impossible de supprimer %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1649"/> <location filename="../ProfileInterface.cpp" line="1716"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Voir</translation> <translation>&amp;Voir</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1651"/> <location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1748"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Supprimer</translation> <translation>&amp;Supprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1654"/> <location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1684"/> <location filename="../ProfileInterface.cpp" line="1751"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Sélectionner</translation> <translation>&amp;Sélectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1657"/> <location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1686"/> <location filename="../ProfileInterface.cpp" line="1753"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation> <translation>&amp;Déselectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1660"/> <location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1689"/> <location filename="../ProfileInterface.cpp" line="1756"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Sélectionner to&amp;ut</translation> <translation>Sélectionner to&amp;ut</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1663"/> <location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1692"/> <location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation> <translation>&amp;Déselectionner tout</translation>
</message> </message>
@ -1958,7 +1958,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Meme</translation> <translation>Meme</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Titre Snapmatic</translation> <translation>Titre Snapmatic</translation>
@ -2076,19 +2076,19 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation> <translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Nouveau titre Snapmatic :</translation> <translation>Nouveau titre Snapmatic :</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Crew Snapmatic</translation> <translation>Crew Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Nouveau crew Snapmatic :</translation> <translation>Nouveau crew Snapmatic :</translation>
@ -2102,61 +2102,61 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>PHOTO - %1</translation> <translation>PHOTO - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="306"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation>ouverture du fichier %1</translation> <translation>ouverture du fichier %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="318"/> <location filename="../SnapmaticPicture.cpp" line="326"/>
<source>header not exists</source> <source>header not exists</source>
<translation>les headers n&apos;existent pas</translation> <translation>les headers n&apos;existent pas</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="321"/> <location filename="../SnapmaticPicture.cpp" line="329"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>les headers sont incorrects</translation> <translation>les headers sont incorrects</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="324"/> <location filename="../SnapmaticPicture.cpp" line="332"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>l&apos;image n&apos;existe pas (%1)</translation> <translation>l&apos;image n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="327"/> <location filename="../SnapmaticPicture.cpp" line="335"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>le JSON n&apos;existe pas (%1)</translation> <translation>le JSON n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="330"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>le titre n&apos;existe pas (%1)</translation> <translation>le titre n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="333"/> <location filename="../SnapmaticPicture.cpp" line="341"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>la description n&apos;existe pas (%1)</translation> <translation>la description n&apos;existe pas (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="344"/> <location filename="../SnapmaticPicture.cpp" line="352"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>lecture du fichier %1 : %2</translation> <translation>lecture du fichier %1 : %2</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="165"/> <location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="336"/> <location filename="../SnapmaticPicture.cpp" line="344"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON incomplet ou incorrect</translation> <translation>JSON incomplet ou incorrect</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="168"/> <location filename="../JsonEditorDialog.cpp" line="168"/>
<location filename="../SnapmaticPicture.cpp" line="339"/> <location filename="../SnapmaticPicture.cpp" line="347"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON incomplet</translation> <translation>JSON incomplet</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="171"/> <location filename="../JsonEditorDialog.cpp" line="171"/>
<location filename="../SnapmaticPicture.cpp" line="342"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON incorrect</translation> <translation>JSON incorrect</translation>
</message> </message>
@ -2236,62 +2236,62 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>%1 n&apos;a pas pu être rendu visible en jeu</translation> <translation>%1 n&apos;a pas pu être rendu visible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1568"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1605"/> <location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1738"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Édi&amp;ter</translation> <translation>Édi&amp;ter</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1570"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1611"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1744"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>&amp;Visible en jeu</translation> <translation>&amp;Visible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1573"/> <location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1612"/> <location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1745"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>&amp;Invisible en jeu</translation> <translation>&amp;Invisible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1580"/> <location filename="../ProfileInterface.cpp" line="1647"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exporter</translation> <translation>&amp;Exporter</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1583"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Voir</translation> <translation>&amp;Voir</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>S&amp;upprimer</translation> <translation>S&amp;upprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1589"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Sélectionner</translation> <translation>&amp;Sélectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1591"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1621"/> <location filename="../ProfileInterface.cpp" line="1688"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation> <translation>&amp;Déselectionner</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1594"/> <location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1691"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Sélectionner &amp;tout</translation> <translation>Sélectionner &amp;tout</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1597"/> <location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation> <translation>&amp;Déselectionner tout</translation>
</message> </message>
@ -2446,8 +2446,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="370"/> <location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1607"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1740"/>
<source>Change &amp;Players...</source> <source>Change &amp;Players...</source>
<translation>Modifier les &amp;joueurs...</translation> <translation>Modifier les &amp;joueurs...</translation>
</message> </message>
@ -2458,22 +2458,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="346"/> <location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1609"/> <location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1742"/>
<source>Change &amp;Title...</source> <source>Change &amp;Title...</source>
<translation>Changer le &amp;titre...</translation> <translation>Changer le &amp;titre...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="354"/> <location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1608"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1741"/>
<source>Change &amp;Crew...</source> <source>Change &amp;Crew...</source>
<translation>Changer le &amp;Crew...</translation> <translation>Changer le &amp;Crew...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="362"/> <location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1606"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1672"/> <location filename="../ProfileInterface.cpp" line="1739"/>
<source>&amp;Qualify as Avatar</source> <source>&amp;Qualify as Avatar</source>
<translation>&amp;Qualifier comme Avatar</translation> <translation>&amp;Qualifier comme Avatar</translation>
</message> </message>
@ -2560,15 +2560,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>%1 - Nouvelles</translation> <translation>%1 - Nouvelles</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Visible en jeu</translation> <translation>Visible en jeu</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../SnapmaticWidget.cpp" line="322"/> <location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Invisible en jeu</translation> <translation>Invisible en jeu</translation>

View File

@ -395,7 +395,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="216"/> <location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="683"/> <location filename="../ProfileInterface.cpp" line="744"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment> <translatorcomment> . !</translatorcomment>
@ -404,7 +404,7 @@ Pictures and Savegames</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="262"/> <location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/> <location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="699"/> <location filename="../ProfileInterface.cpp" line="760"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment> <translatorcomment> . !</translatorcomment>
@ -1073,37 +1073,37 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="186"/> <location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1581"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation> PC에 (&amp;P)</translation> <translation> PC에 (&amp;P)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="187"/> <location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1582"/> <location filename="../ProfileInterface.cpp" line="1649"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation> PC에 (&amp;S)</translation> <translation> PC에 (&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="189"/> <location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1575"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation> (&amp;E)</translation> <translation> (&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="190"/> <location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1576"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation> (&amp;O)</translation> <translation> (&amp;O)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="192"/> <location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1578"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation> (&amp;M)</translation> <translation> (&amp;M)</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="194"/> <location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>JSON (&amp;J)</translation> <translation>JSON (&amp;J)</translation>
</message> </message>
@ -1356,23 +1356,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="523"/> <location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/> <location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="476"/> <location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="477"/> <location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="536"/> <location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="937"/> <location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Import...</source> <source>Import...</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1389,14 +1389,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="533"/> <location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/> <location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="494"/> <location filename="../ProfileInterface.cpp" line="555"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="534"/> <location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/> <location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="590"/> <location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation> (**)</translation> <translation> (**)</translation>
@ -1404,14 +1404,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="551"/> <location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/> <location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1 .</translation> <translation> %1 .</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="559"/> <location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/> <location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1 .</translation> <translation> %1 .</translation>
</message> </message>
@ -1421,58 +1421,58 @@ Press 1 for Default View</source>
<translation> : %2 %1</translation> <translation> : %2 %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="180"/> <location filename="../ProfileInterface.cpp" line="183"/>
<source>Loading...</source> <source>Loading...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt; . &lt;/h4&gt;%1</translation> <translation>&lt;h4&gt; . &lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="490"/> <location filename="../ProfileInterface.cpp" line="551"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="491"/> <location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../UserInterface.cpp" line="587"/> <location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V로 (*.g5e)</translation> <translation>GTA V로 (*.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="492"/> <location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../UserInterface.cpp" line="588"/> <location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation> (SGTA*)</translation> <translation> (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="493"/> <location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../UserInterface.cpp" line="589"/> <location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation> (PGTA*)</translation> <translation> (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../UserInterface.cpp" line="669"/> <location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="537"/> <location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="614"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>%2 %1 .</translation> <translation>%2 %1 .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1481,91 +1481,91 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../UserInterface.cpp" line="625"/> <location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../UserInterface.cpp" line="639"/> <location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation> %1 .</translation> <translation> %1 .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="953"/> <location filename="../ProfileInterface.cpp" line="1016"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation> . PGTA로 .g5e로 .</translation> <translation> . PGTA로 .g5e로 .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>uid %1() . uid ?</translation> <translation>uid %1() . uid ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation> . .</translation> <translation> . .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation> . .</translation> <translation> . .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation> . .</translation> <translation> . .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1251"/> <location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1271"/> <location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1288"/> <location filename="../ProfileInterface.cpp" line="1355"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA </translation> <translation>JPG GTA </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1272"/> <location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1292"/> <location filename="../ProfileInterface.cpp" line="1359"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>JPG </translation> <translation>JPG </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1273"/> <location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1295"/> <location filename="../ProfileInterface.cpp" line="1362"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>GTA </translation> <translation>GTA </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 .%2 &lt;br&gt;&lt;br&gt;JPG .&lt;br&gt;GTA .</translation> <translation>%1 .%2 &lt;br&gt;&lt;br&gt;JPG .&lt;br&gt;GTA .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1391"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1574,45 +1574,45 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> ?</translation> <translation> ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1623,84 +1623,84 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1949"/> <location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2042"/> <location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2157"/> <location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2252"/> <location filename="../ProfileInterface.cpp" line="2319"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation> ...</translation> <translation> ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1950"/> <location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="1968"/> <location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2043"/> <location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2061"/> <location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2158"/> <location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2176"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2253"/> <location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2271"/> <location filename="../ProfileInterface.cpp" line="2338"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>%2 %1 .</translation> <translation>%2 %1 .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment> <translatorcomment>%1() ...</translatorcomment>
@ -1800,45 +1800,45 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1649"/> <location filename="../ProfileInterface.cpp" line="1716"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1614"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1650"/> <location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1680"/> <location filename="../ProfileInterface.cpp" line="1747"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1651"/> <location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1748"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1654"/> <location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1684"/> <location filename="../ProfileInterface.cpp" line="1751"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1657"/> <location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1686"/> <location filename="../ProfileInterface.cpp" line="1753"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1660"/> <location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1689"/> <location filename="../ProfileInterface.cpp" line="1756"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation> (&amp;A)</translation> <translation> (&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1663"/> <location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1692"/> <location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
@ -2043,25 +2043,25 @@ Press 1 for Default View</source>
<translation>JSON .</translation> <translation>JSON .</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation> :</translation> <translation> :</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation> :</translation> <translation> :</translation>
@ -2122,19 +2122,19 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="165"/> <location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="336"/> <location filename="../SnapmaticPicture.cpp" line="344"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON .</translation> <translation>JSON .</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="168"/> <location filename="../JsonEditorDialog.cpp" line="168"/>
<location filename="../SnapmaticPicture.cpp" line="339"/> <location filename="../SnapmaticPicture.cpp" line="347"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON .</translation> <translation>JSON .</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="171"/> <location filename="../JsonEditorDialog.cpp" line="171"/>
<location filename="../SnapmaticPicture.cpp" line="342"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation> JSON </translation> <translation> JSON </translation>
</message> </message>
@ -2144,42 +2144,42 @@ Press 1 for Default View</source>
<translation> - %1</translation> <translation> - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="306"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="318"/> <location filename="../SnapmaticPicture.cpp" line="326"/>
<source>header not exists</source> <source>header not exists</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="321"/> <location filename="../SnapmaticPicture.cpp" line="329"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation> .</translation> <translation> .</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="324"/> <location filename="../SnapmaticPicture.cpp" line="332"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation> . (%1)</translation> <translation> . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="327"/> <location filename="../SnapmaticPicture.cpp" line="335"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON . (%1)</translation> <translation>JSON . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="330"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation> . (%1)</translation> <translation> . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="333"/> <location filename="../SnapmaticPicture.cpp" line="341"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation> . (%1)</translation> <translation> . (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="344"/> <location filename="../SnapmaticPicture.cpp" line="352"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translatorcomment>%2 : JSON이 </translatorcomment> <translatorcomment>%2 : JSON이 </translatorcomment>
@ -2241,62 +2241,62 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1568"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1605"/> <location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1738"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>(&amp;T)</translation> <translation>(&amp;T)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1570"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1611"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1744"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation> (&amp;I)</translation> <translation> (&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1573"/> <location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1612"/> <location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1745"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation> (&amp;I)</translation> <translation> (&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1580"/> <location filename="../ProfileInterface.cpp" line="1647"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1583"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1589"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1591"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1621"/> <location filename="../ProfileInterface.cpp" line="1688"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1594"/> <location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1691"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation> (&amp;A)</translation> <translation> (&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1597"/> <location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation> (&amp;D)</translation> <translation> (&amp;D)</translation>
</message> </message>
@ -2500,42 +2500,42 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="346"/> <location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1609"/> <location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1742"/>
<source>Change &amp;Title...</source> <source>Change &amp;Title...</source>
<translation> (&amp;T)</translation> <translation> (&amp;T)</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="354"/> <location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1608"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1741"/>
<source>Change &amp;Crew...</source> <source>Change &amp;Crew...</source>
<translation>&amp; (&amp;C)</translation> <translation>&amp; (&amp;C)</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="362"/> <location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1606"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1672"/> <location filename="../ProfileInterface.cpp" line="1739"/>
<source>&amp;Qualify as Avatar</source> <source>&amp;Qualify as Avatar</source>
<translation> (&amp;Q)</translation> <translation> (&amp;Q)</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="370"/> <location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1607"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1740"/>
<source>Change &amp;Players...</source> <source>Change &amp;Players...</source>
<translation> (&amp;P)</translation> <translation> (&amp;P)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation> </translation> <translation> </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../SnapmaticWidget.cpp" line="322"/> <location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation> </translation> <translation> </translation>

View File

@ -409,7 +409,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="216"/> <location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="683"/> <location filename="../ProfileInterface.cpp" line="744"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Свой Аватар</translation> <translation>Свой Аватар</translation>
@ -417,7 +417,7 @@ Pictures and Savegames</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="262"/> <location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/> <location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="699"/> <location filename="../ProfileInterface.cpp" line="760"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Своя Картинка</translation> <translation>Своя Картинка</translation>
@ -1076,31 +1076,31 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="186"/> <location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1581"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Экспортировать как &amp;картинку...</translation> <translation>Экспортировать как &amp;картинку...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="187"/> <location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1582"/> <location filename="../ProfileInterface.cpp" line="1649"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Экспортировать как &amp;Snapmatic...</translation> <translation>Экспортировать как &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="190"/> <location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1576"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписать картинку...</translation> <translation>&amp;Перезаписать картинку...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="189"/> <location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1575"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>&amp;Изменить свойства...</translation> <translation>&amp;Изменить свойства...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="192"/> <location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1578"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>Открыть &amp;карту...</translation> <translation>Открыть &amp;карту...</translation>
</message> </message>
@ -1247,7 +1247,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="194"/> <location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>Открыть &amp;редактор JSON...</translation> <translation>Открыть &amp;редактор JSON...</translation>
</message> </message>
@ -1344,17 +1344,17 @@ Press 1 for Default View</source>
<translation>&amp;Закрыть</translation> <translation>&amp;Закрыть</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="180"/> <location filename="../ProfileInterface.cpp" line="183"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Загрузка...</translation> <translation>Загрузка...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Загрузчик Snapmatic</translation> <translation>Загрузчик Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line <translatorcomment>Change wording if the %1 is not a multiline beginning at new line
</translatorcomment> </translatorcomment>
@ -1363,23 +1363,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="523"/> <location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/> <location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="476"/> <location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="477"/> <location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="536"/> <location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="937"/> <location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Import...</source> <source>Import...</source>
<translation>Импортировать...</translation> <translation>Импортировать...</translation>
</message> </message>
@ -1394,13 +1394,13 @@ Press 1 for Default View</source>
<translation>Импортировать</translation> <translation>Импортировать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="492"/> <location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../UserInterface.cpp" line="588"/> <location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Файлы сохранения (SGTA*)</translation> <translation>Файлы сохранения (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="493"/> <location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../UserInterface.cpp" line="589"/> <location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Картинка Snapmatic (PGTA*)</translation> <translation>Картинка Snapmatic (PGTA*)</translation>
@ -1408,19 +1408,19 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="534"/> <location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/> <location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="590"/> <location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Все файлы (**)</translation> <translation>Все файлы (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="537"/> <location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="614"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Импортируются файлы %1 из %2</translation> <translation>Импортируются файлы %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1429,20 +1429,20 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../UserInterface.cpp" line="625"/> <location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Не удалось загрузить картинку Snapmatic</translation> <translation>Не удалось загрузить картинку Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../UserInterface.cpp" line="639"/> <location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Не удалось загрузить файл сохранения</translation> <translation>Не удалось загрузить файл сохранения</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../UserInterface.cpp" line="669"/> <location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Выбранный файл неверен</translation> <translation>Выбранный файл неверен</translation>
@ -1453,145 +1453,145 @@ Press 1 for Default View</source>
<translation>Включенные картинки: %1 из %2</translation> <translation>Включенные картинки: %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="490"/> <location filename="../ProfileInterface.cpp" line="551"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Файлы для импорта (%1)</translation> <translation>Файлы для импорта (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="533"/> <location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/> <location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="494"/> <location filename="../ProfileInterface.cpp" line="555"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Все файлы изображений (%1)</translation> <translation>Все файлы изображений (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="551"/> <location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/> <location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Не удалось открыть %1, файл не может быть открыт</translation> <translation>Не удалось открыть %1, файл не может быть открыт</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="559"/> <location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/> <location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation> <translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Не получилось импортировать %1, не удалось определить формат файла</translation> <translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation> <translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation> <translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation> <translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation> <translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1271"/> <location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1288"/> <location filename="../ProfileInterface.cpp" line="1355"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>Картинки JPG и GTA Snapmatic</translation> <translation>Картинки JPG и GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1272"/> <location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1292"/> <location filename="../ProfileInterface.cpp" line="1359"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Только картинки JPG</translation> <translation>Только картинки JPG</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1273"/> <location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1295"/> <location filename="../ProfileInterface.cpp" line="1362"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Только GTA Snapmatic</translation> <translation>Только GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1391"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Подготовка к экспорту...</translation> <translation>Подготовка к экспорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не выделен ни один Snapmatic или сохранение</translation> <translation>Не выделен ни один Snapmatic или сохранение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Снять выделение</translation> <translation>Снять выделение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation> <translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="953"/> <location filename="../ProfileInterface.cpp" line="1016"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Подготовка данных к импорту...</translation> <translation>Подготовка данных к импорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Пометить как Аватар</translation> <translation>Пометить как Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Не выделена ни одна картинка Snapmatic</translation> <translation>Не выделена ни одна картинка Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1949"/> <location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2042"/> <location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2157"/> <location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2252"/> <location filename="../ProfileInterface.cpp" line="2319"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Пропатчить выделенные...</translation> <translation>Пропатчить выделенные...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1950"/> <location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="1968"/> <location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2043"/> <location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2061"/> <location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2158"/> <location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2176"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2253"/> <location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2271"/> <location filename="../ProfileInterface.cpp" line="2338"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Изменяется файл %1 из %2</translation> <translation>Изменяется файл %1 из %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1601,86 +1601,86 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translatorcomment>Можно использовать слово &quot;приписать&quot;</translatorcomment> <translatorcomment>Можно использовать слово &quot;приписать&quot;</translatorcomment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation> <translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Помечание</translation> <translation>Помечание</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Изменить игроков...</translation> <translation>Изменить игроков...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Измение игроков</translation> <translation>Измение игроков</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Изменить банду...</translation> <translation>Изменить банду...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Введённый идентификатор банды не верен</translation> <translation>Введённый идентификатор банды не верен</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Изменение банды</translation> <translation>Изменение банды</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Изменить заголовок...</translation> <translation>Изменить заголовок...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Введённый заголовок не верен</translation> <translation>Введённый заголовок не верен</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Изменение заголовка</translation> <translation>Изменение заголовка</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Эскпортировать картинки Snapmatic%2&lt;br&gt;&lt;br&gt;Картинки JPG можно открыть любым просмотрщиком&lt;br&gt;Картинки формата GTA Snapmatic можно снова импортировать в игру&lt;br&gt;&lt;br&gt;Экспортировать как:</translation> <translation>%1Эскпортировать картинки Snapmatic%2&lt;br&gt;&lt;br&gt;Картинки JPG можно открыть любым просмотрщиком&lt;br&gt;Картинки формата GTA Snapmatic можно снова импортировать в игру&lt;br&gt;&lt;br&gt;Экспортировать как:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1251"/> <location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Экпортировать выделенное...</translation> <translation>Экпортировать выделенное...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1701,7 +1701,7 @@ Press 1 for Default View</source>
<translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation> <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="491"/> <location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../UserInterface.cpp" line="587"/> <location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
@ -1830,38 +1830,38 @@ Press 1 for Default View</source>
<translation>Не удалось удалить сохранение %1</translation> <translation>Не удалось удалить сохранение %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1649"/> <location filename="../ProfileInterface.cpp" line="1716"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Просмотр</translation> <translation>&amp;Просмотр</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1651"/> <location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1748"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Удалить</translation> <translation>&amp;Удалить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1654"/> <location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1684"/> <location filename="../ProfileInterface.cpp" line="1751"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Выбрать</translation> <translation>&amp;Выбрать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1657"/> <location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1686"/> <location filename="../ProfileInterface.cpp" line="1753"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>Сн&amp;ять выбор</translation> <translation>Сн&amp;ять выбор</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1660"/> <location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1689"/> <location filename="../ProfileInterface.cpp" line="1756"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation> <translation>В&amp;ыбрать все</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1663"/> <location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1692"/> <location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation> <translation>Снять выбо&amp;р со всех</translation>
</message> </message>
@ -1871,9 +1871,9 @@ Press 1 for Default View</source>
<translation>Копировать сохранение</translation> <translation>Копировать сохранение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1614"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1650"/> <location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1680"/> <location filename="../ProfileInterface.cpp" line="1747"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Экспортировать</translation> <translation>&amp;Экспортировать</translation>
</message> </message>
@ -1977,7 +1977,7 @@ Press 1 for Default View</source>
<translation>Meme</translation> <translation>Meme</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Заголовок Snapmatic</translation> <translation>Заголовок Snapmatic</translation>
@ -2083,19 +2083,19 @@ Press 1 for Default View</source>
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation> <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Новый заголовок Snapmatic:</translation> <translation>Новый заголовок Snapmatic:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Банда на Snapmatic</translation> <translation>Банда на Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Новая банда на Snapmatic:</translation> <translation>Новая банда на Snapmatic:</translation>
@ -2109,61 +2109,61 @@ Press 1 for Default View</source>
<translation>ФОТО - %1</translation> <translation>ФОТО - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="306"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation>Открыть файл %1</translation> <translation>Открыть файл %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="318"/> <location filename="../SnapmaticPicture.cpp" line="326"/>
<source>header not exists</source> <source>header not exists</source>
<translation>Отсутствует шапка (header)</translation> <translation>Отсутствует шапка (header)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="321"/> <location filename="../SnapmaticPicture.cpp" line="329"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>Шапка (header) повреждена</translation> <translation>Шапка (header) повреждена</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="324"/> <location filename="../SnapmaticPicture.cpp" line="332"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>Картинки не существует (%1)</translation> <translation>Картинки не существует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="327"/> <location filename="../SnapmaticPicture.cpp" line="335"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON не существует (%1)</translation> <translation>JSON не существует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="330"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>Заголовок отсутствует (%1)</translation> <translation>Заголовок отсутствует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="333"/> <location filename="../SnapmaticPicture.cpp" line="341"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>Описание отсутствует (%1)</translation> <translation>Описание отсутствует (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="344"/> <location filename="../SnapmaticPicture.cpp" line="352"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>Чтение из файла %1 из-за %2</translation> <translation>Чтение из файла %1 из-за %2</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="165"/> <location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="336"/> <location filename="../SnapmaticPicture.cpp" line="344"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON не полный и повреждён</translation> <translation>JSON не полный и повреждён</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="168"/> <location filename="../JsonEditorDialog.cpp" line="168"/>
<location filename="../SnapmaticPicture.cpp" line="339"/> <location filename="../SnapmaticPicture.cpp" line="347"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON частично отсутствует</translation> <translation>JSON частично отсутствует</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="171"/> <location filename="../JsonEditorDialog.cpp" line="171"/>
<location filename="../SnapmaticPicture.cpp" line="342"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON повреждён</translation> <translation>JSON повреждён</translation>
</message> </message>
@ -2233,62 +2233,62 @@ Press 1 for Default View</source>
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation> <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1568"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1605"/> <location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1738"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>&amp;Правка</translation> <translation>&amp;Правка</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1570"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1611"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1744"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>Показывать в &amp;игре</translation> <translation>Показывать в &amp;игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1573"/> <location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1612"/> <location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1745"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>Ск&amp;рыть в игре</translation> <translation>Ск&amp;рыть в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1580"/> <location filename="../ProfileInterface.cpp" line="1647"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Экспорт</translation> <translation>&amp;Экспорт</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1583"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>По&amp;казать</translation> <translation>По&amp;казать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>У&amp;далить</translation> <translation>У&amp;далить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1589"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Выделить</translation> <translation>&amp;Выделить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1591"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1621"/> <location filename="../ProfileInterface.cpp" line="1688"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>Сн&amp;ять выделение</translation> <translation>Сн&amp;ять выделение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1594"/> <location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1691"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation> <translation>В&amp;ыбрать все</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1597"/> <location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation> <translation>Снять выбо&amp;р со всех</translation>
</message> </message>
@ -2412,29 +2412,29 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="370"/> <location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1607"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1740"/>
<source>Change &amp;Players...</source> <source>Change &amp;Players...</source>
<translation>&amp;Изменить игрока...</translation> <translation>&amp;Изменить игрока...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="346"/> <location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1609"/> <location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1742"/>
<source>Change &amp;Title...</source> <source>Change &amp;Title...</source>
<translation>Изменить &amp;Заголовок...</translation> <translation>Изменить &amp;Заголовок...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="354"/> <location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1608"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1741"/>
<source>Change &amp;Crew...</source> <source>Change &amp;Crew...</source>
<translation>Изменить &amp;банду...</translation> <translation>Изменить &amp;банду...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="362"/> <location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1606"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1672"/> <location filename="../ProfileInterface.cpp" line="1739"/>
<source>&amp;Qualify as Avatar</source> <source>&amp;Qualify as Avatar</source>
<translation>&amp;Пометить как Аватар</translation> <translation>&amp;Пометить как Аватар</translation>
</message> </message>
@ -2567,15 +2567,15 @@ Press 1 for Default View</source>
<translation>Пере&amp;загрузить</translation> <translation>Пере&amp;загрузить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Показывать в игре</translation> <translation>Показывать в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../SnapmaticWidget.cpp" line="322"/> <location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Скрыть в игре</translation> <translation>Скрыть в игре</translation>

View File

@ -398,7 +398,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="216"/> <location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="683"/> <location filename="../ProfileInterface.cpp" line="744"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацький Аватар</translation> <translation>Користувацький Аватар</translation>
@ -406,7 +406,7 @@ Pictures and Savegames</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="262"/> <location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/> <location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="699"/> <location filename="../ProfileInterface.cpp" line="760"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацьке Зображення</translation> <translation>Користувацьке Зображення</translation>
@ -1063,37 +1063,37 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="186"/> <location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1581"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Експортувати як &amp;зображення...</translation> <translation>Експортувати як &amp;зображення...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="187"/> <location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1582"/> <location filename="../ProfileInterface.cpp" line="1649"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Експортувати як &amp;Snapmatic...</translation> <translation>Експортувати як &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="189"/> <location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1575"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>&amp;Змінити властивості...</translation> <translation>&amp;Змінити властивості...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="190"/> <location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1576"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписати зображення...</translation> <translation>&amp;Перезаписати зображення...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="192"/> <location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1578"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>Відкрити &amp;карту...</translation> <translation>Відкрити &amp;карту...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="194"/> <location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation>Відкрити редактор &amp;JSON...</translation> <translation>Відкрити редактор &amp;JSON...</translation>
</message> </message>
@ -1346,23 +1346,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="523"/> <location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/> <location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="476"/> <location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="477"/> <location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="536"/> <location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="937"/> <location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Import...</source> <source>Import...</source>
<translation>Імпортування...</translation> <translation>Імпортування...</translation>
</message> </message>
@ -1379,14 +1379,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="533"/> <location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/> <location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="494"/> <location filename="../ProfileInterface.cpp" line="555"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Файли зображень (%1)</translation> <translation>Файли зображень (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="534"/> <location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/> <location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="590"/> <location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Усі файли (**)</translation> <translation>Усі файли (**)</translation>
@ -1394,14 +1394,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="551"/> <location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/> <location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation> <translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="559"/> <location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/> <location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation> <translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
</message> </message>
@ -1411,58 +1411,58 @@ Press 1 for Default View</source>
<translation>Увімкнено фотографії:%1 з%2</translation> <translation>Увімкнено фотографії:%1 з%2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="180"/> <location filename="../ProfileInterface.cpp" line="183"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Завантаження...</translation> <translation>Завантаження...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation> <translation>Snapmatic Loader</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Наступні Snapmatic зображення були відновлені&lt;/h4&gt;%1</translation> <translation>&lt;h4&gt;Наступні Snapmatic зображення були відновлені&lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="490"/> <location filename="../ProfileInterface.cpp" line="551"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation>Імпортуються файли (%1)</translation> <translation>Імпортуються файли (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="491"/> <location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../UserInterface.cpp" line="587"/> <location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="492"/> <location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../UserInterface.cpp" line="588"/> <location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation>Файли збереження гри (SGTA*)</translation> <translation>Файли збереження гри (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="493"/> <location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../UserInterface.cpp" line="589"/> <location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic зображення (PGTA*)</translation> <translation>Snapmatic зображення (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../UserInterface.cpp" line="669"/> <location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Вибрані недійсні файли</translation> <translation>Вибрані недійсні файли</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="537"/> <location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="614"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation>Імпортується файл %1 з %2 файлів</translation> <translation>Імпортується файл %1 з %2 файлів</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1471,81 +1471,81 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../UserInterface.cpp" line="625"/> <location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation>Не вдалося прочитати Snapmatic картинку</translation> <translation>Не вдалося прочитати Snapmatic картинку</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../UserInterface.cpp" line="639"/> <location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Не вдалося прочитати файл збереження гри</translation> <translation>Не вдалося прочитати файл збереження гри</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation> <translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation> <translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation> <translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation> <translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation> <translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1251"/> <location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Експорт обраних...</translation> <translation>Експорт обраних...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1271"/> <location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1288"/> <location filename="../ProfileInterface.cpp" line="1355"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG картинки і GTA Snapmatic</translation> <translation>JPG картинки і GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1272"/> <location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1292"/> <location filename="../ProfileInterface.cpp" line="1359"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation>Тільки JPG картинки</translation> <translation>Тільки JPG картинки</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1273"/> <location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1295"/> <location filename="../ProfileInterface.cpp" line="1362"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Тільки GTA Snapmatic</translation> <translation>Тільки GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 Експортувати Snapmatic фотографії %2 &lt;br&gt;&lt;br&gt; Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень&lt;br&gt;GTA Snapmatic дає змогу імпортувати зображення в гру&lt;br&gt;&lt;br&gt;Експортувати як:</translation> <translation>%1 Експортувати Snapmatic фотографії %2 &lt;br&gt;&lt;br&gt; Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень&lt;br&gt;GTA Snapmatic дає змогу імпортувати зображення в гру&lt;br&gt;&lt;br&gt;Експортувати як:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1391"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Ініціалізація експорту...</translation> <translation>Ініціалізація експорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1554,45 +1554,45 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation> <translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Видалити вибрані</translation> <translation>Видалити вибрані</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation> <translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation> <translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation>Не вибрано жодного Snapmatic зображення</translation> <translation>Не вибрано жодного Snapmatic зображення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1602,91 +1602,91 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="953"/> <location filename="../ProfileInterface.cpp" line="1016"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>Підготувати контент для імпорту ...</translation> <translation>Підготувати контент для імпорту ...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation> <translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation>Позначити як Аватар</translation> <translation>Позначити як Аватар</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1949"/> <location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2042"/> <location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2157"/> <location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2252"/> <location filename="../ProfileInterface.cpp" line="2319"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>Вибір патчу...</translation> <translation>Вибір патчу...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1950"/> <location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="1968"/> <location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2043"/> <location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2061"/> <location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2158"/> <location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2176"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2253"/> <location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2271"/> <location filename="../ProfileInterface.cpp" line="2338"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation>Патч файлу %1 з %2 файлів</translation> <translation>Патч файлу %1 з %2 файлів</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Якість</translation> <translation>Якість</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>Зміна гравців...</translation> <translation>Зміна гравців...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Змінити гравців</translation> <translation>Змінити гравців</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>Зміна банди...</translation> <translation>Зміна банди...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation> <translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Змінити банду</translation> <translation>Змінити банду</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>Зміна назви...</translation> <translation>Зміна назви...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation> <translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation>Змінити назву</translation> <translation>Змінити назву</translation>
@ -1785,45 +1785,45 @@ Press 1 for Default View</source>
<translation>Видалити</translation> <translation>Видалити</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1649"/> <location filename="../ProfileInterface.cpp" line="1716"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Перегляд</translation> <translation>&amp;Перегляд</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1614"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1650"/> <location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1680"/> <location filename="../ProfileInterface.cpp" line="1747"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Експорт</translation> <translation>&amp;Експорт</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1651"/> <location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1748"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Видалення</translation> <translation>&amp;Видалення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1654"/> <location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1684"/> <location filename="../ProfileInterface.cpp" line="1751"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Виділення</translation> <translation>&amp;Виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1657"/> <location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1686"/> <location filename="../ProfileInterface.cpp" line="1753"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation> <translation>&amp;Зняти виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1660"/> <location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1689"/> <location filename="../ProfileInterface.cpp" line="1756"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation> <translation>Вибрати &amp;усі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1663"/> <location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1692"/> <location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation> <translation>&amp;Зняти виділення усіх</translation>
</message> </message>
@ -2028,25 +2028,25 @@ Press 1 for Default View</source>
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation> <translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation>Snapmatic банда</translation> <translation>Snapmatic банда</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>Нова Snapmatic банда:</translation> <translation>Нова Snapmatic банда:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation>Snapmatic назва</translation> <translation>Snapmatic назва</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>Новий Snapmatic заголовок:</translation> <translation>Новий Snapmatic заголовок:</translation>
@ -2103,19 +2103,19 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="165"/> <location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="336"/> <location filename="../SnapmaticPicture.cpp" line="344"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON неповний та неправильний</translation> <translation>JSON неповний та неправильний</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="168"/> <location filename="../JsonEditorDialog.cpp" line="168"/>
<location filename="../SnapmaticPicture.cpp" line="339"/> <location filename="../SnapmaticPicture.cpp" line="347"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON неповний</translation> <translation>JSON неповний</translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="171"/> <location filename="../JsonEditorDialog.cpp" line="171"/>
<location filename="../SnapmaticPicture.cpp" line="342"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON неправильний</translation> <translation>JSON неправильний</translation>
</message> </message>
@ -2125,42 +2125,42 @@ Press 1 for Default View</source>
<translation>ФОТО - %1</translation> <translation>ФОТО - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="306"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation>відкрити файл%1</translation> <translation>відкрити файл%1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="318"/> <location filename="../SnapmaticPicture.cpp" line="326"/>
<source>header not exists</source> <source>header not exists</source>
<translation>заголовок не існує</translation> <translation>заголовок не існує</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="321"/> <location filename="../SnapmaticPicture.cpp" line="329"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation>заголовок неправильний</translation> <translation>заголовок неправильний</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="324"/> <location filename="../SnapmaticPicture.cpp" line="332"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation>зображення не існує (%1)</translation> <translation>зображення не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="327"/> <location filename="../SnapmaticPicture.cpp" line="335"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON не існує (%1)</translation> <translation>JSON не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="330"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation>заголовок не існує (%1)</translation> <translation>заголовок не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="333"/> <location filename="../SnapmaticPicture.cpp" line="341"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation>опис не існує (%1)</translation> <translation>опис не існує (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="344"/> <location filename="../SnapmaticPicture.cpp" line="352"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation>читання файлу %1 тому що %2</translation> <translation>читання файлу %1 тому що %2</translation>
@ -2221,62 +2221,62 @@ Press 1 for Default View</source>
<translation>Видалити</translation> <translation>Видалити</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1568"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1605"/> <location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1738"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Редагува&amp;ти</translation> <translation>Редагува&amp;ти</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1570"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1611"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1744"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>Показати &amp;у грі</translation> <translation>Показати &amp;у грі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1573"/> <location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1612"/> <location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1745"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>Сховати &amp;у грі</translation> <translation>Сховати &amp;у грі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1580"/> <location filename="../ProfileInterface.cpp" line="1647"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Експортувати</translation> <translation>&amp;Експортувати</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1583"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Переглянути</translation> <translation>&amp;Переглянути</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Видалити</translation> <translation>&amp;Видалити</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1589"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Виділення</translation> <translation>&amp;Виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1591"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1621"/> <location filename="../ProfileInterface.cpp" line="1688"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation> <translation>&amp;Зняти виділення</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1594"/> <location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1691"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation> <translation>Вибрати &amp;усі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1597"/> <location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation> <translation>&amp;Зняти виділення усіх</translation>
</message> </message>
@ -2480,42 +2480,42 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="346"/> <location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1609"/> <location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1742"/>
<source>Change &amp;Title...</source> <source>Change &amp;Title...</source>
<translation>Змінити &amp;заголовок...</translation> <translation>Змінити &amp;заголовок...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="354"/> <location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1608"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1741"/>
<source>Change &amp;Crew...</source> <source>Change &amp;Crew...</source>
<translation>Змінити &amp;банду...</translation> <translation>Змінити &amp;банду...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="362"/> <location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1606"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1672"/> <location filename="../ProfileInterface.cpp" line="1739"/>
<source>&amp;Qualify as Avatar</source> <source>&amp;Qualify as Avatar</source>
<translation>Позначити як &amp;аватар</translation> <translation>Позначити як &amp;аватар</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="370"/> <location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1607"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1740"/>
<source>Change &amp;Players...</source> <source>Change &amp;Players...</source>
<translation>Змінити &amp;гравців...</translation> <translation>Змінити &amp;гравців...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation>Показати у грі</translation> <translation>Показати у грі</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../SnapmaticWidget.cpp" line="322"/> <location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation>Сховати у грі</translation> <translation>Сховати у грі</translation>

View File

@ -394,7 +394,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="216"/> <location filename="../ImportDialog.cpp" line="216"/>
<location filename="../ProfileInterface.cpp" line="683"/> <location filename="../ProfileInterface.cpp" line="744"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation></translation> <translation></translation>
@ -402,7 +402,7 @@ Pictures and Savegames</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="262"/> <location filename="../ImportDialog.cpp" line="262"/>
<location filename="../ImportDialog.cpp" line="748"/> <location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ProfileInterface.cpp" line="699"/> <location filename="../ProfileInterface.cpp" line="760"/>
<source>Custom Picture</source> <source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation></translation> <translation></translation>
@ -1057,37 +1057,37 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="186"/> <location filename="../PictureDialog.cpp" line="186"/>
<location filename="../ProfileInterface.cpp" line="1581"/> <location filename="../ProfileInterface.cpp" line="1648"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>(&amp;P)...</translation> <translation>(&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="187"/> <location filename="../PictureDialog.cpp" line="187"/>
<location filename="../ProfileInterface.cpp" line="1582"/> <location filename="../ProfileInterface.cpp" line="1649"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation> Snapmatic(&amp;S)...</translation> <translation> Snapmatic(&amp;S)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="189"/> <location filename="../PictureDialog.cpp" line="189"/>
<location filename="../ProfileInterface.cpp" line="1575"/> <location filename="../ProfileInterface.cpp" line="1642"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>(&amp;E) ...</translation> <translation>(&amp;E) ...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="190"/> <location filename="../PictureDialog.cpp" line="190"/>
<location filename="../ProfileInterface.cpp" line="1576"/> <location filename="../ProfileInterface.cpp" line="1643"/>
<source>&amp;Overwrite Image...</source> <source>&amp;Overwrite Image...</source>
<translation>(&amp;O)...</translation> <translation>(&amp;O)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="192"/> <location filename="../PictureDialog.cpp" line="192"/>
<location filename="../ProfileInterface.cpp" line="1578"/> <location filename="../ProfileInterface.cpp" line="1645"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>(&amp;M)...</translation> <translation>(&amp;M)...</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="194"/> <location filename="../PictureDialog.cpp" line="194"/>
<location filename="../ProfileInterface.cpp" line="1579"/> <location filename="../ProfileInterface.cpp" line="1646"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation> JSON (&amp;J)...</translation> <translation> JSON (&amp;J)...</translation>
</message> </message>
@ -1340,23 +1340,23 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="523"/> <location filename="../ImportDialog.cpp" line="523"/>
<location filename="../ImportDialog.cpp" line="833"/> <location filename="../ImportDialog.cpp" line="833"/>
<location filename="../ProfileInterface.cpp" line="476"/> <location filename="../ProfileInterface.cpp" line="537"/>
<location filename="../ProfileInterface.cpp" line="477"/> <location filename="../ProfileInterface.cpp" line="538"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="536"/> <location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../ProfileInterface.cpp" line="937"/> <location filename="../ProfileInterface.cpp" line="1000"/>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Import...</source> <source>Import...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
@ -1373,14 +1373,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="533"/> <location filename="../ImportDialog.cpp" line="533"/>
<location filename="../ImportDialog.cpp" line="843"/> <location filename="../ImportDialog.cpp" line="843"/>
<location filename="../ProfileInterface.cpp" line="494"/> <location filename="../ProfileInterface.cpp" line="555"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="534"/> <location filename="../ImportDialog.cpp" line="534"/>
<location filename="../ImportDialog.cpp" line="844"/> <location filename="../ImportDialog.cpp" line="844"/>
<location filename="../ProfileInterface.cpp" line="495"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="590"/> <location filename="../UserInterface.cpp" line="590"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation> (**)</translation> <translation> (**)</translation>
@ -1388,14 +1388,14 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../ImportDialog.cpp" line="551"/> <location filename="../ImportDialog.cpp" line="551"/>
<location filename="../ImportDialog.cpp" line="861"/> <location filename="../ImportDialog.cpp" line="861"/>
<location filename="../ProfileInterface.cpp" line="742"/> <location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source> <source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="559"/> <location filename="../ImportDialog.cpp" line="559"/>
<location filename="../ImportDialog.cpp" line="869"/> <location filename="../ImportDialog.cpp" line="869"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="813"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source> <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
@ -1405,184 +1405,184 @@ Press 1 for Default View</source>
<translation> %1 %2</translation> <translation> %1 %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="180"/> <location filename="../ProfileInterface.cpp" line="183"/>
<source>Loading...</source> <source>Loading...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>Snapmatic Loader</source> <source>Snapmatic Loader</source>
<translation>Snapmatic </translation> <translation>Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="403"/> <location filename="../ProfileInterface.cpp" line="464"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source> <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt; Snapmatic &lt;/h4&gt;%1</translation> <translation>&lt;h4&gt; Snapmatic &lt;/h4&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="490"/> <location filename="../ProfileInterface.cpp" line="551"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="491"/> <location filename="../ProfileInterface.cpp" line="552"/>
<location filename="../UserInterface.cpp" line="587"/> <location filename="../UserInterface.cpp" line="587"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="492"/> <location filename="../ProfileInterface.cpp" line="553"/>
<location filename="../UserInterface.cpp" line="588"/> <location filename="../UserInterface.cpp" line="588"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation> (SGTA*)</translation> <translation> (SGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="493"/> <location filename="../ProfileInterface.cpp" line="554"/>
<location filename="../UserInterface.cpp" line="589"/> <location filename="../UserInterface.cpp" line="589"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic (PGTA*)</translation> <translation>Snapmatic (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="576"/>
<location filename="../ProfileInterface.cpp" line="904"/> <location filename="../ProfileInterface.cpp" line="967"/>
<location filename="../UserInterface.cpp" line="669"/> <location filename="../UserInterface.cpp" line="669"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="537"/> <location filename="../ProfileInterface.cpp" line="598"/>
<location filename="../ProfileInterface.cpp" line="553"/> <location filename="../ProfileInterface.cpp" line="614"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation> %1 %2 </translation> <translation> %1 %2 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="566"/> <location filename="../ProfileInterface.cpp" line="627"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="608"/> <location filename="../ProfileInterface.cpp" line="669"/>
<location filename="../UserInterface.cpp" line="625"/> <location filename="../UserInterface.cpp" line="625"/>
<source>Failed to read Snapmatic picture</source> <source>Failed to read Snapmatic picture</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="643"/> <location filename="../ProfileInterface.cpp" line="704"/>
<location filename="../UserInterface.cpp" line="639"/> <location filename="../UserInterface.cpp" line="639"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="898"/> <location filename="../ProfileInterface.cpp" line="961"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source> <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1058"/> <location filename="../ProfileInterface.cpp" line="1122"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source> <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation> Snapmatic PGTA .g5e</translation> <translation> Snapmatic PGTA .g5e</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1150"/> <location filename="../ProfileInterface.cpp" line="1215"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source> <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1182"/> <location filename="../ProfileInterface.cpp" line="1249"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source> <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1188"/> <location filename="../ProfileInterface.cpp" line="1255"/>
<source>Failed to import the Savegame, no Savegame slot is left</source> <source>Failed to import the Savegame, no Savegame slot is left</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1251"/> <location filename="../ProfileInterface.cpp" line="1318"/>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1323"/> <location filename="../ProfileInterface.cpp" line="1390"/>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1271"/> <location filename="../ProfileInterface.cpp" line="1338"/>
<location filename="../ProfileInterface.cpp" line="1288"/> <location filename="../ProfileInterface.cpp" line="1355"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA Snapmatic</translation> <translation>JPG GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1272"/> <location filename="../ProfileInterface.cpp" line="1339"/>
<location filename="../ProfileInterface.cpp" line="1292"/> <location filename="../ProfileInterface.cpp" line="1359"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation> JPG </translation> <translation> JPG </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1273"/> <location filename="../ProfileInterface.cpp" line="1340"/>
<location filename="../ProfileInterface.cpp" line="1295"/> <location filename="../ProfileInterface.cpp" line="1362"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation> GTA Snapmatic</translation> <translation> GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1286"/> <location filename="../ProfileInterface.cpp" line="1353"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source> <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 Snapmatic %2&lt;br&gt;&lt;br&gt;JPG 使&lt;br&gt;GTA Snapmatic &lt;br&gt;&lt;br&gt;:</translation> <translation>%1 Snapmatic %2&lt;br&gt;&lt;br&gt;JPG 使&lt;br&gt;GTA Snapmatic &lt;br&gt;&lt;br&gt;:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1324"/> <location filename="../ProfileInterface.cpp" line="1391"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1356"/> <location filename="../ProfileInterface.cpp" line="1423"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation>%1 </translation> <translation>%1 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1373"/> <location filename="../ProfileInterface.cpp" line="1440"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>No Snapmatic pictures or Savegames files are selected</source> <source>No Snapmatic pictures or Savegames files are selected</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<location filename="../ProfileInterface.cpp" line="1408"/> <location filename="../ProfileInterface.cpp" line="1475"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1380"/> <location filename="../ProfileInterface.cpp" line="1447"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source> <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> Snapmatic /?</translation> <translation> Snapmatic /?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1403"/> <location filename="../ProfileInterface.cpp" line="1470"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> Snapmatic /</translation> <translation> Snapmatic /</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<source>No Snapmatic pictures are selected</source> <source>No Snapmatic pictures are selected</source>
<translation> Snapmatic </translation> <translation> Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>%1 failed with... <source>%1 failed with...
%2</source> %2</source>
@ -1592,91 +1592,91 @@ Press 1 for Default View</source>
%2</translation> %2</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="953"/> <location filename="../ProfileInterface.cpp" line="1016"/>
<source>Prepare Content for Import...</source> <source>Prepare Content for Import...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1064"/> <location filename="../ProfileInterface.cpp" line="1128"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source> <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation> uid %1 Snapmatic uid ?</translation> <translation> uid %1 Snapmatic uid ?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1938"/> <location filename="../ProfileInterface.cpp" line="2005"/>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify as Avatar</source> <source>Qualify as Avatar</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1949"/> <location filename="../ProfileInterface.cpp" line="2016"/>
<location filename="../ProfileInterface.cpp" line="2042"/> <location filename="../ProfileInterface.cpp" line="2109"/>
<location filename="../ProfileInterface.cpp" line="2157"/> <location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2252"/> <location filename="../ProfileInterface.cpp" line="2319"/>
<source>Patch selected...</source> <source>Patch selected...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1950"/> <location filename="../ProfileInterface.cpp" line="2017"/>
<location filename="../ProfileInterface.cpp" line="1968"/> <location filename="../ProfileInterface.cpp" line="2035"/>
<location filename="../ProfileInterface.cpp" line="2043"/> <location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2061"/> <location filename="../ProfileInterface.cpp" line="2128"/>
<location filename="../ProfileInterface.cpp" line="2158"/> <location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2176"/> <location filename="../ProfileInterface.cpp" line="2243"/>
<location filename="../ProfileInterface.cpp" line="2253"/> <location filename="../ProfileInterface.cpp" line="2320"/>
<location filename="../ProfileInterface.cpp" line="2271"/> <location filename="../ProfileInterface.cpp" line="2338"/>
<source>Patch file %1 of %2 files</source> <source>Patch file %1 of %2 files</source>
<translation> %1 %2 </translation> <translation> %1 %2 </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1998"/> <location filename="../ProfileInterface.cpp" line="2065"/>
<source>Qualify</source> <source>Qualify</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2017"/> <location filename="../ProfileInterface.cpp" line="2084"/>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players...</source> <source>Change Players...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2087"/> <location filename="../ProfileInterface.cpp" line="2154"/>
<source>Change Players</source> <source>Change Players</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2106"/> <location filename="../ProfileInterface.cpp" line="2173"/>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew...</source> <source>Change Crew...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2136"/> <location filename="../ProfileInterface.cpp" line="2203"/>
<source>Failed to enter a valid Snapmatic Crew ID</source> <source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> ID</translation> <translation> ID</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2202"/> <location filename="../ProfileInterface.cpp" line="2269"/>
<source>Change Crew</source> <source>Change Crew</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2221"/> <location filename="../ProfileInterface.cpp" line="2288"/>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title...</source> <source>Change Title...</source>
<translation>...</translation> <translation>...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2235"/> <location filename="../ProfileInterface.cpp" line="2302"/>
<source>Failed to enter a valid Snapmatic title</source> <source>Failed to enter a valid Snapmatic title</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2294"/> <location filename="../ProfileInterface.cpp" line="2361"/>
<source>Change Title</source> <source>Change Title</source>
<comment>%1 failed with...</comment> <comment>%1 failed with...</comment>
<translation></translation> <translation></translation>
@ -1767,45 +1767,45 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1649"/> <location filename="../ProfileInterface.cpp" line="1716"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1614"/> <location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../ProfileInterface.cpp" line="1650"/> <location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1680"/> <location filename="../ProfileInterface.cpp" line="1747"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1615"/> <location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../ProfileInterface.cpp" line="1651"/> <location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1681"/> <location filename="../ProfileInterface.cpp" line="1748"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1654"/> <location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1684"/> <location filename="../ProfileInterface.cpp" line="1751"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1657"/> <location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1686"/> <location filename="../ProfileInterface.cpp" line="1753"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1660"/> <location filename="../ProfileInterface.cpp" line="1727"/>
<location filename="../ProfileInterface.cpp" line="1689"/> <location filename="../ProfileInterface.cpp" line="1756"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>(&amp;A)</translation> <translation>(&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1663"/> <location filename="../ProfileInterface.cpp" line="1730"/>
<location filename="../ProfileInterface.cpp" line="1692"/> <location filename="../ProfileInterface.cpp" line="1759"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
@ -2010,25 +2010,25 @@ Press 1 for Default View</source>
<translation>JSON Snapmatic </translation> <translation>JSON Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>Snapmatic Crew</source> <source>Snapmatic Crew</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2130"/> <location filename="../ProfileInterface.cpp" line="2197"/>
<location filename="../SnapmaticEditor.cpp" line="403"/> <location filename="../SnapmaticEditor.cpp" line="403"/>
<source>New Snapmatic crew:</source> <source>New Snapmatic crew:</source>
<translation>:</translation> <translation>:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>Snapmatic Title</source> <source>Snapmatic Title</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="2232"/> <location filename="../ProfileInterface.cpp" line="2299"/>
<location filename="../SnapmaticEditor.cpp" line="379"/> <location filename="../SnapmaticEditor.cpp" line="379"/>
<source>New Snapmatic title:</source> <source>New Snapmatic title:</source>
<translation>:</translation> <translation>:</translation>
@ -2085,19 +2085,19 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="165"/> <location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="336"/> <location filename="../SnapmaticPicture.cpp" line="344"/>
<source>JSON is incomplete and malformed</source> <source>JSON is incomplete and malformed</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="168"/> <location filename="../JsonEditorDialog.cpp" line="168"/>
<location filename="../SnapmaticPicture.cpp" line="339"/> <location filename="../SnapmaticPicture.cpp" line="347"/>
<source>JSON is incomplete</source> <source>JSON is incomplete</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
<message> <message>
<location filename="../JsonEditorDialog.cpp" line="171"/> <location filename="../JsonEditorDialog.cpp" line="171"/>
<location filename="../SnapmaticPicture.cpp" line="342"/> <location filename="../SnapmaticPicture.cpp" line="350"/>
<source>JSON is malformed</source> <source>JSON is malformed</source>
<translation>JSON </translation> <translation>JSON </translation>
</message> </message>
@ -2107,42 +2107,42 @@ Press 1 for Default View</source>
<translation> - %1</translation> <translation> - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="306"/> <location filename="../SnapmaticPicture.cpp" line="314"/>
<source>open file %1</source> <source>open file %1</source>
<translation> - %1</translation> <translation> - %1</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="318"/> <location filename="../SnapmaticPicture.cpp" line="326"/>
<source>header not exists</source> <source>header not exists</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="321"/> <location filename="../SnapmaticPicture.cpp" line="329"/>
<source>header is malformed</source> <source>header is malformed</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="324"/> <location filename="../SnapmaticPicture.cpp" line="332"/>
<source>picture not exists (%1)</source> <source>picture not exists (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="327"/> <location filename="../SnapmaticPicture.cpp" line="335"/>
<source>JSON not exists (%1)</source> <source>JSON not exists (%1)</source>
<translation>JSON (%1)</translation> <translation>JSON (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="330"/> <location filename="../SnapmaticPicture.cpp" line="338"/>
<source>title not exists (%1)</source> <source>title not exists (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="333"/> <location filename="../SnapmaticPicture.cpp" line="341"/>
<source>description not exists (%1)</source> <source>description not exists (%1)</source>
<translation> (%1)</translation> <translation> (%1)</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="344"/> <location filename="../SnapmaticPicture.cpp" line="352"/>
<source>reading file %1 because of %2</source> <source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment> <comment>Example for %2: JSON is malformed error</comment>
<translation> %1 %2</translation> <translation> %1 %2</translation>
@ -2203,62 +2203,62 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1568"/> <location filename="../ProfileInterface.cpp" line="1635"/>
<location filename="../ProfileInterface.cpp" line="1605"/> <location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="1671"/> <location filename="../ProfileInterface.cpp" line="1738"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1570"/> <location filename="../ProfileInterface.cpp" line="1637"/>
<location filename="../ProfileInterface.cpp" line="1611"/> <location filename="../ProfileInterface.cpp" line="1678"/>
<location filename="../ProfileInterface.cpp" line="1677"/> <location filename="../ProfileInterface.cpp" line="1744"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation>(&amp;I)</translation> <translation>(&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1573"/> <location filename="../ProfileInterface.cpp" line="1640"/>
<location filename="../ProfileInterface.cpp" line="1612"/> <location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1678"/> <location filename="../ProfileInterface.cpp" line="1745"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>(&amp;I)</translation> <translation>(&amp;I)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1580"/> <location filename="../ProfileInterface.cpp" line="1647"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>(&amp;E)</translation> <translation>(&amp;E)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1583"/> <location filename="../ProfileInterface.cpp" line="1650"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>(&amp;V)</translation> <translation>(&amp;V)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1586"/> <location filename="../ProfileInterface.cpp" line="1653"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>(&amp;R)</translation> <translation>(&amp;R)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1589"/> <location filename="../ProfileInterface.cpp" line="1656"/>
<location filename="../ProfileInterface.cpp" line="1618"/> <location filename="../ProfileInterface.cpp" line="1685"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>(&amp;S)</translation> <translation>(&amp;S)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1591"/> <location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1621"/> <location filename="../ProfileInterface.cpp" line="1688"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1594"/> <location filename="../ProfileInterface.cpp" line="1661"/>
<location filename="../ProfileInterface.cpp" line="1624"/> <location filename="../ProfileInterface.cpp" line="1691"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation>(&amp;A)</translation> <translation>(&amp;A)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1597"/> <location filename="../ProfileInterface.cpp" line="1664"/>
<location filename="../ProfileInterface.cpp" line="1627"/> <location filename="../ProfileInterface.cpp" line="1694"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>(&amp;D)</translation> <translation>(&amp;D)</translation>
</message> </message>
@ -2461,42 +2461,42 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="346"/> <location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1609"/> <location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1675"/> <location filename="../ProfileInterface.cpp" line="1742"/>
<source>Change &amp;Title...</source> <source>Change &amp;Title...</source>
<translation>(&amp;T)...</translation> <translation>(&amp;T)...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="354"/> <location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1608"/> <location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1674"/> <location filename="../ProfileInterface.cpp" line="1741"/>
<source>Change &amp;Crew...</source> <source>Change &amp;Crew...</source>
<translation>(&amp;C)...</translation> <translation>(&amp;C)...</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="362"/> <location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1606"/> <location filename="../ProfileInterface.cpp" line="1673"/>
<location filename="../ProfileInterface.cpp" line="1672"/> <location filename="../ProfileInterface.cpp" line="1739"/>
<source>&amp;Qualify as Avatar</source> <source>&amp;Qualify as Avatar</source>
<translation>(&amp;Q)</translation> <translation>(&amp;Q)</translation>
</message> </message>
<message> <message>
<location filename="../UserInterface.ui" line="370"/> <location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1607"/> <location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1673"/> <location filename="../ProfileInterface.cpp" line="1740"/>
<source>Change &amp;Players...</source> <source>Change &amp;Players...</source>
<translation>(&amp;P)...</translation> <translation>(&amp;P)...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1505"/> <location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../ProfileInterface.cpp" line="1516"/> <location filename="../ProfileInterface.cpp" line="1583"/>
<location filename="../SnapmaticWidget.cpp" line="328"/> <location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source> <source>Show In-game</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1535"/> <location filename="../ProfileInterface.cpp" line="1602"/>
<location filename="../ProfileInterface.cpp" line="1546"/> <location filename="../ProfileInterface.cpp" line="1613"/>
<location filename="../SnapmaticWidget.cpp" line="322"/> <location filename="../SnapmaticWidget.cpp" line="322"/>
<source>Hide In-game</source> <source>Hide In-game</source>
<translation></translation> <translation></translation>