repair broken Snapmatics and fix Snapmatic format issue

This commit is contained in:
Syping 2017-11-22 20:23:36 +01:00
parent f9eee75757
commit eeb0c01a5f
19 changed files with 487 additions and 344 deletions

View File

@ -32,14 +32,14 @@ before_script:
script: script:
- cd qt5 - cd qt5
- qmake -qt=5 GTA5SYNC_PREFIX=/usr QMAKE_CXXFLAGS+=-std=c++11 DEFINES+=GTA5SYNC_BUILDTYPE_DEV "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"$PACKAGE_VERSION-dev4\\\\\\\"" DEFINES+=GTA5SYNC_QCONF ../../gta5view.pro - qmake -qt=5 GTA5SYNC_PREFIX=/usr QMAKE_CXXFLAGS+=-std=c++11 DEFINES+=GTA5SYNC_BUILDTYPE_DEV "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"$PACKAGE_VERSION-dev5\\\\\\\"" DEFINES+=GTA5SYNC_QCONF ../../gta5view.pro
- make -j 4 - make -j 4
- sudo checkinstall -D --default --nodoc --install=no --pkgname=gta5view-qt5 --pkgversion=$PACKAGE_VERSION --pkgrelease=dev4 --pkggroup=utility --maintainer="Syping on Travis \<travisci@syping.de\>" --requires=libqt5core5a,libqt5gui5,libqt5network5,libqt5widgets5,qttranslations5-l10n --conflicts=gta5view,gta5view-qt4 --replaces=gta5view,gta5view-qt4 --pakdir=../../package - sudo checkinstall -D --default --nodoc --install=no --pkgname=gta5view-qt5 --pkgversion=$PACKAGE_VERSION --pkgrelease=dev5 --pkggroup=utility --maintainer="Syping on Travis \<travisci@syping.de\>" --requires=libqt5core5a,libqt5gui5,libqt5network5,libqt5widgets5,qttranslations5-l10n --conflicts=gta5view,gta5view-qt4 --replaces=gta5view,gta5view-qt4 --pakdir=../../package
- cd .. - cd ..
- cd qt4 - cd qt4
- qmake -qt=4 GTA5SYNC_PREFIX=/usr QMAKE_CXXFLAGS+=-std=c++11 DEFINES+=GTA5SYNC_BUILDTYPE_DEV "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"$PACKAGE_VERSION-dev4\\\\\\\"" DEFINES+=GTA5SYNC_QCONF ../../gta5view.pro - qmake -qt=4 GTA5SYNC_PREFIX=/usr QMAKE_CXXFLAGS+=-std=c++11 DEFINES+=GTA5SYNC_BUILDTYPE_DEV "DEFINES+=GTA5SYNC_APPVER=\\\\\\\"$PACKAGE_VERSION-dev5\\\\\\\"" DEFINES+=GTA5SYNC_QCONF ../../gta5view.pro
- make -j 4 - make -j 4
- sudo checkinstall -D --default --nodoc --install=no --pkgname=gta5view-qt4 --pkgversion=$PACKAGE_VERSION --pkgrelease=dev4 --pkggroup=utility --maintainer="Syping on Travis \<travisci@syping.de\>" --requires=libqtcore4,libqtgui4,libqt4-network,qtcore4-l10n --conflicts=gta5view,gta5view-qt5 --replaces=gta5view,gta5view-qt5 --pakdir=../../package - sudo checkinstall -D --default --nodoc --install=no --pkgname=gta5view-qt4 --pkgversion=$PACKAGE_VERSION --pkgrelease=dev5 --pkggroup=utility --maintainer="Syping on Travis \<travisci@syping.de\>" --requires=libqtcore4,libqtgui4,libqt4-network,qtcore4-l10n --conflicts=gta5view,gta5view-qt5 --replaces=gta5view,gta5view-qt5 --pakdir=../../package
- cd .. - cd ..
deploy: deploy:

View File

@ -763,7 +763,16 @@ void PictureDialog::editSnapmaticProperties()
void PictureDialog::editSnapmaticRawJson() void PictureDialog::editSnapmaticRawJson()
{ {
SnapmaticPicture *picture = smpic; SnapmaticPicture *picture = smpic;
JsonEditorDialog *jsonEditor = new JsonEditorDialog(picture, this); JsonEditorDialog *jsonEditor;
if (rqFullscreen && fullscreenWidget != nullptr)
{
jsonEditor = new JsonEditorDialog(picture, fullscreenWidget);
}
else
{
jsonEditor = new JsonEditorDialog(picture, this);
}
jsonEditor->setWindowIcon(windowIcon());
jsonEditor->setModal(true); jsonEditor->setModal(true);
jsonEditor->show(); jsonEditor->show();
jsonEditor->exec(); jsonEditor->exec();

View File

@ -131,10 +131,12 @@ void ProfileInterface::setProfileFolder(QString folder, QString profile)
void ProfileInterface::setupProfileInterface() void ProfileInterface::setupProfileInterface()
{ {
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(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(loadingProgress(int,int)), this, SLOT(loadingProgress(int,int))); QObject::connect(profileLoader, SIGNAL(loadingProgress(int,int)), this, SLOT(loadingProgress(int,int)));
QObject::connect(profileLoader, SIGNAL(finished()), this, SLOT(profileLoaded_p())); QObject::connect(profileLoader, SIGNAL(finished()), this, SLOT(profileLoaded_p()));
profileLoader->start(); profileLoader->start();
@ -169,6 +171,12 @@ void ProfileInterface::pictureLoaded_event(SnapmaticPicture *picture)
pictureLoaded(picture, false); pictureLoaded(picture, false);
} }
void ProfileInterface::pictureFixed_event(SnapmaticPicture *picture)
{
QString fixedPicture = picture->getPictureStr() % " (" % picture->getPictureTitl() % ")";
fixedPictures << fixedPicture;
}
void ProfileInterface::pictureLoaded(SnapmaticPicture *picture, bool inserted) void ProfileInterface::pictureLoaded(SnapmaticPicture *picture, bool inserted)
{ {
SnapmaticWidget *picWidget = new SnapmaticWidget(profileDB, crewDB, threadDB, this); SnapmaticWidget *picWidget = new SnapmaticWidget(profileDB, crewDB, threadDB, this);
@ -342,6 +350,19 @@ void ProfileInterface::profileLoaded_p()
ui->cmdImport->setEnabled(true); ui->cmdImport->setEnabled(true);
isProfileLoaded = true; isProfileLoaded = true;
emit profileLoaded(); emit profileLoaded();
if (!fixedPictures.isEmpty())
{
int fixedInt = 0;
QString fixedStr;
for (QString fixedPicture : fixedPictures)
{
if (fixedInt != 0) { fixedStr += "<br>"; }
fixedStr += fixedPicture;
fixedInt++;
}
QMessageBox::information(this, tr("Snapmatic Loader"), tr("<h4>Following Snapmatic Pictures got repaired</h4>%1").arg(fixedStr));
}
} }
void ProfileInterface::savegameDeleted_event() void ProfileInterface::savegameDeleted_event()
@ -755,6 +776,7 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool warn) bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool warn)
{ {
QString picFileName = picture->getPictureFileName(); QString picFileName = picture->getPictureFileName();
qDebug() << picFileName;
QString adjustedFileName = picture->getOriginalPictureFileName(); QString adjustedFileName = picture->getOriginalPictureFileName();
if (picFileName.left(4) != "PGTA") if (picFileName.left(4) != "PGTA")
{ {
@ -768,6 +790,7 @@ bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool wa
} }
else if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format)) else if (picture->exportPicture(profileFolder % "/" % adjustedFileName, SnapmaticFormat::PGTA_Format))
{ {
picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format);
picture->setPicFilePath(profileFolder % "/" % adjustedFileName); picture->setPicFilePath(profileFolder % "/" % adjustedFileName);
pictureLoaded(picture, true); pictureLoaded(picture, true);
return true; return true;

View File

@ -69,6 +69,7 @@ private slots:
void on_cmdCloseProfile_clicked(); void on_cmdCloseProfile_clicked();
void on_cmdImport_clicked(); void on_cmdImport_clicked();
void pictureLoaded_event(SnapmaticPicture *picture); void pictureLoaded_event(SnapmaticPicture *picture);
void pictureFixed_event(SnapmaticPicture *picture);
void savegameLoaded_event(SavegameData *savegame, QString savegamePath); void savegameLoaded_event(SavegameData *savegame, QString savegamePath);
void loadingProgress(int value, int maximum); void loadingProgress(int value, int maximum);
void pictureDeleted_event(); void pictureDeleted_event();
@ -95,6 +96,7 @@ private:
QList<SnapmaticPicture*> pictures; QList<SnapmaticPicture*> pictures;
QMap<ProfileWidget*,QString> widgets; QMap<ProfileWidget*,QString> widgets;
QSpacerItem *saSpacerItem; QSpacerItem *saSpacerItem;
QStringList fixedPictures;
QColor highlightBackColor; QColor highlightBackColor;
QColor highlightTextColor; QColor highlightTextColor;
QString enabledPicStr; QString enabledPicStr;

View File

@ -78,6 +78,14 @@ void ProfileLoader::run()
SnapmaticPicture *picture = new SnapmaticPicture(picturePath); SnapmaticPicture *picture = new SnapmaticPicture(picturePath);
if (picture->readingPicture(true, true, true)) if (picture->readingPicture(true, true, true))
{ {
if (picture->isFormatSwitched())
{
picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format);
if (picture->exportPicture(picturePath, SnapmaticFormat::PGTA_Format))
{
emit pictureFixed(picture);
}
}
emit pictureLoaded(picture); emit pictureLoaded(picture);
int crewNumber = picture->getSnapmaticProperties().crewID; int crewNumber = picture->getSnapmaticProperties().crewID;
if (!crewList.contains(crewNumber)) if (!crewList.contains(crewNumber))

View File

@ -45,6 +45,7 @@ private slots:
signals: signals:
void pictureLoaded(SnapmaticPicture *picture); void pictureLoaded(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);
}; };

View File

@ -91,6 +91,7 @@ void SnapmaticPicture::reset()
// INIT PIC BOOLS // INIT PIC BOOLS
isCustomFormat = false; isCustomFormat = false;
isFormatSwitch = false;
isLoadedInRAM = false; isLoadedInRAM = false;
lowRamMode = false; lowRamMode = false;
picOk = false; picOk = false;
@ -115,6 +116,9 @@ bool SnapmaticPicture::preloadFile()
QFile *picFile = new QFile(picFilePath); QFile *picFile = new QFile(picFilePath);
picFileName = QFileInfo(picFilePath).fileName(); picFileName = QFileInfo(picFilePath).fileName();
bool g5eMode = false;
isFormatSwitch = false;
if (!picFile->open(QFile::ReadOnly)) if (!picFile->open(QFile::ReadOnly))
{ {
lastStep = "1;/1,OpenFile," % StringParser::convertDrawStringForLog(picFilePath); lastStep = "1;/1,OpenFile," % StringParser::convertDrawStringForLog(picFilePath);
@ -123,19 +127,38 @@ bool SnapmaticPicture::preloadFile()
} }
if (picFilePath.right(4) != QLatin1String(".g5e")) if (picFilePath.right(4) != QLatin1String(".g5e"))
{ {
rawPicContent = picFile->read(snapmaticFileMaxSize); rawPicContent = picFile->read(snapmaticFileMaxSize + 1024);
picFile->close(); picFile->close();
delete picFile; delete picFile;
// Setting is values if (rawPicContent.mid(1, 3) == QByteArray("G5E"))
isCustomFormat = false; {
isLoadedInRAM = true; isFormatSwitch = true;
}
else
{
isCustomFormat = false;
isLoadedInRAM = true;
}
} }
else else
{ {
QByteArray g5eContent = picFile->read(snapmaticFileMaxSize + 1024); g5eMode = true;
picFile->close(); }
delete picFile; if (g5eMode || isFormatSwitch)
{
QByteArray g5eContent;
if (!isFormatSwitch)
{
g5eContent = picFile->read(snapmaticFileMaxSize + 1024);
picFile->close();
delete picFile;
}
else
{
g5eContent = rawPicContent;
rawPicContent.clear();
}
// Set Custom Format // Set Custom Format
isCustomFormat = true; isCustomFormat = true;
@ -1191,6 +1214,37 @@ void SnapmaticPicture::setSnapmaticDefaultsEnforced(bool enforced)
careSnapDefault = enforced; careSnapDefault = enforced;
} }
// SNAPMATIC FORMAT
SnapmaticFormat SnapmaticPicture::getSnapmaticFormat()
{
if (isCustomFormat)
{
return SnapmaticFormat::G5E_Format;
}
return SnapmaticFormat::PGTA_Format;
}
void SnapmaticPicture::setSnapmaticFormat(SnapmaticFormat format)
{
if (format == SnapmaticFormat::G5E_Format)
{
isCustomFormat = true;
return;
}
else if (format == SnapmaticFormat::PGTA_Format)
{
isCustomFormat = false;
return;
}
qDebug() << "setSnapmaticFormat: Invalid SnapmaticFormat defined, valid SnapmaticFormats are G5E_Format and PGTA_Format";
}
bool SnapmaticPicture::isFormatSwitched()
{
return isFormatSwitch;
}
// VERIFY CONTENT // VERIFY CONTENT
bool SnapmaticPicture::verifyTitle(const QString &title) bool SnapmaticPicture::verifyTitle(const QString &title)

View File

@ -111,6 +111,11 @@ public:
bool isSnapmaticDefaultsEnforced(); bool isSnapmaticDefaultsEnforced();
void setSnapmaticDefaultsEnforced(bool enforced); void setSnapmaticDefaultsEnforced(bool enforced);
// SNAPMATIC FORMAT
SnapmaticFormat getSnapmaticFormat();
void setSnapmaticFormat(SnapmaticFormat format);
bool isFormatSwitched();
// VERIFY CONTENT // VERIFY CONTENT
static bool verifyTitle(const QString &title); static bool verifyTitle(const QString &title);
@ -134,6 +139,7 @@ private:
bool cacheEnabled; bool cacheEnabled;
bool isLoadedInRAM; bool isLoadedInRAM;
bool isCustomFormat; bool isCustomFormat;
bool isFormatSwitch;
bool careSnapDefault; bool careSnapDefault;
int jpegRawContentSize; int jpegRawContentSize;
int jpegRawContentSizeE; int jpegRawContentSizeE;

View File

@ -72,7 +72,7 @@ void SnapmaticWidget::setSnapmaticPicture(SnapmaticPicture *picture)
ui->labPicture->setFixedSize(48 * screenRatio, 27 * screenRatio); ui->labPicture->setFixedSize(48 * screenRatio, 27 * screenRatio);
QPixmap SnapmaticPixmap = QPixmap::fromImage(picture->getImage().scaled(ui->labPicture->width(), ui->labPicture->height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation), Qt::AutoColor); QPixmap SnapmaticPixmap = QPixmap::fromImage(picture->getImage().scaled(ui->labPicture->width(), ui->labPicture->height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation), Qt::AutoColor);
ui->labPicStr->setText(smpic->getPictureStr() % "\n" % smpic->getPictureTitl() % ""); ui->labPicStr->setText(smpic->getPictureStr() % "\n" % smpic->getPictureTitl());
ui->labPicture->setPixmap(SnapmaticPixmap); ui->labPicture->setPixmap(SnapmaticPixmap);
picture->clearCache(); picture->clearCache();

View File

@ -50,7 +50,7 @@
#ifndef GTA5SYNC_APPVER #ifndef GTA5SYNC_APPVER
#ifndef GTA5SYNC_DAILYB #ifndef GTA5SYNC_DAILYB
#define GTA5SYNC_APPVER "1.5.0-dev4" #define GTA5SYNC_APPVER "1.5.0-dev5"
#else #else
#define GTA5SYNC_APPVER GTA5SYNC_DAILYB #define GTA5SYNC_APPVER GTA5SYNC_DAILYB
#endif #endif

View File

@ -25,12 +25,12 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "Syping" VALUE "CompanyName", "Syping"
VALUE "FileDescription", "gta5view\0" VALUE "FileDescription", "gta5view\0"
VALUE "FileVersion", "1.5.0-dev4\0" VALUE "FileVersion", "1.5.0-dev5\0"
VALUE "InternalName", "gta5view\0" VALUE "InternalName", "gta5view\0"
VALUE "LegalCopyright", "Copyright © 2016-2017 Syping\0" VALUE "LegalCopyright", "Copyright © 2016-2017 Syping\0"
VALUE "OriginalFilename", "gta5view.exe\0" VALUE "OriginalFilename", "gta5view.exe\0"
VALUE "ProductName", "gta5view\0" VALUE "ProductName", "gta5view\0"
VALUE "ProductVersion", "1.5.0-dev4\0" VALUE "ProductVersion", "1.5.0-dev5\0"
END END
END END
END END

Binary file not shown.

View File

@ -427,14 +427,14 @@ Wenn du planst es als Avatar zu verwenden das Bild wird abgetrennt!</translation
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="105"/> <location filename="../ImportDialog.cpp" line="105"/>
<location filename="../ProfileInterface.cpp" line="599"/> <location filename="../ProfileInterface.cpp" line="620"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigener Avatar</translation> <translation>Eigener Avatar</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="131"/> <location filename="../ImportDialog.cpp" line="131"/>
<location filename="../ProfileInterface.cpp" line="618"/> <location filename="../ProfileInterface.cpp" line="639"/>
<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>
@ -974,7 +974,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="148"/> <location filename="../PictureDialog.cpp" line="148"/>
<location filename="../ProfileInterface.cpp" line="1169"/> <location filename="../ProfileInterface.cpp" line="1192"/>
<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>
@ -984,7 +984,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="149"/> <location filename="../PictureDialog.cpp" line="149"/>
<location filename="../ProfileInterface.cpp" line="1170"/> <location filename="../ProfileInterface.cpp" line="1193"/>
<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>
@ -998,7 +998,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="151"/> <location filename="../PictureDialog.cpp" line="151"/>
<location filename="../ProfileInterface.cpp" line="1164"/> <location filename="../ProfileInterface.cpp" line="1187"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation>Eigenschaften bearb&amp;eiten...</translation> <translation>Eigenschaften bearb&amp;eiten...</translation>
</message> </message>
@ -1013,7 +1013,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="153"/> <location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1166"/> <location filename="../ProfileInterface.cpp" line="1189"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation>&amp;Kartenansicht öffnen...</translation> <translation>&amp;Kartenansicht öffnen...</translation>
</message> </message>
@ -1267,7 +1267,7 @@ Drücke A für Standardansicht</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="155"/> <location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1167"/> <location filename="../ProfileInterface.cpp" line="1190"/>
<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>
@ -1331,30 +1331,40 @@ Drücke A für Standardansicht</translation>
<translation type="obsolete">Profil schließen</translation> <translation type="obsolete">Profil schließen</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="134"/> <location filename="../ProfileInterface.cpp" line="135"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Lade...</translation> <translation>Lade...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="416"/> <location filename="../ProfileInterface.cpp" line="364"/>
<location filename="../ProfileInterface.cpp" line="483"/> <source>Snapmatic Loader</source>
<translation>Snapmatic Lader</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="364"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="437"/>
<location filename="../ProfileInterface.cpp" line="504"/>
<source>Import...</source> <source>Import...</source>
<translation>Importieren...</translation> <translation>Importieren...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="417"/> <location filename="../ProfileInterface.cpp" line="438"/>
<location filename="../ProfileInterface.cpp" line="462"/> <location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="536"/>
<location filename="../ProfileInterface.cpp" line="535"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="551"/> <location filename="../ProfileInterface.cpp" line="572"/>
<location filename="../ProfileInterface.cpp" line="666"/> <location filename="../ProfileInterface.cpp" line="687"/>
<location filename="../ProfileInterface.cpp" line="746"/> <location filename="../ProfileInterface.cpp" line="767"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="772"/>
<location filename="../ProfileInterface.cpp" line="761"/> <location filename="../ProfileInterface.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="766"/> <location filename="../ProfileInterface.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="777"/> <location filename="../ProfileInterface.cpp" line="800"/>
<location filename="../ProfileInterface.cpp" line="814"/> <location filename="../ProfileInterface.cpp" line="837"/>
<location filename="../ProfileInterface.cpp" line="820"/> <location filename="../ProfileInterface.cpp" line="843"/>
<source>Import</source> <source>Import</source>
<translation>Importieren</translation> <translation>Importieren</translation>
</message> </message>
@ -1367,13 +1377,13 @@ Drücke A für Standardansicht</translation>
<translation type="vanished">Importfähige Dateien (*.g5e *.jpg *.png SGTA* PGTA*)</translation> <translation type="vanished">Importfähige Dateien (*.g5e *.jpg *.png SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="434"/> <location filename="../ProfileInterface.cpp" line="455"/>
<location filename="../UserInterface.cpp" line="376"/> <location filename="../UserInterface.cpp" line="376"/>
<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="435"/> <location filename="../ProfileInterface.cpp" line="456"/>
<location filename="../UserInterface.cpp" line="377"/> <location filename="../UserInterface.cpp" line="377"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic Bilder (PGTA*)</translation> <translation>Snapmatic Bilder (PGTA*)</translation>
@ -1383,29 +1393,29 @@ Drücke A für Standardansicht</translation>
<translation type="vanished">Alle Bilddateien (*.jpg *.png)</translation> <translation type="vanished">Alle Bilddateien (*.jpg *.png)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="432"/> <location filename="../ProfileInterface.cpp" line="453"/>
<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="../ProfileInterface.cpp" line="436"/> <location filename="../ProfileInterface.cpp" line="457"/>
<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="../ProfileInterface.cpp" line="437"/> <location filename="../ProfileInterface.cpp" line="458"/>
<location filename="../UserInterface.cpp" line="378"/> <location filename="../UserInterface.cpp" line="378"/>
<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="484"/> <location filename="../ProfileInterface.cpp" line="505"/>
<location filename="../ProfileInterface.cpp" line="499"/> <location filename="../ProfileInterface.cpp" line="520"/>
<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="515"/> <location filename="../ProfileInterface.cpp" line="536"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1414,29 +1424,29 @@ Drücke A für Standardansicht</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="535"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="418"/> <location filename="../UserInterface.cpp" line="418"/>
<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="551"/> <location filename="../ProfileInterface.cpp" line="572"/>
<location filename="../UserInterface.cpp" line="434"/> <location filename="../UserInterface.cpp" line="434"/>
<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>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="666"/> <location filename="../ProfileInterface.cpp" line="687"/>
<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="746"/> <location filename="../ProfileInterface.cpp" line="767"/>
<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="968"/> <location filename="../ProfileInterface.cpp" line="991"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Initialisiere Export...</translation> <translation>Initialisiere Export...</translation>
</message> </message>
@ -1445,23 +1455,23 @@ Drücke A für Standardansicht</translation>
<translation type="vanished">Kann %1 nicht importieren weil das Dateiformat nicht gültig ist</translation> <translation type="vanished">Kann %1 nicht importieren weil das Dateiformat nicht gültig ist</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="761"/> <location filename="../ProfileInterface.cpp" line="783"/>
<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="766"/> <location filename="../ProfileInterface.cpp" line="788"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source> <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, dieses Bild ist bereits im Spiel</translation> <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, dieses Bild ist bereits im Spiel</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="922"/> <location filename="../ProfileInterface.cpp" line="945"/>
<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="462"/> <location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="772"/>
<location filename="../UserInterface.cpp" line="466"/> <location filename="../UserInterface.cpp" line="466"/>
<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>
@ -1476,35 +1486,35 @@ Drücke A für Standardansicht</translation>
<translation type="vanished">Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA</translation> <translation type="vanished">Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="777"/> <location filename="../ProfileInterface.cpp" line="800"/>
<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="814"/> <location filename="../ProfileInterface.cpp" line="837"/>
<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="820"/> <location filename="../ProfileInterface.cpp" line="843"/>
<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="907"/> <location filename="../ProfileInterface.cpp" line="930"/>
<location filename="../ProfileInterface.cpp" line="925"/> <location filename="../ProfileInterface.cpp" line="948"/>
<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="908"/> <location filename="../ProfileInterface.cpp" line="931"/>
<location filename="../ProfileInterface.cpp" line="930"/> <location filename="../ProfileInterface.cpp" line="953"/>
<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="909"/> <location filename="../ProfileInterface.cpp" line="932"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="957"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation>Nur GTA Snapmatic</translation> <translation>Nur GTA Snapmatic</translation>
</message> </message>
@ -1523,25 +1533,25 @@ Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren
Exportieren als:</translation> Exportieren als:</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1021"/> <location filename="../ProfileInterface.cpp" line="1044"/>
<location filename="../ProfileInterface.cpp" line="1063"/> <location filename="../ProfileInterface.cpp" line="1086"/>
<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 ausgewählt</translation> <translation>Keine Snapmatic Bilder oder Spielstände ausgewählt</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1029"/> <location filename="../ProfileInterface.cpp" line="1052"/>
<location filename="../ProfileInterface.cpp" line="1057"/> <location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1063"/> <location filename="../ProfileInterface.cpp" line="1086"/>
<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="1029"/> <location filename="../ProfileInterface.cpp" line="1052"/>
<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="1057"/> <location filename="../ProfileInterface.cpp" line="1080"/>
<source>Failed at remove the complete selected Snapmatic pictures and/or Savegame files</source> <source>Failed at remove the complete selected Snapmatic pictures and/or Savegame files</source>
<translation>Fehlgeschlagen beim kompletten entfernen der ausgewählten Snapmatic Bilder und/oder der Spielstanddateien</translation> <translation>Fehlgeschlagen beim kompletten entfernen der ausgewählten Snapmatic Bilder und/oder der Spielstanddateien</translation>
</message> </message>
@ -1562,10 +1572,10 @@ Exportieren als:</translation>
<translation type="obsolete">Fehlgeschlagenen beim Import vom Spielstand weil kein Spielstandslot mehr übrig ist</translation> <translation type="obsolete">Fehlgeschlagenen beim Import vom Spielstand weil kein Spielstandslot mehr übrig ist</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="884"/> <location filename="../ProfileInterface.cpp" line="907"/>
<location filename="../ProfileInterface.cpp" line="922"/> <location filename="../ProfileInterface.cpp" line="945"/>
<location filename="../ProfileInterface.cpp" line="1001"/> <location filename="../ProfileInterface.cpp" line="1024"/>
<location filename="../ProfileInterface.cpp" line="1021"/> <location filename="../ProfileInterface.cpp" line="1044"/>
<source>Export selected</source> <source>Export selected</source>
<translation>Auswahl exportieren</translation> <translation>Auswahl exportieren</translation>
</message> </message>
@ -1586,7 +1596,7 @@ Exportieren als:</translation>
<translation type="obsolete">Wie sollen wir mit den Snapmatic Bilder umgehen?</translation> <translation type="obsolete">Wie sollen wir mit den Snapmatic Bilder umgehen?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="967"/> <location filename="../ProfileInterface.cpp" line="990"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Auswahl exportieren...</translation> <translation>Auswahl exportieren...</translation>
</message> </message>
@ -1599,7 +1609,7 @@ Exportieren als:</translation>
<translation type="obsolete">Initialisierung...</translation> <translation type="obsolete">Initialisierung...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1001"/> <location filename="../ProfileInterface.cpp" line="1024"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1634,7 +1644,7 @@ Exportieren als:</translation>
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation> <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="433"/> <location filename="../ProfileInterface.cpp" line="454"/>
<location filename="../UserInterface.cpp" line="375"/> <location filename="../UserInterface.cpp" line="375"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
@ -1803,32 +1813,32 @@ Exportieren als:</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="1205"/> <location filename="../ProfileInterface.cpp" line="1228"/>
<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="1207"/> <location filename="../ProfileInterface.cpp" line="1230"/>
<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="1209"/> <location filename="../ProfileInterface.cpp" line="1232"/>
<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="1210"/> <location filename="../ProfileInterface.cpp" line="1233"/>
<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="1213"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<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="1217"/> <location filename="../ProfileInterface.cpp" line="1240"/>
<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>
@ -1867,7 +1877,7 @@ Exportieren als:</translation>
<translation>Spielstand kopieren</translation> <translation>Spielstand kopieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1206"/> <location filename="../ProfileInterface.cpp" line="1229"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exportieren</translation> <translation>&amp;Exportieren</translation>
</message> </message>
@ -2110,7 +2120,7 @@ Exportieren als:</translation>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="417"/> <location filename="../SnapmaticPicture.cpp" line="440"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>FOTO - %1</translation> <translation>FOTO - %1</translation>
</message> </message>
@ -2160,7 +2170,7 @@ Exportieren als:</translation>
<translation>Bist du sicher %1 von deine Snapmatic Bilder zu löschen?</translation> <translation>Bist du sicher %1 von deine Snapmatic Bilder zu löschen?</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1155"/> <location filename="../ProfileInterface.cpp" line="1178"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation>Bearbei&amp;ten</translation> <translation>Bearbei&amp;ten</translation>
</message> </message>
@ -2173,7 +2183,7 @@ Exportieren als:</translation>
<translation type="vanished">&amp;Im Spiel deaktivieren</translation> <translation type="vanished">&amp;Im Spiel deaktivieren</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1168"/> <location filename="../ProfileInterface.cpp" line="1191"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exportieren</translation> <translation>&amp;Exportieren</translation>
</message> </message>
@ -2186,12 +2196,12 @@ Exportieren als:</translation>
<translation type="obsolete">Exportiere als &amp;GTA Snapmatic</translation> <translation type="obsolete">Exportiere als &amp;GTA Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1158"/> <location filename="../ProfileInterface.cpp" line="1181"/>
<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="1162"/> <location filename="../ProfileInterface.cpp" line="1185"/>
<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>
@ -2224,32 +2234,32 @@ Exportieren als:</translation>
<translation type="vanished">Exportiere als &amp;Snapmatic...</translation> <translation type="vanished">Exportiere als &amp;Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1171"/> <location filename="../ProfileInterface.cpp" line="1194"/>
<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="1174"/> <location filename="../ProfileInterface.cpp" line="1197"/>
<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="1176"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<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="1177"/> <location filename="../ProfileInterface.cpp" line="1200"/>
<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="1180"/> <location filename="../ProfileInterface.cpp" line="1203"/>
<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="1184"/> <location filename="../ProfileInterface.cpp" line="1207"/>
<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>

Binary file not shown.

View File

@ -238,14 +238,14 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="105"/> <location filename="../ImportDialog.cpp" line="105"/>
<location filename="../ProfileInterface.cpp" line="599"/> <location filename="../ProfileInterface.cpp" line="620"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="131"/> <location filename="../ImportDialog.cpp" line="131"/>
<location filename="../ProfileInterface.cpp" line="618"/> <location filename="../ProfileInterface.cpp" line="639"/>
<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>
@ -624,25 +624,25 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="148"/> <location filename="../PictureDialog.cpp" line="148"/>
<location filename="../ProfileInterface.cpp" line="1169"/> <location filename="../ProfileInterface.cpp" line="1192"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="149"/> <location filename="../PictureDialog.cpp" line="149"/>
<location filename="../ProfileInterface.cpp" line="1170"/> <location filename="../ProfileInterface.cpp" line="1193"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="151"/> <location filename="../PictureDialog.cpp" line="151"/>
<location filename="../ProfileInterface.cpp" line="1164"/> <location filename="../ProfileInterface.cpp" line="1187"/>
<source>&amp;Edit Properties...</source> <source>&amp;Edit Properties...</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="153"/> <location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1166"/> <location filename="../ProfileInterface.cpp" line="1189"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -793,7 +793,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="155"/> <location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1167"/> <location filename="../ProfileInterface.cpp" line="1190"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -848,202 +848,212 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="134"/> <location filename="../ProfileInterface.cpp" line="135"/>
<source>Loading...</source> <source>Loading...</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="416"/> <location filename="../ProfileInterface.cpp" line="364"/>
<location filename="../ProfileInterface.cpp" line="483"/> <source>Snapmatic Loader</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="364"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="437"/>
<location filename="../ProfileInterface.cpp" line="504"/>
<source>Import...</source> <source>Import...</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="417"/> <location filename="../ProfileInterface.cpp" line="438"/>
<location filename="../ProfileInterface.cpp" line="462"/> <location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="536"/>
<location filename="../ProfileInterface.cpp" line="535"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="551"/> <location filename="../ProfileInterface.cpp" line="572"/>
<location filename="../ProfileInterface.cpp" line="666"/> <location filename="../ProfileInterface.cpp" line="687"/>
<location filename="../ProfileInterface.cpp" line="746"/> <location filename="../ProfileInterface.cpp" line="767"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="772"/>
<location filename="../ProfileInterface.cpp" line="761"/> <location filename="../ProfileInterface.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="766"/> <location filename="../ProfileInterface.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="777"/> <location filename="../ProfileInterface.cpp" line="800"/>
<location filename="../ProfileInterface.cpp" line="814"/> <location filename="../ProfileInterface.cpp" line="837"/>
<location filename="../ProfileInterface.cpp" line="820"/> <location filename="../ProfileInterface.cpp" line="843"/>
<source>Import</source> <source>Import</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="432"/> <location filename="../ProfileInterface.cpp" line="453"/>
<source>Importable files (%1)</source> <source>Importable files (%1)</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="433"/> <location filename="../ProfileInterface.cpp" line="454"/>
<location filename="../UserInterface.cpp" line="375"/> <location filename="../UserInterface.cpp" line="375"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="434"/> <location filename="../ProfileInterface.cpp" line="455"/>
<location filename="../UserInterface.cpp" line="376"/> <location filename="../UserInterface.cpp" line="376"/>
<source>Savegames files (SGTA*)</source> <source>Savegames files (SGTA*)</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="435"/> <location filename="../ProfileInterface.cpp" line="456"/>
<location filename="../UserInterface.cpp" line="377"/> <location filename="../UserInterface.cpp" line="377"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="436"/> <location filename="../ProfileInterface.cpp" line="457"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="437"/> <location filename="../ProfileInterface.cpp" line="458"/>
<location filename="../UserInterface.cpp" line="378"/> <location filename="../UserInterface.cpp" line="378"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="462"/> <location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="772"/>
<location filename="../UserInterface.cpp" line="466"/> <location filename="../UserInterface.cpp" line="466"/>
<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="484"/> <location filename="../ProfileInterface.cpp" line="505"/>
<location filename="../ProfileInterface.cpp" line="499"/> <location filename="../ProfileInterface.cpp" line="520"/>
<source>Import file %1 of %2 files</source> <source>Import file %1 of %2 files</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="536"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="535"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="418"/> <location filename="../UserInterface.cpp" line="418"/>
<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="551"/> <location filename="../ProfileInterface.cpp" line="572"/>
<location filename="../UserInterface.cpp" line="434"/> <location filename="../UserInterface.cpp" line="434"/>
<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="666"/> <location filename="../ProfileInterface.cpp" line="687"/>
<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></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="746"/> <location filename="../ProfileInterface.cpp" line="767"/>
<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></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="761"/> <location filename="../ProfileInterface.cpp" line="783"/>
<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></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="766"/> <location filename="../ProfileInterface.cpp" line="788"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source> <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="777"/> <location filename="../ProfileInterface.cpp" line="800"/>
<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="814"/> <location filename="../ProfileInterface.cpp" line="837"/>
<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="820"/> <location filename="../ProfileInterface.cpp" line="843"/>
<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="884"/> <location filename="../ProfileInterface.cpp" line="907"/>
<location filename="../ProfileInterface.cpp" line="922"/> <location filename="../ProfileInterface.cpp" line="945"/>
<location filename="../ProfileInterface.cpp" line="1001"/> <location filename="../ProfileInterface.cpp" line="1024"/>
<location filename="../ProfileInterface.cpp" line="1021"/> <location filename="../ProfileInterface.cpp" line="1044"/>
<source>Export selected</source> <source>Export selected</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="907"/> <location filename="../ProfileInterface.cpp" line="930"/>
<location filename="../ProfileInterface.cpp" line="925"/> <location filename="../ProfileInterface.cpp" line="948"/>
<source>JPG pictures and GTA Snapmatic</source> <source>JPG pictures and GTA Snapmatic</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="908"/> <location filename="../ProfileInterface.cpp" line="931"/>
<location filename="../ProfileInterface.cpp" line="930"/> <location filename="../ProfileInterface.cpp" line="953"/>
<source>JPG pictures only</source> <source>JPG pictures only</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="909"/> <location filename="../ProfileInterface.cpp" line="932"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="957"/>
<source>GTA Snapmatic only</source> <source>GTA Snapmatic only</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="922"/> <location filename="../ProfileInterface.cpp" line="945"/>
<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></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="967"/> <location filename="../ProfileInterface.cpp" line="990"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="968"/> <location filename="../ProfileInterface.cpp" line="991"/>
<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="1001"/> <location filename="../ProfileInterface.cpp" line="1024"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1021"/> <location filename="../ProfileInterface.cpp" line="1044"/>
<location filename="../ProfileInterface.cpp" line="1063"/> <location filename="../ProfileInterface.cpp" line="1086"/>
<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="1029"/> <location filename="../ProfileInterface.cpp" line="1052"/>
<location filename="../ProfileInterface.cpp" line="1057"/> <location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1063"/> <location filename="../ProfileInterface.cpp" line="1086"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1029"/> <location filename="../ProfileInterface.cpp" line="1052"/>
<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="1057"/> <location filename="../ProfileInterface.cpp" line="1080"/>
<source>Failed at remove the complete selected Snapmatic pictures and/or Savegame files</source> <source>Failed at remove the complete selected Snapmatic pictures and/or Savegame files</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1144,37 +1154,37 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1205"/> <location filename="../ProfileInterface.cpp" line="1228"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1206"/> <location filename="../ProfileInterface.cpp" line="1229"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1207"/> <location filename="../ProfileInterface.cpp" line="1230"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1209"/> <location filename="../ProfileInterface.cpp" line="1232"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1210"/> <location filename="../ProfileInterface.cpp" line="1233"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1213"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1217"/> <location filename="../ProfileInterface.cpp" line="1240"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1423,7 +1433,7 @@ Press 1 for Default View</source>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="417"/> <location filename="../SnapmaticPicture.cpp" line="440"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation></translation> <translation></translation>
</message> </message>
@ -1483,52 +1493,52 @@ Press 1 for Default View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1155"/> <location filename="../ProfileInterface.cpp" line="1178"/>
<source>Edi&amp;t</source> <source>Edi&amp;t</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1158"/> <location filename="../ProfileInterface.cpp" line="1181"/>
<source>Show &amp;In-game</source> <source>Show &amp;In-game</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1162"/> <location filename="../ProfileInterface.cpp" line="1185"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1168"/> <location filename="../ProfileInterface.cpp" line="1191"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1171"/> <location filename="../ProfileInterface.cpp" line="1194"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1174"/> <location filename="../ProfileInterface.cpp" line="1197"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1176"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1177"/> <location filename="../ProfileInterface.cpp" line="1200"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1180"/> <location filename="../ProfileInterface.cpp" line="1203"/>
<source>Select &amp;All</source> <source>Select &amp;All</source>
<translation></translation> <translation></translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1184"/> <location filename="../ProfileInterface.cpp" line="1207"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation></translation> <translation></translation>
</message> </message>

Binary file not shown.

View File

@ -363,14 +363,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="105"/> <location filename="../ImportDialog.cpp" line="105"/>
<location filename="../ProfileInterface.cpp" line="599"/> <location filename="../ProfileInterface.cpp" line="620"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="131"/> <location filename="../ImportDialog.cpp" line="131"/>
<location filename="../ProfileInterface.cpp" line="618"/> <location filename="../ProfileInterface.cpp" line="639"/>
<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>
@ -903,7 +903,7 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="148"/> <location filename="../PictureDialog.cpp" line="148"/>
<location filename="../ProfileInterface.cpp" line="1169"/> <location filename="../ProfileInterface.cpp" line="1192"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -913,7 +913,7 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="149"/> <location filename="../PictureDialog.cpp" line="149"/>
<location filename="../ProfileInterface.cpp" line="1170"/> <location filename="../ProfileInterface.cpp" line="1193"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -923,13 +923,13 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="151"/> <location filename="../PictureDialog.cpp" line="151"/>
<location filename="../ProfileInterface.cpp" line="1164"/> <location filename="../ProfileInterface.cpp" line="1187"/>
<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="153"/> <location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1166"/> <location filename="../ProfileInterface.cpp" line="1189"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1021,7 +1021,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="155"/> <location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1167"/> <location filename="../ProfileInterface.cpp" line="1190"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1080,30 +1080,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="134"/> <location filename="../ProfileInterface.cpp" line="135"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Chargement...</translation> <translation>Chargement...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="416"/> <location filename="../ProfileInterface.cpp" line="364"/>
<location filename="../ProfileInterface.cpp" line="483"/> <source>Snapmatic Loader</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="364"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="437"/>
<location filename="../ProfileInterface.cpp" line="504"/>
<source>Import...</source> <source>Import...</source>
<translation>Importer...</translation> <translation>Importer...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="417"/> <location filename="../ProfileInterface.cpp" line="438"/>
<location filename="../ProfileInterface.cpp" line="462"/> <location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="536"/>
<location filename="../ProfileInterface.cpp" line="535"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="551"/> <location filename="../ProfileInterface.cpp" line="572"/>
<location filename="../ProfileInterface.cpp" line="666"/> <location filename="../ProfileInterface.cpp" line="687"/>
<location filename="../ProfileInterface.cpp" line="746"/> <location filename="../ProfileInterface.cpp" line="767"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="772"/>
<location filename="../ProfileInterface.cpp" line="761"/> <location filename="../ProfileInterface.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="766"/> <location filename="../ProfileInterface.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="777"/> <location filename="../ProfileInterface.cpp" line="800"/>
<location filename="../ProfileInterface.cpp" line="814"/> <location filename="../ProfileInterface.cpp" line="837"/>
<location filename="../ProfileInterface.cpp" line="820"/> <location filename="../ProfileInterface.cpp" line="843"/>
<source>Import</source> <source>Import</source>
<translation>Importer</translation> <translation>Importer</translation>
</message> </message>
@ -1112,36 +1122,36 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation type="vanished">Fichiers de profil GTA (SGTA* PGTA*)</translation> <translation type="vanished">Fichiers de profil GTA (SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="434"/> <location filename="../ProfileInterface.cpp" line="455"/>
<location filename="../UserInterface.cpp" line="376"/> <location filename="../UserInterface.cpp" line="376"/>
<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="435"/> <location filename="../ProfileInterface.cpp" line="456"/>
<location filename="../UserInterface.cpp" line="377"/> <location filename="../UserInterface.cpp" line="377"/>
<source>Snapmatic pictures (PGTA*)</source> <source>Snapmatic pictures (PGTA*)</source>
<translation>Photos Snapmatic (PGTA*)</translation> <translation>Photos Snapmatic (PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="436"/> <location filename="../ProfileInterface.cpp" line="457"/>
<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="../ProfileInterface.cpp" line="437"/> <location filename="../ProfileInterface.cpp" line="458"/>
<location filename="../UserInterface.cpp" line="378"/> <location filename="../UserInterface.cpp" line="378"/>
<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="484"/> <location filename="../ProfileInterface.cpp" line="505"/>
<location filename="../ProfileInterface.cpp" line="499"/> <location filename="../ProfileInterface.cpp" line="520"/>
<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="515"/> <location filename="../ProfileInterface.cpp" line="536"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1150,25 +1160,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="462"/> <location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="772"/>
<location filename="../UserInterface.cpp" line="466"/> <location filename="../UserInterface.cpp" line="466"/>
<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="432"/> <location filename="../ProfileInterface.cpp" line="453"/>
<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="535"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="418"/> <location filename="../UserInterface.cpp" line="418"/>
<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="551"/> <location filename="../ProfileInterface.cpp" line="572"/>
<location filename="../UserInterface.cpp" line="434"/> <location filename="../UserInterface.cpp" line="434"/>
<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>
@ -1190,78 +1200,78 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation type="vanished">Tous les fichiers image (*.jpg *.png)</translation> <translation type="vanished">Tous les fichiers image (*.jpg *.png)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="666"/> <location filename="../ProfileInterface.cpp" line="687"/>
<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="746"/> <location filename="../ProfileInterface.cpp" line="767"/>
<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="761"/> <location filename="../ProfileInterface.cpp" line="783"/>
<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="766"/> <location filename="../ProfileInterface.cpp" line="788"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source> <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Impossible d&apos;importer la photo Snapmatic, un fichier du même nom existe déjà</translation> <translation>Impossible d&apos;importer la photo Snapmatic, un fichier du même nom existe déjà</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="777"/> <location filename="../ProfileInterface.cpp" line="800"/>
<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="814"/> <location filename="../ProfileInterface.cpp" line="837"/>
<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="820"/> <location filename="../ProfileInterface.cpp" line="843"/>
<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="884"/> <location filename="../ProfileInterface.cpp" line="907"/>
<location filename="../ProfileInterface.cpp" line="922"/> <location filename="../ProfileInterface.cpp" line="945"/>
<location filename="../ProfileInterface.cpp" line="1001"/> <location filename="../ProfileInterface.cpp" line="1024"/>
<location filename="../ProfileInterface.cpp" line="1021"/> <location filename="../ProfileInterface.cpp" line="1044"/>
<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="907"/> <location filename="../ProfileInterface.cpp" line="930"/>
<location filename="../ProfileInterface.cpp" line="925"/> <location filename="../ProfileInterface.cpp" line="948"/>
<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="908"/> <location filename="../ProfileInterface.cpp" line="931"/>
<location filename="../ProfileInterface.cpp" line="930"/> <location filename="../ProfileInterface.cpp" line="953"/>
<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="909"/> <location filename="../ProfileInterface.cpp" line="932"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="957"/>
<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="922"/> <location filename="../ProfileInterface.cpp" line="945"/>
<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="967"/> <location filename="../ProfileInterface.cpp" line="990"/>
<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="968"/> <location filename="../ProfileInterface.cpp" line="991"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1270,7 +1280,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation type="vanished">Initialisation de l&apos;export...</translation> <translation type="vanished">Initialisation de l&apos;export...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1001"/> <location filename="../ProfileInterface.cpp" line="1024"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1279,25 +1289,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1021"/> <location filename="../ProfileInterface.cpp" line="1044"/>
<location filename="../ProfileInterface.cpp" line="1063"/> <location filename="../ProfileInterface.cpp" line="1086"/>
<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="1029"/> <location filename="../ProfileInterface.cpp" line="1052"/>
<location filename="../ProfileInterface.cpp" line="1057"/> <location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1063"/> <location filename="../ProfileInterface.cpp" line="1086"/>
<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="1029"/> <location filename="../ProfileInterface.cpp" line="1052"/>
<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>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1057"/> <location filename="../ProfileInterface.cpp" line="1080"/>
<source>Failed at remove the complete selected Snapmatic pictures and/or Savegame files</source> <source>Failed at remove the complete selected Snapmatic pictures and/or Savegame files</source>
<translation>Impossible de supprimer la sélection</translation> <translation>Impossible de supprimer la sélection</translation>
</message> </message>
@ -1307,7 +1317,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="433"/> <location filename="../ProfileInterface.cpp" line="454"/>
<location filename="../UserInterface.cpp" line="375"/> <location filename="../UserInterface.cpp" line="375"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
@ -1404,7 +1414,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer</translation> <translation>Supprimer</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1206"/> <location filename="../ProfileInterface.cpp" line="1229"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exporter</translation> <translation>&amp;Exporter</translation>
</message> </message>
@ -1495,32 +1505,32 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible de supprimer %1</translation> <translation>Impossible de supprimer %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1205"/> <location filename="../ProfileInterface.cpp" line="1228"/>
<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="1207"/> <location filename="../ProfileInterface.cpp" line="1230"/>
<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="1209"/> <location filename="../ProfileInterface.cpp" line="1232"/>
<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="1210"/> <location filename="../ProfileInterface.cpp" line="1233"/>
<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="1213"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<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="1217"/> <location filename="../ProfileInterface.cpp" line="1240"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation> <translation>&amp;Déselectionner tout</translation>
</message> </message>
@ -1691,7 +1701,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="417"/> <location filename="../SnapmaticPicture.cpp" line="440"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>PHOTO - %1</translation> <translation>PHOTO - %1</translation>
</message> </message>
@ -1761,17 +1771,17 @@ 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="1155"/> <location filename="../ProfileInterface.cpp" line="1178"/>
<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="1158"/> <location filename="../ProfileInterface.cpp" line="1181"/>
<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="1162"/> <location filename="../ProfileInterface.cpp" line="1185"/>
<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>
@ -1780,7 +1790,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation type="vanished">Modifier les &amp;propriétés...</translation> <translation type="vanished">Modifier les &amp;propriétés...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1168"/> <location filename="../ProfileInterface.cpp" line="1191"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Exporter</translation> <translation>&amp;Exporter</translation>
</message> </message>
@ -1793,32 +1803,32 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation type="vanished">Exporter comme &amp;GTA Snapmatic...</translation> <translation type="vanished">Exporter comme &amp;GTA Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1171"/> <location filename="../ProfileInterface.cpp" line="1194"/>
<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="1174"/> <location filename="../ProfileInterface.cpp" line="1197"/>
<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="1176"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<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="1177"/> <location filename="../ProfileInterface.cpp" line="1200"/>
<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="1180"/> <location filename="../ProfileInterface.cpp" line="1203"/>
<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="1184"/> <location filename="../ProfileInterface.cpp" line="1207"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation> <translation>&amp;Déselectionner tout</translation>
</message> </message>

Binary file not shown.

View File

@ -326,14 +326,14 @@ Grand Theft Auto V Snapmatic картинок и сохранений</translati
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="105"/> <location filename="../ImportDialog.cpp" line="105"/>
<location filename="../ProfileInterface.cpp" line="599"/> <location filename="../ProfileInterface.cpp" line="620"/>
<source>Custom Avatar</source> <source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment> <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="131"/> <location filename="../ImportDialog.cpp" line="131"/>
<location filename="../ProfileInterface.cpp" line="618"/> <location filename="../ProfileInterface.cpp" line="639"/>
<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>
@ -782,7 +782,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="148"/> <location filename="../PictureDialog.cpp" line="148"/>
<location filename="../ProfileInterface.cpp" line="1169"/> <location filename="../ProfileInterface.cpp" line="1192"/>
<source>Export as &amp;Picture...</source> <source>Export as &amp;Picture...</source>
<translation>Экспортировать как &amp;картинку...</translation> <translation>Экспортировать как &amp;картинку...</translation>
</message> </message>
@ -792,7 +792,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="149"/> <location filename="../PictureDialog.cpp" line="149"/>
<location filename="../ProfileInterface.cpp" line="1170"/> <location filename="../ProfileInterface.cpp" line="1193"/>
<source>Export as &amp;Snapmatic...</source> <source>Export as &amp;Snapmatic...</source>
<translation>Экспортировать как &amp;Snapmatic...</translation> <translation>Экспортировать как &amp;Snapmatic...</translation>
</message> </message>
@ -806,13 +806,13 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="151"/> <location filename="../PictureDialog.cpp" line="151"/>
<location filename="../ProfileInterface.cpp" line="1164"/> <location filename="../ProfileInterface.cpp" line="1187"/>
<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="153"/> <location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1166"/> <location filename="../ProfileInterface.cpp" line="1189"/>
<source>Open &amp;Map Viewer...</source> <source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1004,7 +1004,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.cpp" line="155"/> <location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1167"/> <location filename="../ProfileInterface.cpp" line="1190"/>
<source>Open &amp;JSON Editor...</source> <source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -1059,30 +1059,40 @@ Press 1 for Default View</source>
<translation type="obsolete">Закрыть профиль</translation> <translation type="obsolete">Закрыть профиль</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="134"/> <location filename="../ProfileInterface.cpp" line="135"/>
<source>Loading...</source> <source>Loading...</source>
<translation>Загрузка...</translation> <translation>Загрузка...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="416"/> <location filename="../ProfileInterface.cpp" line="364"/>
<location filename="../ProfileInterface.cpp" line="483"/> <source>Snapmatic Loader</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="364"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="437"/>
<location filename="../ProfileInterface.cpp" line="504"/>
<source>Import...</source> <source>Import...</source>
<translation>Импортировать...</translation> <translation>Импортировать...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="417"/> <location filename="../ProfileInterface.cpp" line="438"/>
<location filename="../ProfileInterface.cpp" line="462"/> <location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="515"/> <location filename="../ProfileInterface.cpp" line="536"/>
<location filename="../ProfileInterface.cpp" line="535"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../ProfileInterface.cpp" line="551"/> <location filename="../ProfileInterface.cpp" line="572"/>
<location filename="../ProfileInterface.cpp" line="666"/> <location filename="../ProfileInterface.cpp" line="687"/>
<location filename="../ProfileInterface.cpp" line="746"/> <location filename="../ProfileInterface.cpp" line="767"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="772"/>
<location filename="../ProfileInterface.cpp" line="761"/> <location filename="../ProfileInterface.cpp" line="783"/>
<location filename="../ProfileInterface.cpp" line="766"/> <location filename="../ProfileInterface.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="777"/> <location filename="../ProfileInterface.cpp" line="800"/>
<location filename="../ProfileInterface.cpp" line="814"/> <location filename="../ProfileInterface.cpp" line="837"/>
<location filename="../ProfileInterface.cpp" line="820"/> <location filename="../ProfileInterface.cpp" line="843"/>
<source>Import</source> <source>Import</source>
<translation>Импортировать</translation> <translation>Импортировать</translation>
</message> </message>
@ -1091,31 +1101,31 @@ Press 1 for Default View</source>
<translation type="vanished">Все файлы профиля (SGTA* PGTA*)</translation> <translation type="vanished">Все файлы профиля (SGTA* PGTA*)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="434"/> <location filename="../ProfileInterface.cpp" line="455"/>
<location filename="../UserInterface.cpp" line="376"/> <location filename="../UserInterface.cpp" line="376"/>
<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="435"/> <location filename="../ProfileInterface.cpp" line="456"/>
<location filename="../UserInterface.cpp" line="377"/> <location filename="../UserInterface.cpp" line="377"/>
<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="437"/> <location filename="../ProfileInterface.cpp" line="458"/>
<location filename="../UserInterface.cpp" line="378"/> <location filename="../UserInterface.cpp" line="378"/>
<source>All files (**)</source> <source>All files (**)</source>
<translation>Все файлы (**)</translation> <translation>Все файлы (**)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="484"/> <location filename="../ProfileInterface.cpp" line="505"/>
<location filename="../ProfileInterface.cpp" line="499"/> <location filename="../ProfileInterface.cpp" line="520"/>
<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="515"/> <location filename="../ProfileInterface.cpp" line="536"/>
<source>Import failed with... <source>Import failed with...
%1</source> %1</source>
@ -1124,13 +1134,13 @@ Press 1 for Default View</source>
%1</translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="535"/> <location filename="../ProfileInterface.cpp" line="556"/>
<location filename="../UserInterface.cpp" line="418"/> <location filename="../UserInterface.cpp" line="418"/>
<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="551"/> <location filename="../ProfileInterface.cpp" line="572"/>
<location filename="../UserInterface.cpp" line="434"/> <location filename="../UserInterface.cpp" line="434"/>
<source>Failed to read Savegame file</source> <source>Failed to read Savegame file</source>
<translation>Не удалось загрузить файл сохранения</translation> <translation>Не удалось загрузить файл сохранения</translation>
@ -1140,8 +1150,8 @@ Press 1 for Default View</source>
<translation type="vanished">Не получилось импортировать %1 из-за неправильного формата файла</translation> <translation type="vanished">Не получилось импортировать %1 из-за неправильного формата файла</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="462"/> <location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="751"/> <location filename="../ProfileInterface.cpp" line="772"/>
<location filename="../UserInterface.cpp" line="466"/> <location filename="../UserInterface.cpp" line="466"/>
<source>No valid file is selected</source> <source>No valid file is selected</source>
<translation>Выбранный файл неверен</translation> <translation>Выбранный файл неверен</translation>
@ -1160,93 +1170,93 @@ Press 1 for Default View</source>
<translation type="vanished">Все изображения (*.jpg *.png)</translation> <translation type="vanished">Все изображения (*.jpg *.png)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="432"/> <location filename="../ProfileInterface.cpp" line="453"/>
<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="436"/> <location filename="../ProfileInterface.cpp" line="457"/>
<source>All image files (%1)</source> <source>All image files (%1)</source>
<translation>Все файлы изображений (%1)</translation> <translation>Все файлы изображений (%1)</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="666"/> <location filename="../ProfileInterface.cpp" line="687"/>
<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="746"/> <location filename="../ProfileInterface.cpp" line="767"/>
<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="761"/> <location filename="../ProfileInterface.cpp" line="783"/>
<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="766"/> <location filename="../ProfileInterface.cpp" line="788"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source> <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Не удалось импортировать картинку Snapmatic, картинка уже в игре</translation> <translation>Не удалось импортировать картинку Snapmatic, картинка уже в игре</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="777"/> <location filename="../ProfileInterface.cpp" line="800"/>
<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="814"/> <location filename="../ProfileInterface.cpp" line="837"/>
<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="820"/> <location filename="../ProfileInterface.cpp" line="843"/>
<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="907"/> <location filename="../ProfileInterface.cpp" line="930"/>
<location filename="../ProfileInterface.cpp" line="925"/> <location filename="../ProfileInterface.cpp" line="948"/>
<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="908"/> <location filename="../ProfileInterface.cpp" line="931"/>
<location filename="../ProfileInterface.cpp" line="930"/> <location filename="../ProfileInterface.cpp" line="953"/>
<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="909"/> <location filename="../ProfileInterface.cpp" line="932"/>
<location filename="../ProfileInterface.cpp" line="934"/> <location filename="../ProfileInterface.cpp" line="957"/>
<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="968"/> <location filename="../ProfileInterface.cpp" line="991"/>
<source>Initialising export...</source> <source>Initialising export...</source>
<translation>Подготовка к экспорту...</translation> <translation>Подготовка к экспорту...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1021"/> <location filename="../ProfileInterface.cpp" line="1044"/>
<location filename="../ProfileInterface.cpp" line="1063"/> <location filename="../ProfileInterface.cpp" line="1086"/>
<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="1029"/> <location filename="../ProfileInterface.cpp" line="1052"/>
<location filename="../ProfileInterface.cpp" line="1057"/> <location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1063"/> <location filename="../ProfileInterface.cpp" line="1086"/>
<source>Remove selected</source> <source>Remove selected</source>
<translation>Снять выделение</translation> <translation>Снять выделение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1029"/> <location filename="../ProfileInterface.cpp" line="1052"/>
<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="1057"/> <location filename="../ProfileInterface.cpp" line="1080"/>
<source>Failed at remove the complete selected Snapmatic pictures and/or Savegame files</source> <source>Failed at remove the complete selected Snapmatic pictures and/or Savegame files</source>
<translation>Не удалось удалить полностью выбранные картинки Snapmatic и/или файлы сохранений</translation> <translation>Не удалось удалить полностью выбранные картинки Snapmatic и/или файлы сохранений</translation>
</message> </message>
@ -1267,20 +1277,20 @@ Press 1 for Default View</source>
<translation type="obsolete">Не получилось имортировать копию сохранения, потому что не осталось свободных под них слотов</translation> <translation type="obsolete">Не получилось имортировать копию сохранения, потому что не осталось свободных под них слотов</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="884"/> <location filename="../ProfileInterface.cpp" line="907"/>
<location filename="../ProfileInterface.cpp" line="922"/> <location filename="../ProfileInterface.cpp" line="945"/>
<location filename="../ProfileInterface.cpp" line="1001"/> <location filename="../ProfileInterface.cpp" line="1024"/>
<location filename="../ProfileInterface.cpp" line="1021"/> <location filename="../ProfileInterface.cpp" line="1044"/>
<source>Export selected</source> <source>Export selected</source>
<translation>Экспортировать выделенное</translation> <translation>Экспортировать выделенное</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="922"/> <location filename="../ProfileInterface.cpp" line="945"/>
<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="967"/> <location filename="../ProfileInterface.cpp" line="990"/>
<source>Export selected...</source> <source>Export selected...</source>
<translation>Экпортировать выделенное...</translation> <translation>Экпортировать выделенное...</translation>
</message> </message>
@ -1289,7 +1299,7 @@ Press 1 for Default View</source>
<translation type="vanished">Подготавливаю эскпорт...</translation> <translation type="vanished">Подготавливаю эскпорт...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1001"/> <location filename="../ProfileInterface.cpp" line="1024"/>
<source>Export failed with... <source>Export failed with...
%1</source> %1</source>
@ -1310,7 +1320,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="433"/> <location filename="../ProfileInterface.cpp" line="454"/>
<location filename="../UserInterface.cpp" line="375"/> <location filename="../UserInterface.cpp" line="375"/>
<source>GTA V Export (*.g5e)</source> <source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation> <translation>GTA V Export (*.g5e)</translation>
@ -1466,32 +1476,32 @@ Press 1 for Default View</source>
<translation>Не удалось удалить сохранение %1</translation> <translation>Не удалось удалить сохранение %1</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1205"/> <location filename="../ProfileInterface.cpp" line="1228"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>&amp;Просмотр</translation> <translation>&amp;Просмотр</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1207"/> <location filename="../ProfileInterface.cpp" line="1230"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>&amp;Удалить</translation> <translation>&amp;Удалить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1209"/> <location filename="../ProfileInterface.cpp" line="1232"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Выбрать</translation> <translation>&amp;Выбрать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1210"/> <location filename="../ProfileInterface.cpp" line="1233"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>Сн&amp;ять выбор</translation> <translation>Сн&amp;ять выбор</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1213"/> <location filename="../ProfileInterface.cpp" line="1236"/>
<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="1217"/> <location filename="../ProfileInterface.cpp" line="1240"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation> <translation>Снять выбо&amp;р со всех</translation>
</message> </message>
@ -1501,7 +1511,7 @@ Press 1 for Default View</source>
<translation>Копировать сохранение</translation> <translation>Копировать сохранение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1206"/> <location filename="../ProfileInterface.cpp" line="1229"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Экспортировать</translation> <translation>&amp;Экспортировать</translation>
</message> </message>
@ -1716,7 +1726,7 @@ Press 1 for Default View</source>
<context> <context>
<name>SnapmaticPicture</name> <name>SnapmaticPicture</name>
<message> <message>
<location filename="../SnapmaticPicture.cpp" line="417"/> <location filename="../SnapmaticPicture.cpp" line="440"/>
<source>PHOTO - %1</source> <source>PHOTO - %1</source>
<translation>ФОТО - %1</translation> <translation>ФОТО - %1</translation>
</message> </message>
@ -1776,17 +1786,17 @@ Press 1 for Default View</source>
<translation>Не удалось удалить %1 из колелкции картинок Snapmatic </translation> <translation>Не удалось удалить %1 из колелкции картинок Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1155"/> <location filename="../ProfileInterface.cpp" line="1178"/>
<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="1158"/> <location filename="../ProfileInterface.cpp" line="1181"/>
<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="1162"/> <location filename="../ProfileInterface.cpp" line="1185"/>
<source>Hide &amp;In-game</source> <source>Hide &amp;In-game</source>
<translation>Ск&amp;рыть в игре</translation> <translation>Ск&amp;рыть в игре</translation>
</message> </message>
@ -1795,7 +1805,7 @@ Press 1 for Default View</source>
<translation type="vanished">&amp;Изменить свойства...</translation> <translation type="vanished">&amp;Изменить свойства...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1168"/> <location filename="../ProfileInterface.cpp" line="1191"/>
<source>&amp;Export</source> <source>&amp;Export</source>
<translation>&amp;Экспорт</translation> <translation>&amp;Экспорт</translation>
</message> </message>
@ -1808,32 +1818,32 @@ Press 1 for Default View</source>
<translation type="vanished">Экс&amp;портировать как GTA Snapmatic...</translation> <translation type="vanished">Экс&amp;портировать как GTA Snapmatic...</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1171"/> <location filename="../ProfileInterface.cpp" line="1194"/>
<source>&amp;View</source> <source>&amp;View</source>
<translation>По&amp;казать</translation> <translation>По&amp;казать</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1174"/> <location filename="../ProfileInterface.cpp" line="1197"/>
<source>&amp;Remove</source> <source>&amp;Remove</source>
<translation>У&amp;далить</translation> <translation>У&amp;далить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1176"/> <location filename="../ProfileInterface.cpp" line="1199"/>
<source>&amp;Select</source> <source>&amp;Select</source>
<translation>&amp;Выделить</translation> <translation>&amp;Выделить</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1177"/> <location filename="../ProfileInterface.cpp" line="1200"/>
<source>&amp;Deselect</source> <source>&amp;Deselect</source>
<translation>Сн&amp;ять выделение</translation> <translation>Сн&amp;ять выделение</translation>
</message> </message>
<message> <message>
<location filename="../ProfileInterface.cpp" line="1180"/> <location filename="../ProfileInterface.cpp" line="1203"/>
<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="1184"/> <location filename="../ProfileInterface.cpp" line="1207"/>
<source>&amp;Deselect All</source> <source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation> <translation>Снять выбо&amp;р со всех</translation>
</message> </message>