From 9adc8d9650cd756788a56f00a0166fae2f40a318 Mon Sep 17 00:00:00 2001
From: Syping <schiedelrafael@keppe.org>
Date: Wed, 25 Nov 2020 00:36:12 +0100
Subject: [PATCH] Aspect Ratio fixes, HiDPI fullscreen fix

---
 ExportThread.cpp      |   2 +-
 OptionsDialog.cpp     |   5 +-
 PictureDialog.cpp     | 159 +++++--------
 PictureExport.cpp     | 118 ++++------
 PictureWidget.cpp     |  40 ++--
 ProfileInterface.cpp  |  13 +-
 ProfileLoader.cpp     |  37 ++-
 SnapmaticPicture.cpp  |   9 +-
 SnapmaticPicture.h    |   2 +-
 SnapmaticWidget.cpp   |  27 ++-
 res/gta5sync.ts       | 520 +++++++++++++++++++++---------------------
 res/gta5sync_de.ts    | 516 +++++++++++++++++++++--------------------
 res/gta5sync_en_US.ts | 520 +++++++++++++++++++++---------------------
 res/gta5sync_fr.ts    | 516 +++++++++++++++++++++--------------------
 res/gta5sync_ko.ts    | 516 +++++++++++++++++++++--------------------
 res/gta5sync_ru.ts    | 516 +++++++++++++++++++++--------------------
 res/gta5sync_uk.ts    | 516 +++++++++++++++++++++--------------------
 res/gta5sync_zh_TW.ts | 516 +++++++++++++++++++++--------------------
 18 files changed, 2233 insertions(+), 2315 deletions(-)

diff --git a/ExportThread.cpp b/ExportThread.cpp
index 5736042..63aef4f 100644
--- a/ExportThread.cpp
+++ b/ExportThread.cpp
@@ -49,7 +49,7 @@ void ExportThread::run()
     // Quality Settings
     settings.beginGroup("Pictures");
     int defaultQuality = 100;
-    QSize defExportSize = QSize(960, 536);
+    QSize defExportSize = SnapmaticPicture::getSnapmaticResolution();
     int customQuality = settings.value("CustomQuality", defaultQuality).toInt();
     if (customQuality < 1 || customQuality > 100)
     {
diff --git a/OptionsDialog.cpp b/OptionsDialog.cpp
index 59f1b94..1bcbd8e 100644
--- a/OptionsDialog.cpp
+++ b/OptionsDialog.cpp
@@ -75,7 +75,7 @@ OptionsDialog::OptionsDialog(ProfileDatabase *profileDB, QWidget *parent) :
     int desktopSizeHeight = desktopResolution.height();
 #endif
     aspectRatio = Qt::KeepAspectRatio;
-    defExportSize = QSize(960, 536);
+    defExportSize = SnapmaticPicture::getSnapmaticResolution();
     cusExportSize = defExportSize;
     defaultQuality = 100;
     customQuality = 100;
@@ -298,6 +298,9 @@ void OptionsDialog::setupRadioButtons()
             break;
         case 10:
             ui->rbClassic->setChecked(true);
+#if QT_VERSION >= 0x050800
+            Q_FALLTHROUGH();
+#endif
         case 11:
             ui->cbDoubleclick->setChecked(true);
         }
diff --git a/PictureDialog.cpp b/PictureDialog.cpp
index b25536a..e77ea73 100644
--- a/PictureDialog.cpp
+++ b/PictureDialog.cpp
@@ -285,11 +285,7 @@ void PictureDialog::addPreviousNextButtons()
 void PictureDialog::adaptNewDialogSize(QSize newLabelSize)
 {
     Q_UNUSED(newLabelSize)
-#if QT_VERSION >= 0x050F00
-    int newDialogHeight = SnapmaticPicture::getSnapmaticResolution().height();
-#else
-    int newDialogHeight = (ui->labPicture->pixmap()->height() / AppEnv::screenRatioPR());
-#endif
+    int newDialogHeight = SnapmaticPicture::getSnapmaticResolution().height() * AppEnv::screenRatio();
     newDialogHeight = newDialogHeight + ui->jsonFrame->height();
     if (naviEnabled) newDialogHeight = newDialogHeight + layout()->menuBar()->height();
     setMaximumSize(width(), newDialogHeight);
@@ -304,19 +300,17 @@ void PictureDialog::styliseDialog()
 {
 #ifdef Q_OS_WIN
 #if QT_VERSION >= 0x050200
-    if (QtWin::isCompositionEnabled())
-    {
+    if (QtWin::isCompositionEnabled()) {
         QPalette palette;
         QtWin::extendFrameIntoClientArea(this, 0, qRound(layout()->menuBar()->height() * AppEnv::screenRatioPR()), 0, 0);
-        ui->jsonFrame->setStyleSheet(QString("QFrame { background: %1; }").arg(palette.window().color().name()));
-        setStyleSheet("PictureDialog { background: transparent; }");
+        ui->jsonFrame->setStyleSheet(QString("QFrame{background:%1;}").arg(palette.window().color().name()));
+        setStyleSheet("PictureDialog{background:transparent;}");
     }
-    else
-    {
+    else {
         QPalette palette;
         QtWin::resetExtendedFrame(this);
-        ui->jsonFrame->setStyleSheet(QString("QFrame { background: %1; }").arg(palette.window().color().name()));
-        setStyleSheet(QString("PictureDialog { background: %1; }").arg(QtWin::realColorizationColor().name()));
+        ui->jsonFrame->setStyleSheet(QString("QFrame{background:%1;}").arg(palette.window().color().name()));
+        setStyleSheet(QString("PictureDialog{background:%1;}").arg(QtWin::realColorizationColor().name()));
     }
 #endif
 #endif
@@ -326,10 +320,8 @@ bool PictureDialog::event(QEvent *event)
 {
 #ifdef Q_OS_WIN
 #if QT_VERSION >= 0x050200
-    if (naviEnabled)
-    {
-        if (event->type() == QWinEvent::CompositionChange || event->type() == QWinEvent::ColorizationChange)
-        {
+    if (naviEnabled) {
+        if (event->type() == QWinEvent::CompositionChange || event->type() == QWinEvent::ColorizationChange) {
             styliseDialog();
         }
     }
@@ -543,8 +535,7 @@ void PictureDialog::renderOverlayPicture()
 
 void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk, bool _indexed, int _index)
 {
-    if (smpic != nullptr)
-    {
+    if (smpic != nullptr) {
         QObject::disconnect(smpic, SIGNAL(updated()), this, SLOT(updated()));
         QObject::disconnect(smpic, SIGNAL(customSignal(QString)), this, SLOT(customSignal(QString)));
     }
@@ -552,35 +543,29 @@ void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk,
     indexed = _indexed;
     index = _index;
     smpic = picture;
-    if (!readOk)
-    {
+    if (!readOk) {
         QMessageBox::warning(this, tr("Snapmatic Picture Viewer"), tr("Failed at %1").arg(picture->getLastStep()));
         return;
     }
-    if (picture->isPicOk())
-    {
+    if (picture->isPicOk()) {
         snapmaticPicture = picture->getImage();
         renderPicture();
         ui->cmdManage->setEnabled(true);
     }
-    if (picture->isJsonOk())
-    {
+    if (picture->isJsonOk()) {
         crewStr = crewDB->getCrewName(crewID);
-        if (globalMap.contains(picArea))
-        {
-            picAreaStr = globalMap[picArea];
+        if (globalMap.contains(picArea)) {
+            picAreaStr = globalMap.value(picArea);
         }
-        else
-        {
+        else {
             picAreaStr = picArea;
         }
         setWindowTitle(windowTitleStr.arg(picTitl));
         ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, generatePlayersString(), generateCrewString(), picTitl, picAreaStr, created));
     }
-    else
-    {
+    else {
         ui->labJSON->setText(jsonDrawString.arg("0", "0", "0", tr("No Players"), tr("No Crew"), tr("Unknown Location")));
-        QMessageBox::warning(this,tr("Snapmatic Picture Viewer"),tr("Failed at %1").arg(picture->getLastStep()));
+        // QMessageBox::warning(this, tr("Snapmatic Picture Viewer"), tr("Failed at %1").arg(picture->getLastStep()));
     }
     QObject::connect(smpic, SIGNAL(updated()), this, SLOT(updated()));
     QObject::connect(smpic, SIGNAL(customSignal(QString)), this, SLOT(customSignal(QString)));
@@ -609,57 +594,39 @@ void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture)
 
 void PictureDialog::renderPicture()
 {
-    qreal screenRatio = AppEnv::screenRatio();
-    qreal screenRatioPR = AppEnv::screenRatioPR();
-    if (!previewMode)
-    {
-        if (overlayEnabled)
-        {
-            QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution();
-            QPixmap shownImagePixmap(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR);
-            shownImagePixmap.fill(Qt::transparent);
-            QPainter shownImagePainter(&shownImagePixmap);
-            shownImagePainter.drawImage(0, 0, snapmaticPicture.scaled(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
-            shownImagePainter.drawImage(3 * screenRatio * screenRatioPR, 3 * screenRatio * screenRatioPR, overlayTempImage);
-            shownImagePainter.end();
-#if QT_VERSION >= 0x050600
-            shownImagePixmap.setDevicePixelRatio(screenRatioPR);
-#endif
-            ui->labPicture->setPixmap(shownImagePixmap);
-        }
-        else
-        {
-            QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution();
-            QPixmap shownImagePixmap(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR);
-            shownImagePixmap.fill(Qt::transparent);
-            QPainter shownImagePainter(&shownImagePixmap);
-            shownImagePainter.drawImage(0, 0, snapmaticPicture.scaled(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
-            shownImagePainter.end();
-#if QT_VERSION >= 0x050600
-            shownImagePixmap.setDevicePixelRatio(screenRatioPR);
-#endif
-            ui->labPicture->setPixmap(shownImagePixmap);
-        }
+    const qreal screenRatio = AppEnv::screenRatio();
+    const qreal screenRatioPR = AppEnv::screenRatioPR();
+    const QSize snapmaticResolution(SnapmaticPicture::getSnapmaticResolution());
+    const QSize renderResolution(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR);
+    QPixmap shownImagePixmap(renderResolution);
+    shownImagePixmap.fill(Qt::black);
+    QPainter shownImagePainter(&shownImagePixmap);
+    const QImage renderImage = snapmaticPicture.scaled(renderResolution, Qt::KeepAspectRatio, Qt::SmoothTransformation);
+    if (renderImage.width() < renderResolution.width()) {
+        shownImagePainter.drawImage((renderResolution.width() - renderImage.width()) / 2, 0, renderImage, Qt::AutoColor);
     }
-    else
-    {
-        // Generating Avatar Preview
-        QSize snapmaticResolution = SnapmaticPicture::getSnapmaticResolution();
-        QPixmap avatarPixmap(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR);
-        QPainter snapPainter(&avatarPixmap);
-        QFont snapPainterFont;
-        snapPainterFont.setPixelSize(12 * screenRatio * screenRatioPR);
-        snapPainter.drawImage(0, 0, snapmaticPicture.scaled(snapmaticResolution.width() * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
-        snapPainter.drawImage(0, 0, avatarAreaPicture);
-        snapPainter.setPen(QColor::fromRgb(255, 255, 255, 255));
-        snapPainter.setFont(snapPainterFont);
-        snapPainter.drawText(QRect(3 * screenRatio * screenRatioPR, 3 * screenRatio * screenRatioPR, 140 * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR), Qt::AlignLeft | Qt::TextWordWrap, tr("Avatar Preview Mode\nPress 1 for Default View"));
-        snapPainter.end();
-#if QT_VERSION >= 0x050600
-        avatarPixmap.setDevicePixelRatio(screenRatioPR);
-#endif
-        ui->labPicture->setPixmap(avatarPixmap);
+    else if (renderImage.height() < renderResolution.height()) {
+        shownImagePainter.drawImage(0, (renderResolution.height() - renderImage.height()) / 2, renderImage, Qt::AutoColor);
     }
+    else {
+        shownImagePainter.drawImage(0, 0, renderImage, Qt::AutoColor);
+    }
+    if (previewMode) {
+        QFont shownImagePainterFont;
+        shownImagePainterFont.setPixelSize(12 * screenRatio * screenRatioPR);
+        shownImagePainter.drawImage(0, 0, avatarAreaPicture);
+        shownImagePainter.setPen(QColor::fromRgb(255, 255, 255, 255));
+        shownImagePainter.setFont(shownImagePainterFont);
+        shownImagePainter.drawText(QRect(3 * screenRatio * screenRatioPR, 3 * screenRatio * screenRatioPR, 140 * screenRatio * screenRatioPR, snapmaticResolution.height() * screenRatio * screenRatioPR), Qt::AlignLeft | Qt::TextWordWrap, tr("Avatar Preview Mode\nPress 1 for Default View"));
+    }
+    else if (overlayEnabled) {
+        shownImagePainter.drawImage(3 * screenRatio * screenRatioPR, 3 * screenRatio * screenRatioPR, overlayTempImage, Qt::AutoColor);
+    }
+    shownImagePainter.end();
+#if QT_VERSION >= 0x050600
+    shownImagePixmap.setDevicePixelRatio(screenRatioPR);
+#endif
+    ui->labPicture->setPixmap(shownImagePixmap);
 }
 
 void PictureDialog::crewNameUpdated()
@@ -703,10 +670,8 @@ QString PictureDialog::generatePlayersString()
     SnapmaticPicture *picture = smpic; // used by macro
     const QStringList playersList = plyrsList; // save operation time
     QString plyrsStr;
-    if (playersList.length() >= 1)
-    {
-        for (const QString &player : playersList)
-        {
+    if (playersList.length() >= 1) {
+        for (const QString &player : playersList) {
             const QString playerName = profileDB->getPlayerName(player);
             if (player != playerName) {
                 plyrsStr += ", <a href=\"https://socialclub.rockstargames.com/member/" % playerName % "/" % player % "\">" % playerName % "</a>";
@@ -717,8 +682,7 @@ QString PictureDialog::generatePlayersString()
         }
         plyrsStr.remove(0, 2);
     }
-    else
-    {
+    else {
         plyrsStr = tr("No Players");
     }
     return plyrsStr;
@@ -726,32 +690,27 @@ QString PictureDialog::generatePlayersString()
 
 void PictureDialog::exportSnapmaticPicture()
 {
-    if (rqFullscreen && fullscreenWidget != nullptr)
-    {
+    if (rqFullscreen && fullscreenWidget != nullptr) {
         PictureExport::exportAsPicture(fullscreenWidget, smpic);
     }
-    else
-    {
+    else {
         PictureExport::exportAsPicture(this, smpic);
     }
 }
 
 void PictureDialog::copySnapmaticPicture()
 {
-    if (rqFullscreen && fullscreenWidget != nullptr)
-    {
+    if (rqFullscreen && fullscreenWidget != nullptr) {
         PictureExport::exportAsSnapmatic(fullscreenWidget, smpic);
     }
-    else
-    {
+    else {
         PictureExport::exportAsSnapmatic(this, smpic);
     }
 }
 
 void PictureDialog::on_labPicture_mouseDoubleClicked(Qt::MouseButton button)
 {
-    if (button == Qt::LeftButton)
-    {
+    if (button == Qt::LeftButton) {
 #if QT_VERSION >= 0x060000
         QRect desktopRect = QApplication::screenAt(pos())->geometry();
 #else
@@ -765,8 +724,8 @@ void PictureDialog::on_labPicture_mouseDoubleClicked(Qt::MouseButton button)
         pictureWidget->setWindowFlags(pictureWidget->windowFlags()^Qt::FramelessWindowHint);
 #endif
         pictureWidget->setWindowTitle(windowTitle());
-        pictureWidget->setStyleSheet("QLabel#pictureLabel{background-color: black;}");
-        pictureWidget->setImage(snapmaticPicture, desktopRect);
+        pictureWidget->setStyleSheet("QLabel#pictureLabel{background-color:black;}");
+        pictureWidget->setImage(smpic->getImage(), desktopRect);
         pictureWidget->setModal(true);
 
         fullscreenWidget = pictureWidget;
diff --git a/PictureExport.cpp b/PictureExport.cpp
index 914a113..8101ddd 100644
--- a/PictureExport.cpp
+++ b/PictureExport.cpp
@@ -40,7 +40,6 @@
 
 PictureExport::PictureExport()
 {
-
 }
 
 void PictureExport::exportAsPicture(QWidget *parent, SnapmaticPicture *picture)
@@ -51,30 +50,25 @@ void PictureExport::exportAsPicture(QWidget *parent, SnapmaticPicture *picture)
     // Quality Settings
     settings.beginGroup("Pictures");
     int defaultQuality = 100;
-    QSize defExportSize = QSize(960, 536);
+    QSize defExportSize = SnapmaticPicture::getSnapmaticResolution();
     int customQuality = settings.value("CustomQuality", defaultQuality).toInt();
-    if (customQuality < 1 || customQuality > 100)
-    {
+    if (customQuality < 1 || customQuality > 100) {
         customQuality = 100;
     }
     bool useCustomQuality = settings.value("CustomQualityEnabled", false).toBool();
 
     // Size Settings
     QSize cusExportSize = settings.value("CustomSize", defExportSize).toSize();
-    if (cusExportSize.width() > 3840)
-    {
+    if (cusExportSize.width() > 3840) {
         cusExportSize.setWidth(3840);
     }
-    else if (cusExportSize.height() > 2160)
-    {
+    else if (cusExportSize.height() > 2160) {
         cusExportSize.setHeight(2160);
     }
-    if (cusExportSize.width() < 1)
-    {
+    if (cusExportSize.width() < 1) {
         cusExportSize.setWidth(1);
     }
-    else if (cusExportSize.height() < 1)
-    {
+    else if (cusExportSize.height() < 1) {
         cusExportSize.setHeight(1);
     }
     QString sizeMode = settings.value("ExportSizeMode", "Default").toString();
@@ -113,54 +107,42 @@ fileDialogPreSave: //Work?
     QString newPictureFileName = getPictureFileName(picture) % defaultExportFormat;
     fileDialog.selectFile(newPictureFileName);
 
-    if (fileDialog.exec())
-    {
+    if (fileDialog.exec()) {
         QStringList selectedFiles = fileDialog.selectedFiles();
-        if (selectedFiles.length() == 1)
-        {
+        if (selectedFiles.length() == 1) {
             QString saveFileFormat;
             QString selectedFile = selectedFiles.at(0);
 
-            if (selectedFile.right(4) == ".jpg")
-            {
+            if (selectedFile.right(4) == ".jpg") {
                 saveFileFormat = "JPEG";
             }
-            else if (selectedFile.right(4) == ".jpeg")
-            {
+            else if (selectedFile.right(4) == ".jpeg") {
                 saveFileFormat = "JPEG";
             }
-            else if (selectedFile.right(4) == ".png")
-            {
+            else if (selectedFile.right(4) == ".png") {
                 saveFileFormat = "PNG";
             }
-            else if (selectedFile.right(7) == ".suffix")
-            {
-                if (fileDialog.selectedNameFilter() == "JPEG picture (*.jpg)")
-                {
+            else if (selectedFile.right(7) == ".suffix") {
+                if (fileDialog.selectedNameFilter() == "JPEG picture (*.jpg)") {
                     selectedFile.replace(".suffix", ".jpg");
                 }
-                else if (fileDialog.selectedNameFilter() == "Portable Network Graphics (*.png)")
-                {
+                else if (fileDialog.selectedNameFilter() == "Portable Network Graphics (*.png)") {
                     selectedFile.replace(".suffix", ".png");
                 }
-                else
-                {
+                else {
                     selectedFile.replace(".suffix", ".jpg");
                 }
             }
 
-            if (QFile::exists(selectedFile))
-            {
-                if (QMessageBox::No == QMessageBox::warning(parent, PictureDialog::tr("Export as Picture"), PictureDialog::tr("Overwrite %1 with current Snapmatic picture?").arg("\""+selectedFile+"\""), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes))
-                {
+            if (QFile::exists(selectedFile)) {
+                if (QMessageBox::No == QMessageBox::warning(parent, PictureDialog::tr("Export as Picture"), PictureDialog::tr("Overwrite %1 with current Snapmatic picture?").arg("\""+selectedFile+"\""), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes)) {
                     goto fileDialogPreSave; //Work?
                 }
             }
 
             // Scale Picture
             QImage exportPicture = picture->getImage();
-            if (sizeMode == "Desktop")
-            {
+            if (sizeMode == "Desktop") {
 #if QT_VERSION >= 0x050000
                 qreal screenRatioPR = AppEnv::screenRatioPR();
                 QRect desktopResolution = QApplication::primaryScreen()->geometry();
@@ -173,8 +155,7 @@ fileDialogPreSave: //Work?
 #endif
                 exportPicture = exportPicture.scaled(desktopSizeWidth, desktopSizeHeight, aspectRatio, Qt::SmoothTransformation);
             }
-            else if (sizeMode == "Custom")
-            {
+            else if (sizeMode == "Custom") {
                 exportPicture = exportPicture.scaled(cusExportSize, aspectRatio, Qt::SmoothTransformation);
             }
 
@@ -185,32 +166,26 @@ fileDialogPreSave: //Work?
 #else
             QFile *picFile = new QFile(selectedFile);
 #endif
-            if (picFile->open(QIODevice::WriteOnly))
-            {
+            if (picFile->open(QIODevice::WriteOnly)) {
                 isSaved = exportPicture.save(picFile, saveFileFormat.toStdString().c_str(), useCustomQuality ? customQuality : defaultQuality);
 #if QT_VERSION >= 0x050000
-                if (isSaved)
-                {
+                if (isSaved) {
                     isSaved = picFile->commit();
                 }
-                else
-                {
+                else {
                     errorId = 1;
                 }
 #else
                 picFile->close();
 #endif
             }
-            else
-            {
+            else {
                 errorId = 2;
             }
             delete picFile;
 
-            if (!isSaved)
-            {
-                switch (errorId)
-                {
+            if (!isSaved) {
+                switch (errorId) {
                 case 0:
                     QMessageBox::warning(parent, PictureDialog::tr("Export as Picture"), PictureDialog::tr("Failed to export the picture because the system occurred a write failure"));
                     break;
@@ -226,8 +201,7 @@ fileDialogPreSave: //Work?
                 goto fileDialogPreSave; //Work?
             }
         }
-        else
-        {
+        else {
             QMessageBox::warning(parent, PictureDialog::tr("Export as Picture"), PictureDialog::tr("No valid file is selected"));
             goto fileDialogPreSave; //Work?
         }
@@ -263,7 +237,9 @@ fileDialogPreSave: //Work?
 
     QStringList filters;
     filters << PictureDialog::tr("GTA V Export (*.g5e)");
+#ifndef GTA5SYNC_FLATPAK
     filters << PictureDialog::tr("GTA V Raw Export (*.auto)");
+#endif
     filters << PictureDialog::tr("Snapmatic pictures (PGTA*)");
     fileDialog.setNameFilters(filters);
 
@@ -274,58 +250,48 @@ fileDialogPreSave: //Work?
     fileDialog.restoreGeometry(settings.value(parent->objectName() % "+Geometry", "").toByteArray());
     fileDialog.selectFile(QString(picture->getExportPictureFileName() % ".g5e"));
 
-    if (fileDialog.exec())
-    {
+    if (fileDialog.exec()) {
         QStringList selectedFiles = fileDialog.selectedFiles();
-        if (selectedFiles.length() == 1)
-        {
+        if (selectedFiles.length() == 1) {
             QString selectedFile = selectedFiles.at(0);
             bool isAutoExt = false;
-            if (selectedFile.right(5) == ".auto")
-            {
+#ifndef GTA5SYNC_FLATPAK
+            if (selectedFile.right(5) == ".auto") {
                 isAutoExt = true;
                 QString dirPath = QFileInfo(selectedFile).dir().path();
                 QString stockFileName = sgdFileInfo.fileName();
                 selectedFile = dirPath % "/" % stockFileName;
             }
-            else if (selectedFile.right(4) == ".rem")
-            {
+#endif
+            if (selectedFile.right(4) == ".rem") {
                 selectedFile.remove(selectedFile.length() - 4, 4);
             }
 
-            if (QFile::exists(selectedFile))
-            {
-                if (QMessageBox::No == QMessageBox::warning(parent, PictureDialog::tr("Export as Snapmatic"), PictureDialog::tr("Overwrite %1 with current Snapmatic picture?").arg("\""+selectedFile+"\""), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes))
-                {
+            if (QFile::exists(selectedFile)) {
+                if (QMessageBox::No == QMessageBox::warning(parent, PictureDialog::tr("Export as Snapmatic"), PictureDialog::tr("Overwrite %1 with current Snapmatic picture?").arg("\""+selectedFile+"\""), QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes)) {
                     goto fileDialogPreSave; //Work?
                 }
             }
 
-            if (selectedFile.right(4) == ".g5e")
-            {
+            if (selectedFile.right(4) == ".g5e") {
                 bool isExported = picture->exportPicture(selectedFile, SnapmaticFormat::G5E_Format);
-                if (!isExported)
-                {
+                if (!isExported) {
                     QMessageBox::warning(parent, PictureDialog::tr("Export as Snapmatic"), PictureDialog::tr("Failed to export current Snapmatic picture"));
                     goto fileDialogPreSave; //Work?
                 }
             }
-            else
-            {
+            else {
                 bool isCopied = picture->exportPicture(selectedFile, SnapmaticFormat::PGTA_Format);
-                if (!isCopied)
-                {
+                if (!isCopied) {
                     QMessageBox::warning(parent, PictureDialog::tr("Export as Snapmatic"), PictureDialog::tr("Failed to export current Snapmatic picture"));
                     goto fileDialogPreSave; //Work?
                 }
-                else
-                {
+                else {
                     if (isAutoExt) QMessageBox::information(parent, PictureDialog::tr("Export as Snapmatic"), PictureDialog::tr("Exported Snapmatic to \"%1\" because of using the .auto extension.").arg(selectedFile));
                 }
             }
         }
-        else
-        {
+        else {
             QMessageBox::warning(parent, PictureDialog::tr("Export as Snapmatic"), PictureDialog::tr("No valid file is selected"));
             goto fileDialogPreSave; //Work?
         }
diff --git a/PictureWidget.cpp b/PictureWidget.cpp
index 889b28c..44ad3f6 100644
--- a/PictureWidget.cpp
+++ b/PictureWidget.cpp
@@ -1,6 +1,6 @@
 /*****************************************************************************
 * gta5view Grand Theft Auto V Profile Viewer
-* Copyright (C) 2016-2017 Syping
+* Copyright (C) 2016-2020 Syping
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
@@ -19,13 +19,12 @@
 #include "PictureDialog.h"
 #include "PictureWidget.h"
 #include "UiModLabel.h"
+#include "AppEnv.h"
 #include <QApplication>
 #include <QHBoxLayout>
 #include <QKeyEvent>
 #include <QPixmap>
 #include <QEvent>
-#include <QDebug>
-
 #if QT_VERSION < 0x060000
 #include <QDesktopWidget>
 #endif
@@ -63,12 +62,10 @@ PictureWidget::~PictureWidget()
 
 bool PictureWidget::eventFilter(QObject *obj, QEvent *ev)
 {
-    if (obj == this)
-    {
-        if (ev->type() == QEvent::KeyPress)
-        {
+    if (obj == this) {
+        if (ev->type() == QEvent::KeyPress) {
             QKeyEvent *keyEvent = (QKeyEvent*)ev;
-            switch (keyEvent->key()){
+            switch (keyEvent->key()) {
             case Qt::Key_Left:
                 emit previousPictureRequested();
                 break;
@@ -83,36 +80,49 @@ bool PictureWidget::eventFilter(QObject *obj, QEvent *ev)
 
 void PictureWidget::pictureDoubleClicked(Qt::MouseButton button)
 {
-    if (button == Qt::LeftButton)
-    {
+    if (button == Qt::LeftButton) {
         close();
     }
 }
 
 void PictureWidget::setImage(QImage image_, QRect rec)
 {
+    const qreal screenRatioPR = AppEnv::screenRatioPR();
     image = image_;
-    pictureLabel->setPixmap(QPixmap::fromImage(image.scaled(rec.width(), rec.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation)));
+    QPixmap pixmap = QPixmap::fromImage(image.scaled(rec.width() * screenRatioPR, rec.height() * screenRatioPR, Qt::KeepAspectRatio, Qt::SmoothTransformation));
+#if QT_VERSION >= 0x050600
+    pixmap.setDevicePixelRatio(AppEnv::screenRatioPR());
+#endif
+    pictureLabel->setPixmap(pixmap);
 }
 
 void PictureWidget::setImage(QImage image_)
 {
+    const qreal screenRatioPR = AppEnv::screenRatioPR();
     image = image_;
-    pictureLabel->setPixmap(QPixmap::fromImage(image.scaled(geometry().width(), geometry().height(), Qt::KeepAspectRatio, Qt::SmoothTransformation)));
+    QPixmap pixmap = QPixmap::fromImage(image.scaled(geometry().width() * screenRatioPR, geometry().height() * screenRatioPR, Qt::KeepAspectRatio, Qt::SmoothTransformation));
+#if QT_VERSION >= 0x050600
+    pixmap.setDevicePixelRatio(screenRatioPR);
+#endif
+    pictureLabel->setPixmap(pixmap);
 }
 
 void PictureWidget::updateWindowSize(int screenID)
 {
 #if QT_VERSION >= 0x060000
     Q_UNUSED(screenID)
+    const qreal screenRatioPR = AppEnv::screenRatioPR();
     QRect desktopRect = QApplication::screenAt(pos())->geometry();
     move(desktopRect.x(), desktopRect.y());
     resize(desktopRect.width(), desktopRect.height());
     showFullScreen();
-    pictureLabel->setPixmap(QPixmap::fromImage(image.scaled(desktopRect.width(), desktopRect.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation)));
+    QPixmap pixmap = QPixmap::fromImage(image.scaled(geometry().width() * screenRatioPR, geometry().height() * screenRatioPR, Qt::KeepAspectRatio, Qt::SmoothTransformation));
+#if QT_VERSION >= 0x050600
+    pixmap.setDevicePixelRatio(screenRatioPR);
+#endif
+    pictureLabel->setPixmap(pixmap);
 #else
-    if (screenID == QApplication::desktop()->screenNumber(this))
-    {
+    if (screenID == QApplication::desktop()->screenNumber(this)) {
         QRect desktopRect = QApplication::desktop()->screenGeometry(this);
         move(desktopRect.x(), desktopRect.y());
         resize(desktopRect.width(), desktopRect.height());
diff --git a/ProfileInterface.cpp b/ProfileInterface.cpp
index ad8d73a..8dd57e5 100644
--- a/ProfileInterface.cpp
+++ b/ProfileInterface.cpp
@@ -262,8 +262,7 @@ void ProfileInterface::loadingProgress(int value, int maximum)
 void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
 {
     ProfileWidget *proWidget = qobject_cast<ProfileWidget*>(widget);
-    if (widgets.contains(proWidget))
-    {
+    if (widgets.contains(proWidget)) {
         QString widgetKey = widgets[proWidget];
         QStringList widgetsKeyList = widgets.values();
         QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
@@ -283,8 +282,7 @@ void ProfileInterface::insertSnapmaticIPI(QWidget *widget)
 void ProfileInterface::insertSavegameIPI(QWidget *widget)
 {
     ProfileWidget *proWidget = qobject_cast<ProfileWidget*>(widget);
-    if (widgets.contains(proWidget))
-    {
+    if (widgets.contains(proWidget)) {
         QString widgetKey = widgets[proWidget];
         QStringList widgetsKeyList = widgets.values();
         QStringList savegameKeyList = widgetsKeyList.filter("SGD", Qt::CaseSensitive);
@@ -305,8 +303,7 @@ void ProfileInterface::dialogNextPictureRequested(QWidget *dialog)
 {
     PictureDialog *picDialog = qobject_cast<PictureDialog*>(dialog);
     ProfileWidget *proWidget = qobject_cast<ProfileWidget*>(sender());
-    if (widgets.contains(proWidget))
-    {
+    if (widgets.contains(proWidget)) {
         QString widgetKey = widgets[proWidget];
         QStringList widgetsKeyList = widgets.values();
         QStringList pictureKeyList = widgetsKeyList.filter("PIC", Qt::CaseSensitive);
@@ -1358,10 +1355,10 @@ void ProfileInterface::exportSelected()
                 QString ExportPreSpan;
                 QString ExportPostSpan;
 #ifdef Q_OS_WIN
-                ExportPreSpan = "<span style=\"color: #003399; font-size: 12pt\">";
+                ExportPreSpan = "<span style=\"color:#003399;font-size:12pt\">";
                 ExportPostSpan = "</span>";
 #else
-                ExportPreSpan = "<span style=\"font-weight: bold\">";
+                ExportPreSpan = "<span style=\"font-weight:bold\">";
                 ExportPostSpan = "</span>";
 #endif
 
diff --git a/ProfileLoader.cpp b/ProfileLoader.cpp
index 78482d2..ea37134 100644
--- a/ProfileLoader.cpp
+++ b/ProfileLoader.cpp
@@ -1,6 +1,6 @@
 /*****************************************************************************
 * gta5view Grand Theft Auto V Profile Viewer
-* Copyright (C) 2016-2017 Syping
+* Copyright (C) 2016-2020 Syping
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
@@ -30,7 +30,6 @@
 
 ProfileLoader::ProfileLoader(QString profileFolder, CrewDatabase *crewDB, QObject *parent) : QThread(parent), profileFolder(profileFolder), crewDB(crewDB)
 {
-
 }
 
 void ProfileLoader::run()
@@ -50,8 +49,7 @@ void ProfileLoader::run()
 
     SavegameFiles.removeDuplicates();
     SnapmaticPics.removeDuplicates();
-    for (QString BackupFile : BackupFiles)
-    {
+    for (const QString &BackupFile : BackupFiles) {
         SavegameFiles.removeAll(BackupFile);
         SnapmaticPics.removeAll(BackupFile);
     }
@@ -60,36 +58,29 @@ void ProfileLoader::run()
 
     // Loading pictures and savegames
     emit loadingProgress(curFile, maximumV);
-    for (QString SavegameFile : SavegameFiles)
-    {
+    for (const QString &SavegameFile : SavegameFiles) {
         emit loadingProgress(curFile, maximumV);
-        QString sgdPath = profileFolder % "/" % SavegameFile;
+        const QString sgdPath = profileFolder % "/" % SavegameFile;
         SavegameData *savegame = new SavegameData(sgdPath);
-        if (savegame->readingSavegame())
-        {
+        if (savegame->readingSavegame()) {
             emit savegameLoaded(savegame, sgdPath);
         }
         curFile++;
     }
-    for (QString SnapmaticPic : SnapmaticPics)
-    {
+    for (const QString &SnapmaticPic : SnapmaticPics) {
         emit loadingProgress(curFile, maximumV);
-        QString picturePath = profileFolder % "/" % SnapmaticPic;
+        const QString picturePath = profileFolder % "/" % SnapmaticPic;
         SnapmaticPicture *picture = new SnapmaticPicture(picturePath);
-        if (picture->readingPicture(true))
-        {
-            if (picture->isFormatSwitched())
-            {
+        if (picture->readingPicture(true)) {
+            if (picture->isFormatSwitched()) {
                 picture->setSnapmaticFormat(SnapmaticFormat::PGTA_Format);
-                if (picture->exportPicture(picturePath, SnapmaticFormat::PGTA_Format))
-                {
+                if (picture->exportPicture(picturePath, SnapmaticFormat::PGTA_Format)) {
                     emit pictureFixed(picture);
                 }
             }
             emit pictureLoaded(picture);
             int crewNumber = picture->getSnapmaticProperties().crewID;
-            if (!crewList.contains(crewNumber))
-            {
+            if (!crewList.contains(crewNumber)) {
                 crewList += crewNumber;
             }
         }
@@ -98,8 +89,7 @@ void ProfileLoader::run()
 
     // adding found crews
     crewDB->setAddingCrews(true);
-    for (int crewID : crewList)
-    {
+    for (int crewID : crewList) {
         crewDB->addCrew(crewID);
     }
     crewDB->setAddingCrews(false);
@@ -107,10 +97,9 @@ void ProfileLoader::run()
 
 void ProfileLoader::preloaded()
 {
-
 }
 
 void ProfileLoader::loaded()
 {
-
 }
+
diff --git a/SnapmaticPicture.cpp b/SnapmaticPicture.cpp
index 8415fc3..b732703 100644
--- a/SnapmaticPicture.cpp
+++ b/SnapmaticPicture.cpp
@@ -376,15 +376,12 @@ QString SnapmaticPicture::getLastStep(bool readable)
 
 }
 
-QImage SnapmaticPicture::getImage(bool fastLoad)
+QImage SnapmaticPicture::getImage()
 {
-    Q_UNUSED(fastLoad)
-    if (cacheEnabled)
-    {
+    if (cacheEnabled) {
         return cachePicture;
     }
-    else
-    {
+    else {
         return QImage::fromData(p_ragePhoto.photoData(), "JPEG");
     }
     return QImage();
diff --git a/SnapmaticPicture.h b/SnapmaticPicture.h
index 4665cb5..b5571ce 100644
--- a/SnapmaticPicture.h
+++ b/SnapmaticPicture.h
@@ -62,7 +62,7 @@ public:
     bool readingPicture(bool cacheEnabled = false);
     bool isPicOk(); // Please use isPictureOk instead
     void clearCache();
-    QImage getImage(bool fastLoad = false);
+    QImage getImage();
     QByteArray getPictureStream();
     QString getLastStep(bool readable = true);
     QString getPictureStr();
diff --git a/SnapmaticWidget.cpp b/SnapmaticWidget.cpp
index e0ec684..e983951 100644
--- a/SnapmaticWidget.cpp
+++ b/SnapmaticWidget.cpp
@@ -31,9 +31,9 @@
 #include "config.h"
 #include <QStringBuilder>
 #include <QMessageBox>
+#include <QPainter>
 #include <QPixmap>
 #include <QTimer>
-#include <QDebug>
 #include <QMenu>
 #include <QFile>
 
@@ -76,19 +76,32 @@ void SnapmaticWidget::setSnapmaticPicture(SnapmaticPicture *picture)
     QObject::connect(picture, SIGNAL(updated()), this, SLOT(snapmaticUpdated()));
     QObject::connect(picture, SIGNAL(customSignal(QString)), this, SLOT(customSignal(QString)));
 
-    qreal screenRatio = AppEnv::screenRatio();
-    qreal screenRatioPR = AppEnv::screenRatioPR();
+    const qreal screenRatio = AppEnv::screenRatio();
+    const qreal screenRatioPR = AppEnv::screenRatioPR();
+    const QSize renderResolution(48 * screenRatio * screenRatioPR, 27 * screenRatio * screenRatioPR);
     ui->labPicture->setFixedSize(48 * screenRatio, 27 * screenRatio);
-
     ui->labPicture->setScaledContents(true);
 
-    QPixmap SnapmaticPixmap = QPixmap::fromImage(picture->getImage().scaled(ui->labPicture->width() * screenRatioPR, ui->labPicture->height() * screenRatioPR, Qt::IgnoreAspectRatio, Qt::SmoothTransformation), Qt::AutoColor);
+    QPixmap renderPixmap(renderResolution);
+    renderPixmap.fill(Qt::transparent);
+    QPainter renderPainter(&renderPixmap);
+    const QImage renderImage = picture->getImage().scaled(renderResolution, Qt::KeepAspectRatio, Qt::SmoothTransformation);
+    if (renderImage.width() < renderResolution.width()) {
+        renderPainter.drawImage((renderResolution.width() - renderImage.width()) / 2, 0, renderImage, Qt::AutoColor);
+    }
+    else if (renderImage.height() < renderResolution.height()) {
+        renderPainter.drawImage(0, (renderResolution.height() - renderImage.height()) / 2, renderImage, Qt::AutoColor);
+    }
+    else {
+        renderPainter.drawImage(0, 0, renderImage, Qt::AutoColor);
+    }
+    renderPainter.end();
 #if QT_VERSION >= 0x050600
-    SnapmaticPixmap.setDevicePixelRatio(screenRatioPR);
+    renderPixmap.setDevicePixelRatio(screenRatioPR);
 #endif
 
     ui->labPicStr->setText(smpic->getPictureStr() % "\n" % smpic->getPictureTitl());
-    ui->labPicture->setPixmap(SnapmaticPixmap);
+    ui->labPicture->setPixmap(renderPixmap);
 
     picture->clearCache();
 
diff --git a/res/gta5sync.ts b/res/gta5sync.ts
index ec272b6..8d59756 100644
--- a/res/gta5sync.ts
+++ b/res/gta5sync.ts
@@ -191,22 +191,22 @@ Pictures and Savegames</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Snapmatic Image Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
         <source>Patching of Snapmatic Image failed because of I/O Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Patching of Snapmatic Image failed because of Image Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -367,14 +367,14 @@ Pictures and Savegames</source>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="195"/>
-        <location filename="../ProfileInterface.cpp" line="725"/>
+        <location filename="../ProfileInterface.cpp" line="722"/>
         <source>Custom Avatar</source>
         <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="218"/>
-        <location filename="../ProfileInterface.cpp" line="744"/>
+        <location filename="../ProfileInterface.cpp" line="741"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation type="unfinished"></translation>
@@ -721,26 +721,26 @@ Y: %2</source>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Found: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="406"/>
         <location filename="../OptionsDialog.ui" line="429"/>
-        <location filename="../OptionsDialog.cpp" line="640"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="656"/>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="669"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
-        <location filename="../OptionsDialog.cpp" line="677"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="643"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="672"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
+        <location filename="../OptionsDialog.cpp" line="680"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Language: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -761,7 +761,7 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="598"/>
+        <location filename="../OptionsDialog.cpp" line="601"/>
         <source>Participate in %1 User Statistics</source>
         <translation type="unfinished"></translation>
     </message>
@@ -797,8 +797,8 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="614"/>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="617"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Participation ID: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -916,62 +916,62 @@ Y: %2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="496"/>
+        <location filename="../OptionsDialog.cpp" line="499"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="504"/>
-        <location filename="../OptionsDialog.cpp" line="508"/>
-        <location filename="../OptionsDialog.cpp" line="510"/>
+        <location filename="../OptionsDialog.cpp" line="507"/>
+        <location filename="../OptionsDialog.cpp" line="511"/>
+        <location filename="../OptionsDialog.cpp" line="513"/>
         <source>Profile: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="599"/>
+        <location filename="../OptionsDialog.cpp" line="602"/>
         <source>View %1 User Statistics Online</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Not registered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
         <source>OS defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Steam defined</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1013,183 +1013,181 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1690"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Export as &amp;Picture...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1691"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1684"/>
+        <location filename="../ProfileInterface.cpp" line="1681"/>
         <source>&amp;Edit Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1685"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
         <source>&amp;Overwrite Image...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1687"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>Open &amp;Map Viewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1688"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>Open &amp;JSON Editor...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="496"/>
+        <location filename="../PictureDialog.cpp" line="488"/>
         <source>Key 1 - Avatar Preview Mode
 Key 2 - Toggle Overlay
 Arrow Keys - Navigate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Snapmatic Picture Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Failed at %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="722"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="686"/>
         <location filename="../SnapmaticEditor.cpp" line="246"/>
         <source>No Players</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="698"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="665"/>
         <source>No Crew</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
         <source>Unknown Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="656"/>
+        <location filename="../PictureDialog.cpp" line="620"/>
         <source>Avatar Preview Mode
 Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="99"/>
+        <location filename="../PictureExport.cpp" line="93"/>
         <source>Export as Picture...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="100"/>
-        <location filename="../PictureExport.cpp" line="262"/>
+        <location filename="../PictureExport.cpp" line="94"/>
+        <location filename="../PictureExport.cpp" line="236"/>
         <source>Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="103"/>
+        <location filename="../PictureExport.cpp" line="97"/>
         <source>JPEG Graphics (*.jpg *.jpeg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="104"/>
+        <location filename="../PictureExport.cpp" line="98"/>
         <source>Portable Network Graphics (*.png)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="215"/>
-        <location filename="../PictureExport.cpp" line="218"/>
-        <location filename="../PictureExport.cpp" line="221"/>
-        <location filename="../PictureExport.cpp" line="224"/>
-        <location filename="../PictureExport.cpp" line="231"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="190"/>
+        <location filename="../PictureExport.cpp" line="193"/>
+        <location filename="../PictureExport.cpp" line="196"/>
+        <location filename="../PictureExport.cpp" line="199"/>
+        <location filename="../PictureExport.cpp" line="205"/>
         <source>Export as Picture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="298"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="271"/>
         <source>Overwrite %1 with current Snapmatic picture?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="215"/>
+        <location filename="../PictureExport.cpp" line="190"/>
         <source>Failed to export the picture because the system occurred a write failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="218"/>
+        <location filename="../PictureExport.cpp" line="193"/>
         <source>Failed to export the picture because the format detection failures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="221"/>
+        <location filename="../PictureExport.cpp" line="196"/>
         <source>Failed to export the picture because the file can&apos;t be written</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="224"/>
+        <location filename="../PictureExport.cpp" line="199"/>
         <source>Failed to export the picture because of an unknown reason</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="231"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="205"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>No valid file is selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="261"/>
+        <location filename="../PictureExport.cpp" line="235"/>
         <source>Export as Snapmatic...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="265"/>
+        <location filename="../PictureExport.cpp" line="239"/>
         <source>GTA V Export (*.g5e)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="266"/>
+        <location filename="../PictureExport.cpp" line="241"/>
         <source>GTA V Raw Export (*.auto)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="267"/>
+        <location filename="../PictureExport.cpp" line="243"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="298"/>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
-        <location filename="../PictureExport.cpp" line="323"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="271"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
+        <location filename="../PictureExport.cpp" line="290"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>Export as Snapmatic</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
         <source>Failed to export current Snapmatic picture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="323"/>
+        <location filename="../PictureExport.cpp" line="290"/>
         <source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1295,23 +1293,23 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="477"/>
         <location filename="../ImportDialog.cpp" line="804"/>
-        <location filename="../ProfileInterface.cpp" line="500"/>
-        <location filename="../ProfileInterface.cpp" line="501"/>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="566"/>
-        <location filename="../ProfileInterface.cpp" line="600"/>
-        <location filename="../ProfileInterface.cpp" line="642"/>
-        <location filename="../ProfileInterface.cpp" line="677"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
-        <location filename="../ProfileInterface.cpp" line="947"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
-        <location filename="../ProfileInterface.cpp" line="990"/>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="497"/>
+        <location filename="../ProfileInterface.cpp" line="498"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="563"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
+        <location filename="../ProfileInterface.cpp" line="987"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Import...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1328,14 +1326,14 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="520"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
         <source>All image files (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="489"/>
         <location filename="../ImportDialog.cpp" line="816"/>
-        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
         <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation type="unfinished"></translation>
@@ -1343,14 +1341,14 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
         <source>Can&apos;t import %1 because file can&apos;t be open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="518"/>
         <location filename="../ImportDialog.cpp" line="845"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1365,189 +1363,189 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>Snapmatic Loader</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <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="516"/>
+        <location filename="../ProfileInterface.cpp" line="513"/>
         <source>Importable files (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="514"/>
         <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../ProfileInterface.cpp" line="515"/>
         <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
         <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="567"/>
-        <location filename="../ProfileInterface.cpp" line="584"/>
+        <location filename="../ProfileInterface.cpp" line="564"/>
+        <location filename="../ProfileInterface.cpp" line="581"/>
         <source>Import file %1 of %2 files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="600"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
         <source>Import failed with...
 
 %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
         <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
         <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="947"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
         <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1006"/>
+        <location filename="../ProfileInterface.cpp" line="1003"/>
         <source>Prepare Content for Import...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1331"/>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
-        <location filename="../ProfileInterface.cpp" line="1414"/>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1328"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
+        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
         <source>Export selected...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1354"/>
-        <location filename="../ProfileInterface.cpp" line="1372"/>
+        <location filename="../ProfileInterface.cpp" line="1351"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1355"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1352"/>
+        <location filename="../ProfileInterface.cpp" line="1374"/>
         <source>JPG pictures only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1356"/>
-        <location filename="../ProfileInterface.cpp" line="1381"/>
+        <location filename="../ProfileInterface.cpp" line="1353"/>
+        <location filename="../ProfileInterface.cpp" line="1378"/>
         <source>GTA Snapmatic only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
         <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1415"/>
+        <location filename="../ProfileInterface.cpp" line="1412"/>
         <source>Initialising export...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
         <source>Export failed with...
 
 %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>Remove selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
         <source>No Snapmatic pictures are selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1555,81 +1553,81 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify as Avatar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2124"/>
-        <location filename="../ProfileInterface.cpp" line="2227"/>
-        <location filename="../ProfileInterface.cpp" line="2358"/>
-        <location filename="../ProfileInterface.cpp" line="2464"/>
+        <location filename="../ProfileInterface.cpp" line="2121"/>
+        <location filename="../ProfileInterface.cpp" line="2224"/>
+        <location filename="../ProfileInterface.cpp" line="2355"/>
+        <location filename="../ProfileInterface.cpp" line="2461"/>
         <source>Patch selected...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2125"/>
-        <location filename="../ProfileInterface.cpp" line="2144"/>
-        <location filename="../ProfileInterface.cpp" line="2228"/>
-        <location filename="../ProfileInterface.cpp" line="2247"/>
-        <location filename="../ProfileInterface.cpp" line="2359"/>
-        <location filename="../ProfileInterface.cpp" line="2378"/>
-        <location filename="../ProfileInterface.cpp" line="2465"/>
-        <location filename="../ProfileInterface.cpp" line="2484"/>
+        <location filename="../ProfileInterface.cpp" line="2122"/>
+        <location filename="../ProfileInterface.cpp" line="2141"/>
+        <location filename="../ProfileInterface.cpp" line="2225"/>
+        <location filename="../ProfileInterface.cpp" line="2244"/>
+        <location filename="../ProfileInterface.cpp" line="2356"/>
+        <location filename="../ProfileInterface.cpp" line="2375"/>
+        <location filename="../ProfileInterface.cpp" line="2462"/>
+        <location filename="../ProfileInterface.cpp" line="2481"/>
         <source>Patch file %1 of %2 files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
@@ -1721,45 +1719,45 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1757"/>
+        <location filename="../ProfileInterface.cpp" line="1754"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1723"/>
-        <location filename="../ProfileInterface.cpp" line="1758"/>
-        <location filename="../ProfileInterface.cpp" line="1788"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1755"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>&amp;Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1724"/>
-        <location filename="../ProfileInterface.cpp" line="1759"/>
-        <location filename="../ProfileInterface.cpp" line="1789"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1756"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1762"/>
-        <location filename="../ProfileInterface.cpp" line="1792"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Select</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1791"/>
+        <source>&amp;Deselect</source>
+        <translation type="unfinished"></translation>
+    </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1765"/>
         <location filename="../ProfileInterface.cpp" line="1794"/>
-        <source>&amp;Deselect</source>
+        <source>Select &amp;All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1768"/>
         <location filename="../ProfileInterface.cpp" line="1797"/>
-        <source>Select &amp;All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ProfileInterface.cpp" line="1771"/>
-        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1857,9 +1855,9 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="191"/>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Snapmatic Properties</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1950,9 +1948,9 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1962,25 +1960,25 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation type="unfinished"></translation>
@@ -2144,8 +2142,8 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../SnapmaticWidget.ui" line="152"/>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Delete picture</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2155,82 +2153,82 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1677"/>
-        <location filename="../ProfileInterface.cpp" line="1714"/>
-        <location filename="../ProfileInterface.cpp" line="1779"/>
+        <location filename="../ProfileInterface.cpp" line="1674"/>
+        <location filename="../ProfileInterface.cpp" line="1711"/>
+        <location filename="../ProfileInterface.cpp" line="1776"/>
         <source>Edi&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1679"/>
-        <location filename="../ProfileInterface.cpp" line="1720"/>
-        <location filename="../ProfileInterface.cpp" line="1785"/>
+        <location filename="../ProfileInterface.cpp" line="1676"/>
+        <location filename="../ProfileInterface.cpp" line="1717"/>
+        <location filename="../ProfileInterface.cpp" line="1782"/>
         <source>Show &amp;In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1682"/>
-        <location filename="../ProfileInterface.cpp" line="1721"/>
-        <location filename="../ProfileInterface.cpp" line="1786"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1718"/>
+        <location filename="../ProfileInterface.cpp" line="1783"/>
         <source>Hide &amp;In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1689"/>
+        <location filename="../ProfileInterface.cpp" line="1686"/>
         <source>&amp;Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1692"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
-        <location filename="../ProfileInterface.cpp" line="1727"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
         <source>&amp;Select</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ProfileInterface.cpp" line="1697"/>
+        <location filename="../ProfileInterface.cpp" line="1726"/>
+        <source>&amp;Deselect</source>
+        <translation type="unfinished"></translation>
+    </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1700"/>
         <location filename="../ProfileInterface.cpp" line="1729"/>
-        <source>&amp;Deselect</source>
+        <source>Select &amp;All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1703"/>
         <location filename="../ProfileInterface.cpp" line="1732"/>
-        <source>Select &amp;All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
-        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
         <source>Are you sure to delete %1 from your Snapmatic pictures?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Failed at deleting %1 from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2393,7 +2391,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../OptionsDialog.cpp" line="748"/>
         <location filename="../UserInterface.cpp" line="194"/>
         <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
@@ -2411,43 +2409,43 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="346"/>
-        <location filename="../ProfileInterface.cpp" line="1718"/>
-        <location filename="../ProfileInterface.cpp" line="1783"/>
+        <location filename="../ProfileInterface.cpp" line="1715"/>
+        <location filename="../ProfileInterface.cpp" line="1780"/>
         <source>Change &amp;Title...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="354"/>
-        <location filename="../ProfileInterface.cpp" line="1717"/>
-        <location filename="../ProfileInterface.cpp" line="1782"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Change &amp;Crew...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="362"/>
-        <location filename="../ProfileInterface.cpp" line="1715"/>
-        <location filename="../ProfileInterface.cpp" line="1780"/>
+        <location filename="../ProfileInterface.cpp" line="1712"/>
+        <location filename="../ProfileInterface.cpp" line="1777"/>
         <source>&amp;Qualify as Avatar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="370"/>
-        <location filename="../ProfileInterface.cpp" line="1716"/>
-        <location filename="../ProfileInterface.cpp" line="1781"/>
+        <location filename="../ProfileInterface.cpp" line="1713"/>
+        <location filename="../ProfileInterface.cpp" line="1778"/>
         <source>Change &amp;Players...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Show In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Hide In-game</source>
         <translation type="unfinished"></translation>
     </message>
diff --git a/res/gta5sync_de.ts b/res/gta5sync_de.ts
index e42bbd1..4154684 100644
--- a/res/gta5sync_de.ts
+++ b/res/gta5sync_de.ts
@@ -176,10 +176,10 @@ Snapmatic Bilder und Spielständen</translation>
 <context>
     <name>ImageEditorDialog</name>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Snapmatic Image Editor</source>
         <translation>Snapmatic Bild Editor</translation>
     </message>
@@ -209,14 +209,14 @@ Snapmatic Bilder und Spielständen</translation>
         <translation>S&amp;chließen</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
         <source>Patching of Snapmatic Image failed because of I/O Error</source>
         <translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Patching of Snapmatic Image failed because of Image Error</source>
         <translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation>
     </message>
@@ -391,14 +391,14 @@ Snapmatic Bilder und Spielständen</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="195"/>
-        <location filename="../ProfileInterface.cpp" line="725"/>
+        <location filename="../ProfileInterface.cpp" line="722"/>
         <source>Custom Avatar</source>
         <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
         <translation>Eigener Avatar</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="218"/>
-        <location filename="../ProfileInterface.cpp" line="744"/>
+        <location filename="../ProfileInterface.cpp" line="741"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>Eigenes Bild</translation>
@@ -749,26 +749,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Found: %1</source>
         <translation>Gefunden: %1</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="406"/>
         <location filename="../OptionsDialog.ui" line="429"/>
-        <location filename="../OptionsDialog.cpp" line="640"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="656"/>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="669"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
-        <location filename="../OptionsDialog.cpp" line="677"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="643"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="672"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
+        <location filename="../OptionsDialog.cpp" line="680"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Language: %1</source>
         <translation>Sprache: %1</translation>
     </message>
@@ -789,7 +789,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="598"/>
+        <location filename="../OptionsDialog.cpp" line="601"/>
         <source>Participate in %1 User Statistics</source>
         <translation>An %1 Benutzerstatistik teilnehmen</translation>
     </message>
@@ -820,8 +820,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="614"/>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="617"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Participation ID: %1</source>
         <translation>Teilnahme ID: %1</translation>
     </message>
@@ -915,7 +915,7 @@ Y: %2</translation>
         <translation>Abbre&amp;chen</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
@@ -954,56 +954,56 @@ Y: %2</translation>
         <translation>%1 (Sprachenpriorität)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>Der eigene Ordner wird initialisiert sobald du %1 neugestartet hast.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="599"/>
+        <location filename="../OptionsDialog.cpp" line="602"/>
         <source>View %1 User Statistics Online</source>
         <translation>%1 Benutzerstatistik Online ansehen</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Not registered</source>
         <translation>Nicht registriert</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Yes</source>
         <translation>Ja</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
         <source>No</source>
         <translation>Nein</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
         <source>OS defined</source>
         <translation>OS-defined</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Steam defined</source>
         <translation>Steam-definiert</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="496"/>
+        <location filename="../OptionsDialog.cpp" line="499"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>Kein Profil</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="504"/>
-        <location filename="../OptionsDialog.cpp" line="508"/>
-        <location filename="../OptionsDialog.cpp" line="510"/>
+        <location filename="../OptionsDialog.cpp" line="507"/>
+        <location filename="../OptionsDialog.cpp" line="511"/>
+        <location filename="../OptionsDialog.cpp" line="513"/>
         <source>Profile: %1</source>
         <translation>Profil: %1</translation>
     </message>
@@ -1047,43 +1047,43 @@ Y: %2</translation>
         <translation>S&amp;chließen</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="100"/>
-        <location filename="../PictureExport.cpp" line="262"/>
+        <location filename="../PictureExport.cpp" line="94"/>
+        <location filename="../PictureExport.cpp" line="236"/>
         <source>Export</source>
         <translation>Exportieren</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1690"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Export as &amp;Picture...</source>
         <translation>Als &amp;Bild exportieren...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1691"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>Als &amp;Snapmatic exportieren...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1684"/>
+        <location filename="../ProfileInterface.cpp" line="1681"/>
         <source>&amp;Edit Properties...</source>
         <translation>Eigenschaften bearb&amp;eiten...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1685"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
         <source>&amp;Overwrite Image...</source>
         <translation>Bild &amp;überschreiben...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1687"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>&amp;Kartenansicht öffnen...</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="496"/>
+        <location filename="../PictureDialog.cpp" line="488"/>
         <source>Key 1 - Avatar Preview Mode
 Key 2 - Toggle Overlay
 Arrow Keys - Navigate</source>
@@ -1092,142 +1092,140 @@ Taste 2 - Overlay umschalten
 Pfeiltasten - Navigieren</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Snapmatic Picture Viewer</source>
         <translation>Snapmatic Bildansicht</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Failed at %1</source>
         <translation>Fehlgeschlagen beim %1</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="698"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="665"/>
         <source>No Crew</source>
         <translation>Keine Crew</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="722"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="686"/>
         <location filename="../SnapmaticEditor.cpp" line="246"/>
         <source>No Players</source>
         <translation>Keine Spieler</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="656"/>
+        <location filename="../PictureDialog.cpp" line="620"/>
         <source>Avatar Preview Mode
 Press 1 for Default View</source>
         <translation>Avatar Vorschaumodus
 Drücke 1 für Standardmodus</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
         <source>Unknown Location</source>
         <translation>Unbekannter Standort</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="104"/>
+        <location filename="../PictureExport.cpp" line="98"/>
         <source>Portable Network Graphics (*.png)</source>
         <translation>Portable Network Graphics (*.png)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="298"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="271"/>
         <source>Overwrite %1 with current Snapmatic picture?</source>
         <translation>Überschreibe %1 mit aktuellen Snapmatic Bild?</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="99"/>
+        <location filename="../PictureExport.cpp" line="93"/>
         <source>Export as Picture...</source>
         <translation>Als Bild exportieren...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="103"/>
+        <location filename="../PictureExport.cpp" line="97"/>
         <source>JPEG Graphics (*.jpg *.jpeg)</source>
         <translation>JPEG Graphics (*.jpg *.jpeg)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="215"/>
-        <location filename="../PictureExport.cpp" line="218"/>
-        <location filename="../PictureExport.cpp" line="221"/>
-        <location filename="../PictureExport.cpp" line="224"/>
-        <location filename="../PictureExport.cpp" line="231"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="190"/>
+        <location filename="../PictureExport.cpp" line="193"/>
+        <location filename="../PictureExport.cpp" line="196"/>
+        <location filename="../PictureExport.cpp" line="199"/>
+        <location filename="../PictureExport.cpp" line="205"/>
         <source>Export as Picture</source>
         <translation>Als Bild exportieren</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="215"/>
+        <location filename="../PictureExport.cpp" line="190"/>
         <source>Failed to export the picture because the system occurred a write failure</source>
         <translation>Fehlgeschlagen beim Exportieren weil das System ein Schreibfehler ausgelöst hat</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="218"/>
+        <location filename="../PictureExport.cpp" line="193"/>
         <source>Failed to export the picture because the format detection failures</source>
         <translation>Fehlgeschlagen beim Exportieren weil die Formaterkennung fehlschlägt</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="221"/>
+        <location filename="../PictureExport.cpp" line="196"/>
         <source>Failed to export the picture because the file can&apos;t be written</source>
         <translation>Fehlgeschlagen beim Exportieren weil die Datei nicht beschrieben werden kann</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="224"/>
+        <location filename="../PictureExport.cpp" line="199"/>
         <source>Failed to export the picture because of an unknown reason</source>
         <translation>Fehlgeschlagen beim Exportieren wegen einen unbekannten Grund</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
         <source>Failed to export current Snapmatic picture</source>
         <translation>Fehlgeschlagen beim Exportieren vom aktuellen Snapmatic Bild</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="261"/>
+        <location filename="../PictureExport.cpp" line="235"/>
         <source>Export as Snapmatic...</source>
         <translation>Als Snapmatic exportieren...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="298"/>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
-        <location filename="../PictureExport.cpp" line="323"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="271"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
+        <location filename="../PictureExport.cpp" line="290"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>Export as Snapmatic</source>
         <translation>Als Snapmatic exportieren</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="323"/>
+        <location filename="../PictureExport.cpp" line="290"/>
         <source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
         <translation>Snapmatic wurde wegen Benutzung der .auto Erweiterung zu &quot;%1&quot; exportiert.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="265"/>
+        <location filename="../PictureExport.cpp" line="239"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="266"/>
+        <location filename="../PictureExport.cpp" line="241"/>
         <source>GTA V Raw Export (*.auto)</source>
         <translation>GTA V Roher Export (*.auto)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="267"/>
+        <location filename="../PictureExport.cpp" line="243"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic Bilder (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="231"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="205"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>No valid file is selected</source>
         <translation>Keine gültige Datei wurde ausgewählt</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1688"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>&amp;JSON Editor öffnen...</translation>
     </message>
@@ -1330,35 +1328,35 @@ Drücke 1 für Standardmodus</translation>
         <translation>Lade...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>Snapmatic Loader</source>
         <translation>Snapmatic Lader</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
         <translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="477"/>
         <location filename="../ImportDialog.cpp" line="804"/>
-        <location filename="../ProfileInterface.cpp" line="500"/>
-        <location filename="../ProfileInterface.cpp" line="501"/>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="566"/>
-        <location filename="../ProfileInterface.cpp" line="600"/>
-        <location filename="../ProfileInterface.cpp" line="642"/>
-        <location filename="../ProfileInterface.cpp" line="677"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
-        <location filename="../ProfileInterface.cpp" line="947"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
-        <location filename="../ProfileInterface.cpp" line="990"/>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="497"/>
+        <location filename="../ProfileInterface.cpp" line="498"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="563"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
+        <location filename="../ProfileInterface.cpp" line="987"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Import...</source>
         <translation>Importieren...</translation>
     </message>
@@ -1373,45 +1371,45 @@ Drücke 1 für Standardmodus</translation>
         <translation>Importieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../ProfileInterface.cpp" line="515"/>
         <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>Spielstanddateien (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic Bilder (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="513"/>
         <source>Importable files (%1)</source>
         <translation>Importfähige Dateien (%1)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="520"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
         <source>All image files (%1)</source>
         <translation>Alle Bilddateien (%1)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="489"/>
         <location filename="../ImportDialog.cpp" line="816"/>
-        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
         <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>Alle Dateien (**)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="567"/>
-        <location filename="../ProfileInterface.cpp" line="584"/>
+        <location filename="../ProfileInterface.cpp" line="564"/>
+        <location filename="../ProfileInterface.cpp" line="581"/>
         <source>Import file %1 of %2 files</source>
         <translation>Importiere Datei %1 von %2 Dateien</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="600"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
         <source>Import failed with...
 
 %1</source>
@@ -1420,13 +1418,13 @@ Drücke 1 für Standardmodus</translation>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
         <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>Fehler beim Lesen vom Snapmatic Bild</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
         <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>Fehler beim Lesen von Spielstanddatei</translation>
@@ -1434,40 +1432,40 @@ Drücke 1 für Standardmodus</translation>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
         <source>Can&apos;t import %1 because file can&apos;t be open</source>
         <translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="518"/>
         <location filename="../ImportDialog.cpp" line="845"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="947"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
         <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
         <translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1415"/>
+        <location filename="../ProfileInterface.cpp" line="1412"/>
         <source>Initialising export...</source>
         <translation>Initialisiere Export...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
         <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
         <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
         <translation>%1Exportiere Snapmatic Bilder%2&lt;br&gt;&lt;br&gt;JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen&lt;br&gt;Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren&lt;br&gt;&lt;br&gt;Exportieren als:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
         <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>Keine gültige Datei wurde ausgewählt</translation>
@@ -1478,91 +1476,91 @@ Drücke 1 für Standardmodus</translation>
         <translation>Aktivierte Bilder: %1 von %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1354"/>
-        <location filename="../ProfileInterface.cpp" line="1372"/>
+        <location filename="../ProfileInterface.cpp" line="1351"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>JPG Bilder und GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1355"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1352"/>
+        <location filename="../ProfileInterface.cpp" line="1374"/>
         <source>JPG pictures only</source>
         <translation>Nur JPG Bilder</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1356"/>
-        <location filename="../ProfileInterface.cpp" line="1381"/>
+        <location filename="../ProfileInterface.cpp" line="1353"/>
+        <location filename="../ProfileInterface.cpp" line="1378"/>
         <source>GTA Snapmatic only</source>
         <translation>Nur GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2124"/>
-        <location filename="../ProfileInterface.cpp" line="2227"/>
-        <location filename="../ProfileInterface.cpp" line="2358"/>
-        <location filename="../ProfileInterface.cpp" line="2464"/>
+        <location filename="../ProfileInterface.cpp" line="2121"/>
+        <location filename="../ProfileInterface.cpp" line="2224"/>
+        <location filename="../ProfileInterface.cpp" line="2355"/>
+        <location filename="../ProfileInterface.cpp" line="2461"/>
         <source>Patch selected...</source>
         <translation>Auswahl patchen...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2125"/>
-        <location filename="../ProfileInterface.cpp" line="2144"/>
-        <location filename="../ProfileInterface.cpp" line="2228"/>
-        <location filename="../ProfileInterface.cpp" line="2247"/>
-        <location filename="../ProfileInterface.cpp" line="2359"/>
-        <location filename="../ProfileInterface.cpp" line="2378"/>
-        <location filename="../ProfileInterface.cpp" line="2465"/>
-        <location filename="../ProfileInterface.cpp" line="2484"/>
+        <location filename="../ProfileInterface.cpp" line="2122"/>
+        <location filename="../ProfileInterface.cpp" line="2141"/>
+        <location filename="../ProfileInterface.cpp" line="2225"/>
+        <location filename="../ProfileInterface.cpp" line="2244"/>
+        <location filename="../ProfileInterface.cpp" line="2356"/>
+        <location filename="../ProfileInterface.cpp" line="2375"/>
+        <location filename="../ProfileInterface.cpp" line="2462"/>
+        <location filename="../ProfileInterface.cpp" line="2481"/>
         <source>Patch file %1 of %2 files</source>
         <translation>Patche Datei %1 von %2 Dateien</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify as Avatar</source>
         <translation>Als Avatar qualifizieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>Keine Snapmatic Bilder sind ausgewählt</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1572,93 +1570,93 @@ Drücke 1 für Standardmodus</translation>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1006"/>
+        <location filename="../ProfileInterface.cpp" line="1003"/>
         <source>Prepare Content for Import...</source>
         <translation>Bereite Inhalt für Import vor...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>Qualifizieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players...</source>
         <translation>Spieler ändern...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>Spieler ändern</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew...</source>
         <translation>Crew ändern...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>Crew ändern</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title...</source>
         <translation>Titel ändern...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>Titel ändern</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>Remove selected</source>
         <translation>Auswahl löschen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1331"/>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
-        <location filename="../ProfileInterface.cpp" line="1414"/>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1328"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
+        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
         <source>Export selected...</source>
         <translation>Auswahl exportieren...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
         <source>Export failed with...
 
 %1</source>
@@ -1677,7 +1675,7 @@ Drücke 1 für Standardmodus</translation>
         <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="514"/>
         <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
@@ -1802,38 +1800,38 @@ Drücke 1 für Standardmodus</translation>
         <translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1757"/>
+        <location filename="../ProfileInterface.cpp" line="1754"/>
         <source>&amp;View</source>
         <translation>A&amp;nsehen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1724"/>
-        <location filename="../ProfileInterface.cpp" line="1759"/>
-        <location filename="../ProfileInterface.cpp" line="1789"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1756"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>&amp;Remove</source>
         <translation>Entfe&amp;rnen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1762"/>
-        <location filename="../ProfileInterface.cpp" line="1792"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Select</source>
         <translation>Au&amp;swählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1765"/>
-        <location filename="../ProfileInterface.cpp" line="1794"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1791"/>
         <source>&amp;Deselect</source>
         <translation>A&amp;bwählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1768"/>
-        <location filename="../ProfileInterface.cpp" line="1797"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>Select &amp;All</source>
         <translation>&amp;Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1771"/>
-        <location filename="../ProfileInterface.cpp" line="1800"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>&amp;Deselect All</source>
         <translation>Alles a&amp;bwählen</translation>
     </message>
@@ -1848,9 +1846,9 @@ Drücke 1 für Standardmodus</translation>
         <translation>Spielstand kopieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1723"/>
-        <location filename="../ProfileInterface.cpp" line="1758"/>
-        <location filename="../ProfileInterface.cpp" line="1788"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1755"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>&amp;Export</source>
         <translation>&amp;Exportieren</translation>
     </message>
@@ -1902,9 +1900,9 @@ Drücke 1 für Standardmodus</translation>
         <location filename="../JsonEditorDialog.cpp" line="191"/>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Snapmatic Properties</source>
         <translation>Snapmatic Eigenschaften</translation>
     </message>
@@ -1944,7 +1942,7 @@ Drücke 1 für Standardmodus</translation>
         <translation>Meme</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>Snapmatic Titel</translation>
@@ -2053,26 +2051,26 @@ Drücke 1 für Standardmodus</translation>
     </message>
     <message>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>Neuer Snapmatic Titel:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>Snapmatic Crew</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>Neue Snapmatic Crew:</translation>
@@ -2179,83 +2177,83 @@ Drücke 1 für Standardmodus</translation>
     </message>
     <message>
         <location filename="../SnapmaticWidget.ui" line="152"/>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Delete picture</source>
         <translation>Bild löschen</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
         <source>Are you sure to delete %1 from your Snapmatic pictures?</source>
         <translation>Bist du sicher %1 von deine Snapmatic Bilder zu löschen?</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>Fehlgeschlagen beim Ausblenden von %1 im Spiel von deinen Snapmatic Bildern</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1677"/>
-        <location filename="../ProfileInterface.cpp" line="1714"/>
-        <location filename="../ProfileInterface.cpp" line="1779"/>
+        <location filename="../ProfileInterface.cpp" line="1674"/>
+        <location filename="../ProfileInterface.cpp" line="1711"/>
+        <location filename="../ProfileInterface.cpp" line="1776"/>
         <source>Edi&amp;t</source>
         <translation>Bearbei&amp;ten</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1689"/>
+        <location filename="../ProfileInterface.cpp" line="1686"/>
         <source>&amp;Export</source>
         <translation>&amp;Exportieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1679"/>
-        <location filename="../ProfileInterface.cpp" line="1720"/>
-        <location filename="../ProfileInterface.cpp" line="1785"/>
+        <location filename="../ProfileInterface.cpp" line="1676"/>
+        <location filename="../ProfileInterface.cpp" line="1717"/>
+        <location filename="../ProfileInterface.cpp" line="1782"/>
         <source>Show &amp;In-game</source>
         <translation>&amp;Im Spiel anzeigen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1682"/>
-        <location filename="../ProfileInterface.cpp" line="1721"/>
-        <location filename="../ProfileInterface.cpp" line="1786"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1718"/>
+        <location filename="../ProfileInterface.cpp" line="1783"/>
         <source>Hide &amp;In-game</source>
         <translation>&amp;Im Spiel ausblenden</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1692"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;View</source>
         <translation>A&amp;nsehen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;Remove</source>
         <translation>Entfe&amp;rnen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
-        <location filename="../ProfileInterface.cpp" line="1727"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
         <source>&amp;Select</source>
         <translation>Au&amp;swählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1700"/>
-        <location filename="../ProfileInterface.cpp" line="1729"/>
+        <location filename="../ProfileInterface.cpp" line="1697"/>
+        <location filename="../ProfileInterface.cpp" line="1726"/>
         <source>&amp;Deselect</source>
         <translation>A&amp;bwählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1703"/>
-        <location filename="../ProfileInterface.cpp" line="1732"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>Select &amp;All</source>
         <translation>Alles &amp;auswählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
-        <location filename="../ProfileInterface.cpp" line="1735"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>&amp;Deselect All</source>
         <translation>Alles a&amp;bwählen</translation>
     </message>
@@ -2275,7 +2273,7 @@ Drücke 1 für Standardmodus</translation>
         <translation>Bild exportieren</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Failed at deleting %1 from your Snapmatic pictures</source>
         <translation>Fehlgeschlagen beim Löschen von %1 von deinen Snapmatic Bildern</translation>
     </message>
@@ -2368,29 +2366,29 @@ Drücke 1 für Standardmodus</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="346"/>
-        <location filename="../ProfileInterface.cpp" line="1718"/>
-        <location filename="../ProfileInterface.cpp" line="1783"/>
+        <location filename="../ProfileInterface.cpp" line="1715"/>
+        <location filename="../ProfileInterface.cpp" line="1780"/>
         <source>Change &amp;Title...</source>
         <translation>&amp;Titel ändern...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="362"/>
-        <location filename="../ProfileInterface.cpp" line="1715"/>
-        <location filename="../ProfileInterface.cpp" line="1780"/>
+        <location filename="../ProfileInterface.cpp" line="1712"/>
+        <location filename="../ProfileInterface.cpp" line="1777"/>
         <source>&amp;Qualify as Avatar</source>
         <translation>Als Avatar &amp;qualifizieren</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="370"/>
-        <location filename="../ProfileInterface.cpp" line="1716"/>
-        <location filename="../ProfileInterface.cpp" line="1781"/>
+        <location filename="../ProfileInterface.cpp" line="1713"/>
+        <location filename="../ProfileInterface.cpp" line="1778"/>
         <source>Change &amp;Players...</source>
         <translation>S&amp;pieler ändern...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="354"/>
-        <location filename="../ProfileInterface.cpp" line="1717"/>
-        <location filename="../ProfileInterface.cpp" line="1782"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Change &amp;Crew...</source>
         <translation>&amp;Crew ändern...</translation>
     </message>
@@ -2465,7 +2463,7 @@ Drücke 1 für Standardmodus</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../OptionsDialog.cpp" line="748"/>
         <location filename="../UserInterface.cpp" line="194"/>
         <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
@@ -2513,16 +2511,16 @@ Drücke 1 für Standardmodus</translation>
         <translation>&amp;Neuladen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Show In-game</source>
         <translation>Im Spiel anzeigen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Hide In-game</source>
         <translation>Im Spiel ausblenden</translation>
     </message>
diff --git a/res/gta5sync_en_US.ts b/res/gta5sync_en_US.ts
index fbd6d73..729783a 100644
--- a/res/gta5sync_en_US.ts
+++ b/res/gta5sync_en_US.ts
@@ -166,10 +166,10 @@ Pictures and Savegames</source>
 <context>
     <name>ImageEditorDialog</name>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Snapmatic Image Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -199,14 +199,14 @@ Pictures and Savegames</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
         <source>Patching of Snapmatic Image failed because of I/O Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Patching of Snapmatic Image failed because of Image Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -373,14 +373,14 @@ Pictures and Savegames</source>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="195"/>
-        <location filename="../ProfileInterface.cpp" line="725"/>
+        <location filename="../ProfileInterface.cpp" line="722"/>
         <source>Custom Avatar</source>
         <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="218"/>
-        <location filename="../ProfileInterface.cpp" line="744"/>
+        <location filename="../ProfileInterface.cpp" line="741"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation type="unfinished"></translation>
@@ -721,26 +721,26 @@ Y: %2</source>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Found: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="406"/>
         <location filename="../OptionsDialog.ui" line="429"/>
-        <location filename="../OptionsDialog.cpp" line="640"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="656"/>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="669"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
-        <location filename="../OptionsDialog.cpp" line="677"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="643"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="672"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
+        <location filename="../OptionsDialog.cpp" line="680"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Language: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -756,7 +756,7 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="598"/>
+        <location filename="../OptionsDialog.cpp" line="601"/>
         <source>Participate in %1 User Statistics</source>
         <translation type="unfinished"></translation>
     </message>
@@ -777,8 +777,8 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="614"/>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="617"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Participation ID: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -916,62 +916,62 @@ Y: %2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>The new Custom Folder will initialize after you restart %1.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="496"/>
+        <location filename="../OptionsDialog.cpp" line="499"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="504"/>
-        <location filename="../OptionsDialog.cpp" line="508"/>
-        <location filename="../OptionsDialog.cpp" line="510"/>
+        <location filename="../OptionsDialog.cpp" line="507"/>
+        <location filename="../OptionsDialog.cpp" line="511"/>
+        <location filename="../OptionsDialog.cpp" line="513"/>
         <source>Profile: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="599"/>
+        <location filename="../OptionsDialog.cpp" line="602"/>
         <source>View %1 User Statistics Online</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Not registered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
         <source>OS defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Steam defined</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1013,183 +1013,181 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1690"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Export as &amp;Picture...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1691"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1685"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
         <source>&amp;Overwrite Image...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1684"/>
+        <location filename="../ProfileInterface.cpp" line="1681"/>
         <source>&amp;Edit Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1687"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>Open &amp;Map Viewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="496"/>
+        <location filename="../PictureDialog.cpp" line="488"/>
         <source>Key 1 - Avatar Preview Mode
 Key 2 - Toggle Overlay
 Arrow Keys - Navigate</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Snapmatic Picture Viewer</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Failed at %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="722"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="686"/>
         <location filename="../SnapmaticEditor.cpp" line="246"/>
         <source>No Players</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="698"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="665"/>
         <source>No Crew</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
         <source>Unknown Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="656"/>
+        <location filename="../PictureDialog.cpp" line="620"/>
         <source>Avatar Preview Mode
 Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="99"/>
+        <location filename="../PictureExport.cpp" line="93"/>
         <source>Export as Picture...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="100"/>
-        <location filename="../PictureExport.cpp" line="262"/>
+        <location filename="../PictureExport.cpp" line="94"/>
+        <location filename="../PictureExport.cpp" line="236"/>
         <source>Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="103"/>
+        <location filename="../PictureExport.cpp" line="97"/>
         <source>JPEG Graphics (*.jpg *.jpeg)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="104"/>
+        <location filename="../PictureExport.cpp" line="98"/>
         <source>Portable Network Graphics (*.png)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="215"/>
-        <location filename="../PictureExport.cpp" line="218"/>
-        <location filename="../PictureExport.cpp" line="221"/>
-        <location filename="../PictureExport.cpp" line="224"/>
-        <location filename="../PictureExport.cpp" line="231"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="190"/>
+        <location filename="../PictureExport.cpp" line="193"/>
+        <location filename="../PictureExport.cpp" line="196"/>
+        <location filename="../PictureExport.cpp" line="199"/>
+        <location filename="../PictureExport.cpp" line="205"/>
         <source>Export as Picture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="298"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="271"/>
         <source>Overwrite %1 with current Snapmatic picture?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
         <source>Failed to export current Snapmatic picture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="231"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="205"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>No valid file is selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="215"/>
+        <location filename="../PictureExport.cpp" line="190"/>
         <source>Failed to export the picture because the system occurred a write failure</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="218"/>
+        <location filename="../PictureExport.cpp" line="193"/>
         <source>Failed to export the picture because the format detection failures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="221"/>
+        <location filename="../PictureExport.cpp" line="196"/>
         <source>Failed to export the picture because the file can&apos;t be written</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="224"/>
+        <location filename="../PictureExport.cpp" line="199"/>
         <source>Failed to export the picture because of an unknown reason</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="261"/>
+        <location filename="../PictureExport.cpp" line="235"/>
         <source>Export as Snapmatic...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="265"/>
+        <location filename="../PictureExport.cpp" line="239"/>
         <source>GTA V Export (*.g5e)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="266"/>
+        <location filename="../PictureExport.cpp" line="241"/>
         <source>GTA V Raw Export (*.auto)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="267"/>
+        <location filename="../PictureExport.cpp" line="243"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="298"/>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
-        <location filename="../PictureExport.cpp" line="323"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="271"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
+        <location filename="../PictureExport.cpp" line="290"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>Export as Snapmatic</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="323"/>
+        <location filename="../PictureExport.cpp" line="290"/>
         <source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1688"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>Open &amp;JSON Editor...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1303,35 +1301,35 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>Snapmatic Loader</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="477"/>
         <location filename="../ImportDialog.cpp" line="804"/>
-        <location filename="../ProfileInterface.cpp" line="500"/>
-        <location filename="../ProfileInterface.cpp" line="501"/>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="566"/>
-        <location filename="../ProfileInterface.cpp" line="600"/>
-        <location filename="../ProfileInterface.cpp" line="642"/>
-        <location filename="../ProfileInterface.cpp" line="677"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
-        <location filename="../ProfileInterface.cpp" line="947"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
-        <location filename="../ProfileInterface.cpp" line="990"/>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="497"/>
+        <location filename="../ProfileInterface.cpp" line="498"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="563"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
+        <location filename="../ProfileInterface.cpp" line="987"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Import...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1346,24 +1344,24 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="513"/>
         <source>Importable files (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="514"/>
         <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../ProfileInterface.cpp" line="515"/>
         <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation type="unfinished"></translation>
@@ -1371,46 +1369,46 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="520"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
         <source>All image files (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="489"/>
         <location filename="../ImportDialog.cpp" line="816"/>
-        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
         <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
         <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="567"/>
-        <location filename="../ProfileInterface.cpp" line="584"/>
+        <location filename="../ProfileInterface.cpp" line="564"/>
+        <location filename="../ProfileInterface.cpp" line="581"/>
         <source>Import file %1 of %2 files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="600"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
         <source>Import failed with...
 
 %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
         <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
         <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation type="unfinished"></translation>
@@ -1418,147 +1416,147 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
         <source>Can&apos;t import %1 because file can&apos;t be open</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="518"/>
         <location filename="../ImportDialog.cpp" line="845"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="947"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
         <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1354"/>
-        <location filename="../ProfileInterface.cpp" line="1372"/>
+        <location filename="../ProfileInterface.cpp" line="1351"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1355"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1352"/>
+        <location filename="../ProfileInterface.cpp" line="1374"/>
         <source>JPG pictures only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1356"/>
-        <location filename="../ProfileInterface.cpp" line="1381"/>
+        <location filename="../ProfileInterface.cpp" line="1353"/>
+        <location filename="../ProfileInterface.cpp" line="1378"/>
         <source>GTA Snapmatic only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
         <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1331"/>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
-        <location filename="../ProfileInterface.cpp" line="1414"/>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1328"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
+        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
         <source>Export selected...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1415"/>
+        <location filename="../ProfileInterface.cpp" line="1412"/>
         <source>Initialising export...</source>
         <translation>Initializing export...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
         <source>Export failed with...
 
 %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>Remove selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify as Avatar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
         <source>No Snapmatic pictures are selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2124"/>
-        <location filename="../ProfileInterface.cpp" line="2227"/>
-        <location filename="../ProfileInterface.cpp" line="2358"/>
-        <location filename="../ProfileInterface.cpp" line="2464"/>
+        <location filename="../ProfileInterface.cpp" line="2121"/>
+        <location filename="../ProfileInterface.cpp" line="2224"/>
+        <location filename="../ProfileInterface.cpp" line="2355"/>
+        <location filename="../ProfileInterface.cpp" line="2461"/>
         <source>Patch selected...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2125"/>
-        <location filename="../ProfileInterface.cpp" line="2144"/>
-        <location filename="../ProfileInterface.cpp" line="2228"/>
-        <location filename="../ProfileInterface.cpp" line="2247"/>
-        <location filename="../ProfileInterface.cpp" line="2359"/>
-        <location filename="../ProfileInterface.cpp" line="2378"/>
-        <location filename="../ProfileInterface.cpp" line="2465"/>
-        <location filename="../ProfileInterface.cpp" line="2484"/>
+        <location filename="../ProfileInterface.cpp" line="2122"/>
+        <location filename="../ProfileInterface.cpp" line="2141"/>
+        <location filename="../ProfileInterface.cpp" line="2225"/>
+        <location filename="../ProfileInterface.cpp" line="2244"/>
+        <location filename="../ProfileInterface.cpp" line="2356"/>
+        <location filename="../ProfileInterface.cpp" line="2375"/>
+        <location filename="../ProfileInterface.cpp" line="2462"/>
+        <location filename="../ProfileInterface.cpp" line="2481"/>
         <source>Patch file %1 of %2 files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1566,70 +1564,70 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1006"/>
+        <location filename="../ProfileInterface.cpp" line="1003"/>
         <source>Prepare Content for Import...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
@@ -1721,45 +1719,45 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1757"/>
+        <location filename="../ProfileInterface.cpp" line="1754"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1723"/>
-        <location filename="../ProfileInterface.cpp" line="1758"/>
-        <location filename="../ProfileInterface.cpp" line="1788"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1755"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>&amp;Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1724"/>
-        <location filename="../ProfileInterface.cpp" line="1759"/>
-        <location filename="../ProfileInterface.cpp" line="1789"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1756"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1762"/>
-        <location filename="../ProfileInterface.cpp" line="1792"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Select</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1791"/>
+        <source>&amp;Deselect</source>
+        <translation type="unfinished"></translation>
+    </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1765"/>
         <location filename="../ProfileInterface.cpp" line="1794"/>
-        <source>&amp;Deselect</source>
+        <source>Select &amp;All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1768"/>
         <location filename="../ProfileInterface.cpp" line="1797"/>
-        <source>Select &amp;All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ProfileInterface.cpp" line="1771"/>
-        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1857,9 +1855,9 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="191"/>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Snapmatic Properties</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2002,32 +2000,32 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation type="unfinished"></translation>
@@ -2144,8 +2142,8 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../SnapmaticWidget.ui" line="152"/>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Delete picture</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2155,82 +2153,82 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1677"/>
-        <location filename="../ProfileInterface.cpp" line="1714"/>
-        <location filename="../ProfileInterface.cpp" line="1779"/>
+        <location filename="../ProfileInterface.cpp" line="1674"/>
+        <location filename="../ProfileInterface.cpp" line="1711"/>
+        <location filename="../ProfileInterface.cpp" line="1776"/>
         <source>Edi&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1679"/>
-        <location filename="../ProfileInterface.cpp" line="1720"/>
-        <location filename="../ProfileInterface.cpp" line="1785"/>
+        <location filename="../ProfileInterface.cpp" line="1676"/>
+        <location filename="../ProfileInterface.cpp" line="1717"/>
+        <location filename="../ProfileInterface.cpp" line="1782"/>
         <source>Show &amp;In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1682"/>
-        <location filename="../ProfileInterface.cpp" line="1721"/>
-        <location filename="../ProfileInterface.cpp" line="1786"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1718"/>
+        <location filename="../ProfileInterface.cpp" line="1783"/>
         <source>Hide &amp;In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1689"/>
+        <location filename="../ProfileInterface.cpp" line="1686"/>
         <source>&amp;Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1692"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
-        <location filename="../ProfileInterface.cpp" line="1727"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
         <source>&amp;Select</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ProfileInterface.cpp" line="1697"/>
+        <location filename="../ProfileInterface.cpp" line="1726"/>
+        <source>&amp;Deselect</source>
+        <translation type="unfinished"></translation>
+    </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1700"/>
         <location filename="../ProfileInterface.cpp" line="1729"/>
-        <source>&amp;Deselect</source>
+        <source>Select &amp;All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1703"/>
         <location filename="../ProfileInterface.cpp" line="1732"/>
-        <source>Select &amp;All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
-        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
         <source>Are you sure to delete %1 from your Snapmatic pictures?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Failed at deleting %1 from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2388,7 +2386,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../OptionsDialog.cpp" line="748"/>
         <location filename="../UserInterface.cpp" line="194"/>
         <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
@@ -2406,8 +2404,8 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="370"/>
-        <location filename="../ProfileInterface.cpp" line="1716"/>
-        <location filename="../ProfileInterface.cpp" line="1781"/>
+        <location filename="../ProfileInterface.cpp" line="1713"/>
+        <location filename="../ProfileInterface.cpp" line="1778"/>
         <source>Change &amp;Players...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2418,22 +2416,22 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="346"/>
-        <location filename="../ProfileInterface.cpp" line="1718"/>
-        <location filename="../ProfileInterface.cpp" line="1783"/>
+        <location filename="../ProfileInterface.cpp" line="1715"/>
+        <location filename="../ProfileInterface.cpp" line="1780"/>
         <source>Change &amp;Title...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="354"/>
-        <location filename="../ProfileInterface.cpp" line="1717"/>
-        <location filename="../ProfileInterface.cpp" line="1782"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Change &amp;Crew...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="362"/>
-        <location filename="../ProfileInterface.cpp" line="1715"/>
-        <location filename="../ProfileInterface.cpp" line="1780"/>
+        <location filename="../ProfileInterface.cpp" line="1712"/>
+        <location filename="../ProfileInterface.cpp" line="1777"/>
         <source>&amp;Qualify as Avatar</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2468,16 +2466,16 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Show In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Hide In-game</source>
         <translation type="unfinished"></translation>
     </message>
diff --git a/res/gta5sync_fr.ts b/res/gta5sync_fr.ts
index 8417299..31c3490 100644
--- a/res/gta5sync_fr.ts
+++ b/res/gta5sync_fr.ts
@@ -176,10 +176,10 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
 <context>
     <name>ImageEditorDialog</name>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Snapmatic Image Editor</source>
         <translation>Éditeur d&apos;images Snapmatic</translation>
     </message>
@@ -209,14 +209,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
         <translation>&amp;Fermer</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
         <source>Patching of Snapmatic Image failed because of I/O Error</source>
         <translation>Échec du patch Snapmatic : I/O Error</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Patching of Snapmatic Image failed because of Image Error</source>
         <translation>Échec du patch Snapmatic : Image Error</translation>
     </message>
@@ -391,14 +391,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="195"/>
-        <location filename="../ProfileInterface.cpp" line="725"/>
+        <location filename="../ProfileInterface.cpp" line="722"/>
         <source>Custom Avatar</source>
         <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
         <translation>Avatar personnalisé</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="218"/>
-        <location filename="../ProfileInterface.cpp" line="744"/>
+        <location filename="../ProfileInterface.cpp" line="741"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>Image personnalisé</translation>
@@ -749,26 +749,26 @@ Y : %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Found: %1</source>
         <translation>Trouvé : %1</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="406"/>
         <location filename="../OptionsDialog.ui" line="429"/>
-        <location filename="../OptionsDialog.cpp" line="640"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="656"/>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="669"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
-        <location filename="../OptionsDialog.cpp" line="677"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="643"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="672"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
+        <location filename="../OptionsDialog.cpp" line="680"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Language: %1</source>
         <translation>Langue : %1</translation>
     </message>
@@ -789,7 +789,7 @@ Y : %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="598"/>
+        <location filename="../OptionsDialog.cpp" line="601"/>
         <source>Participate in %1 User Statistics</source>
         <translation>Participer aux statistiques d&apos;usage %1</translation>
     </message>
@@ -820,8 +820,8 @@ Y : %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="614"/>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="617"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Participation ID: %1</source>
         <translation>ID de participation : %1</translation>
     </message>
@@ -948,62 +948,62 @@ Y : %2</translation>
         <translation>%1 (Priorité de la langue)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>Le nouveau Dossier personnalisé sera initialisé au redémarrage de %1.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="599"/>
+        <location filename="../OptionsDialog.cpp" line="602"/>
         <source>View %1 User Statistics Online</source>
         <translation>Voir les statistiques d&apos;usage %1 en ligne</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Not registered</source>
         <translation>Pas enregistré</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Yes</source>
         <translation>Oui</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
         <source>No</source>
         <translation>Non</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
         <source>OS defined</source>
         <translation>Défini par le système d&apos;exploitation</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Steam defined</source>
         <translation>Défini par Steam</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="496"/>
+        <location filename="../OptionsDialog.cpp" line="499"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>Aucun profil</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="504"/>
-        <location filename="../OptionsDialog.cpp" line="508"/>
-        <location filename="../OptionsDialog.cpp" line="510"/>
+        <location filename="../OptionsDialog.cpp" line="507"/>
+        <location filename="../OptionsDialog.cpp" line="511"/>
+        <location filename="../OptionsDialog.cpp" line="513"/>
         <source>Profile: %1</source>
         <translation>Profil : %1</translation>
     </message>
@@ -1047,123 +1047,123 @@ Y : %2</translation>
         <translation>&amp;Fermer</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="215"/>
+        <location filename="../PictureExport.cpp" line="190"/>
         <source>Failed to export the picture because the system occurred a write failure</source>
         <translation>Échec de l&apos;export de l&apos;image : erreur d&apos;écriture</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="218"/>
+        <location filename="../PictureExport.cpp" line="193"/>
         <source>Failed to export the picture because the format detection failures</source>
         <translation>Échec de l&apos;export de l&apos;image : erreur de détection du format</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="221"/>
+        <location filename="../PictureExport.cpp" line="196"/>
         <source>Failed to export the picture because the file can&apos;t be written</source>
         <translation>Échec de l&apos;export de l&apos;image : impossible d&apos;écrire dans le fichier</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="224"/>
+        <location filename="../PictureExport.cpp" line="199"/>
         <source>Failed to export the picture because of an unknown reason</source>
         <translation>Échec de l&apos;export de l&apos;image : erreur inconnue</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="261"/>
+        <location filename="../PictureExport.cpp" line="235"/>
         <source>Export as Snapmatic...</source>
         <translation>Exporter comme Snapmatic...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="265"/>
+        <location filename="../PictureExport.cpp" line="239"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="266"/>
+        <location filename="../PictureExport.cpp" line="241"/>
         <source>GTA V Raw Export (*.auto)</source>
         <translation>GTA V Export Brut (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="267"/>
+        <location filename="../PictureExport.cpp" line="243"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Fichiers GTA Snapmatic (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="298"/>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
-        <location filename="../PictureExport.cpp" line="323"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="271"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
+        <location filename="../PictureExport.cpp" line="290"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>Export as Snapmatic</source>
         <translation>Exporter comme Snapmatic</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="323"/>
+        <location filename="../PictureExport.cpp" line="290"/>
         <source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
         <translation>Exporté comme &quot;%1&quot; avec l&apos;utilisation de l&apos;extension .auto.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="298"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="271"/>
         <source>Overwrite %1 with current Snapmatic picture?</source>
         <translation>%1 existe déjà. Vous-vous le remplacer ?</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="99"/>
+        <location filename="../PictureExport.cpp" line="93"/>
         <source>Export as Picture...</source>
         <translation>Exporter comme image...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="103"/>
+        <location filename="../PictureExport.cpp" line="97"/>
         <source>JPEG Graphics (*.jpg *.jpeg)</source>
         <translation>JPEG Graphics (*.jpg *.jpeg)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="215"/>
-        <location filename="../PictureExport.cpp" line="218"/>
-        <location filename="../PictureExport.cpp" line="221"/>
-        <location filename="../PictureExport.cpp" line="224"/>
-        <location filename="../PictureExport.cpp" line="231"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="190"/>
+        <location filename="../PictureExport.cpp" line="193"/>
+        <location filename="../PictureExport.cpp" line="196"/>
+        <location filename="../PictureExport.cpp" line="199"/>
+        <location filename="../PictureExport.cpp" line="205"/>
         <source>Export as Picture</source>
         <translation>Exporter comme image</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="231"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="205"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>No valid file is selected</source>
         <translation>Fichier invalide</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1690"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Export as &amp;Picture...</source>
         <translation>Exporter comme &amp;image...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1691"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>Exporter comme &amp;Snapmatic...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1685"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
         <source>&amp;Overwrite Image...</source>
         <translation>&amp;Remplacer l&apos;image...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1684"/>
+        <location filename="../ProfileInterface.cpp" line="1681"/>
         <source>&amp;Edit Properties...</source>
         <translation>Modifier les &amp;propriétés...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1687"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="496"/>
+        <location filename="../PictureDialog.cpp" line="488"/>
         <source>Key 1 - Avatar Preview Mode
 Key 2 - Toggle Overlay
 Arrow Keys - Navigate</source>
@@ -1172,62 +1172,60 @@ Touche 2 - Activer/désactiver l&apos;overlay
 Touches fléchées - Naviguer</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Snapmatic Picture Viewer</source>
         <translation>Visionneuse de photo Snapmatic</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Failed at %1</source>
         <translation>Echec de %1</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="698"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="665"/>
         <source>No Crew</source>
         <translation>Aucun crew</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="722"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="686"/>
         <location filename="../SnapmaticEditor.cpp" line="246"/>
         <source>No Players</source>
         <translation>Aucun joueurs</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="656"/>
+        <location filename="../PictureDialog.cpp" line="620"/>
         <source>Avatar Preview Mode
 Press 1 for Default View</source>
         <translation>Mode Aperçu Avatar
 Appuyer sur 1 pour le mode par défaut</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
         <source>Unknown Location</source>
         <translation>Emplacement inconnu</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="100"/>
-        <location filename="../PictureExport.cpp" line="262"/>
+        <location filename="../PictureExport.cpp" line="94"/>
+        <location filename="../PictureExport.cpp" line="236"/>
         <source>Export</source>
         <translation>Exporter</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="104"/>
+        <location filename="../PictureExport.cpp" line="98"/>
         <source>Portable Network Graphics (*.png)</source>
         <translation>Portable Network Graphics (*.png)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
         <source>Failed to export current Snapmatic picture</source>
         <translation>Échec de l&apos;export de la photo Snapmatic</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1688"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
     </message>
@@ -1341,35 +1339,35 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Chargement...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>Snapmatic Loader</source>
         <translation>Snapmatic Loader</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
         <translation>&lt;h4&gt;Les Snapmatic suivants ont été répaés&lt;/h4&gt;%1</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="477"/>
         <location filename="../ImportDialog.cpp" line="804"/>
-        <location filename="../ProfileInterface.cpp" line="500"/>
-        <location filename="../ProfileInterface.cpp" line="501"/>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="566"/>
-        <location filename="../ProfileInterface.cpp" line="600"/>
-        <location filename="../ProfileInterface.cpp" line="642"/>
-        <location filename="../ProfileInterface.cpp" line="677"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
-        <location filename="../ProfileInterface.cpp" line="947"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
-        <location filename="../ProfileInterface.cpp" line="990"/>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="497"/>
+        <location filename="../ProfileInterface.cpp" line="498"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="563"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
+        <location filename="../ProfileInterface.cpp" line="987"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Import...</source>
         <translation>Importer...</translation>
     </message>
@@ -1384,13 +1382,13 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Importer</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../ProfileInterface.cpp" line="515"/>
         <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Photos Snapmatic (PGTA*)</translation>
@@ -1398,26 +1396,26 @@ Appuyer sur 1 pour le mode par défaut</translation>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="520"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
         <source>All image files (%1)</source>
         <translation>Toutes les images (%1)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="489"/>
         <location filename="../ImportDialog.cpp" line="816"/>
-        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
         <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>Tous les fichiers (**)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="567"/>
-        <location filename="../ProfileInterface.cpp" line="584"/>
+        <location filename="../ProfileInterface.cpp" line="564"/>
+        <location filename="../ProfileInterface.cpp" line="581"/>
         <source>Import file %1 of %2 files</source>
         <translation>Importation du fichier %1 sur %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="600"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
         <source>Import failed with...
 
 %1</source>
@@ -1426,25 +1424,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
         <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>Fichier invalide</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="513"/>
         <source>Importable files (%1)</source>
         <translation>Fichiers importables (%1)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
         <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>Impossible d&apos;ouvrir la photo Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
         <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>Impossible de lire le fichier de sauvegarde</translation>
@@ -1452,122 +1450,122 @@ Appuyer sur 1 pour le mode par défaut</translation>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
         <source>Can&apos;t import %1 because file can&apos;t be open</source>
         <translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="518"/>
         <location filename="../ImportDialog.cpp" line="845"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation>Impossible d&apos;importer %1, le fichier ne peut pas être parsé correctement</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="947"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
         <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
         <translation>Impossible d&apos;importer %1, le format du fichier n&apos;est pas détecté</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
         <translation>Impossible d&apos;importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>Impossible d&apos;importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>Impossible d&apos;importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>Impossible d&apos;importer la sauvegarde, aucun emplacement libre</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1354"/>
-        <location filename="../ProfileInterface.cpp" line="1372"/>
+        <location filename="../ProfileInterface.cpp" line="1351"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>Images JPG et GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1355"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1352"/>
+        <location filename="../ProfileInterface.cpp" line="1374"/>
         <source>JPG pictures only</source>
         <translation>Images JPG seulement</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1356"/>
-        <location filename="../ProfileInterface.cpp" line="1381"/>
+        <location filename="../ProfileInterface.cpp" line="1353"/>
+        <location filename="../ProfileInterface.cpp" line="1378"/>
         <source>GTA Snapmatic only</source>
         <translation>GTA Snapmatic seulement</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
         <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
         <translation>%1Exporter les photos Snapmatic%2&lt;br&gt;&lt;br&gt;Les fichiers JPG permettent d&apos;ouvrir les photos avec une visionneuse d&apos;images&lt;br&gt;Les GTA Snapmatic permettent d&apos;importer les photos dans le jeu&lt;br&gt;&lt;br&gt;Exporter comme :</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1331"/>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
-        <location filename="../ProfileInterface.cpp" line="1414"/>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1328"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
+        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
         <source>Export selected...</source>
         <translation>Exporter la sélection...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1415"/>
+        <location filename="../ProfileInterface.cpp" line="1412"/>
         <source>Initialising export...</source>
         <translation>Initialisation de l&apos;export...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify as Avatar</source>
         <translation>Qualifier comme Avatar</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>Aucun Snapmatic sélectionné</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2124"/>
-        <location filename="../ProfileInterface.cpp" line="2227"/>
-        <location filename="../ProfileInterface.cpp" line="2358"/>
-        <location filename="../ProfileInterface.cpp" line="2464"/>
+        <location filename="../ProfileInterface.cpp" line="2121"/>
+        <location filename="../ProfileInterface.cpp" line="2224"/>
+        <location filename="../ProfileInterface.cpp" line="2355"/>
+        <location filename="../ProfileInterface.cpp" line="2461"/>
         <source>Patch selected...</source>
         <translation>Patcher la sélection...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2125"/>
-        <location filename="../ProfileInterface.cpp" line="2144"/>
-        <location filename="../ProfileInterface.cpp" line="2228"/>
-        <location filename="../ProfileInterface.cpp" line="2247"/>
-        <location filename="../ProfileInterface.cpp" line="2359"/>
-        <location filename="../ProfileInterface.cpp" line="2378"/>
-        <location filename="../ProfileInterface.cpp" line="2465"/>
-        <location filename="../ProfileInterface.cpp" line="2484"/>
+        <location filename="../ProfileInterface.cpp" line="2122"/>
+        <location filename="../ProfileInterface.cpp" line="2141"/>
+        <location filename="../ProfileInterface.cpp" line="2225"/>
+        <location filename="../ProfileInterface.cpp" line="2244"/>
+        <location filename="../ProfileInterface.cpp" line="2356"/>
+        <location filename="../ProfileInterface.cpp" line="2375"/>
+        <location filename="../ProfileInterface.cpp" line="2462"/>
+        <location filename="../ProfileInterface.cpp" line="2481"/>
         <source>Patch file %1 of %2 files</source>
         <translation>Patch du fichier %1 sur %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1577,76 +1575,76 @@ Appuyer sur 1 pour le mode par défaut</translation>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1006"/>
+        <location filename="../ProfileInterface.cpp" line="1003"/>
         <source>Prepare Content for Import...</source>
         <translation>Préparation du contenu pour l&apos;import...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>Qualifier</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players...</source>
         <translation>Modifier les joueurs...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>Modifier les joueurs</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew...</source>
         <translation>Modifier le Crew...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>Snapmatic Crew ID invalide</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>Changer le Crew</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title...</source>
         <translation>Changer le titre...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>Titre Snapmatic invalide</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>Changer le titre</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
         <source>Export failed with...
 
 %1</source>
@@ -1655,20 +1653,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>Remove selected</source>
         <translation>Supprimer la sélection</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>Supprimer la sélection ?</translation>
     </message>
@@ -1678,7 +1676,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="514"/>
         <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
@@ -1773,9 +1771,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1723"/>
-        <location filename="../ProfileInterface.cpp" line="1758"/>
-        <location filename="../ProfileInterface.cpp" line="1788"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1755"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>&amp;Export</source>
         <translation>&amp;Exporter</translation>
     </message>
@@ -1866,38 +1864,38 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Impossible de supprimer %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1757"/>
+        <location filename="../ProfileInterface.cpp" line="1754"/>
         <source>&amp;View</source>
         <translation>&amp;Voir</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1724"/>
-        <location filename="../ProfileInterface.cpp" line="1759"/>
-        <location filename="../ProfileInterface.cpp" line="1789"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1756"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>&amp;Remove</source>
         <translation>&amp;Supprimer</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1762"/>
-        <location filename="../ProfileInterface.cpp" line="1792"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Select</source>
         <translation>&amp;Sélectionner</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1765"/>
-        <location filename="../ProfileInterface.cpp" line="1794"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1791"/>
         <source>&amp;Deselect</source>
         <translation>&amp;Déselectionner</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1768"/>
-        <location filename="../ProfileInterface.cpp" line="1797"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>Select &amp;All</source>
         <translation>Sélectionner to&amp;ut</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1771"/>
-        <location filename="../ProfileInterface.cpp" line="1800"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>&amp;Deselect All</source>
         <translation>&amp;Déselectionner tout</translation>
     </message>
@@ -1911,9 +1909,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <location filename="../JsonEditorDialog.cpp" line="191"/>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Snapmatic Properties</source>
         <translation>Propriétés Snapmatic</translation>
     </message>
@@ -1953,7 +1951,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Meme</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>Titre Snapmatic</translation>
@@ -2064,26 +2062,26 @@ Appuyer sur 1 pour le mode par défaut</translation>
     </message>
     <message>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>Nouveau titre Snapmatic :</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>Crew Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>Nouveau crew Snapmatic :</translation>
@@ -2200,8 +2198,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
     </message>
     <message>
         <location filename="../SnapmaticWidget.ui" line="152"/>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Delete picture</source>
         <translation>Supprimer la photo</translation>
     </message>
@@ -2211,82 +2209,82 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
         <source>Are you sure to delete %1 from your Snapmatic pictures?</source>
         <translation>Supprimer %1 ?</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Failed at deleting %1 from your Snapmatic pictures</source>
         <translation>Impossible de supprimer %1</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>%1 n&apos;a pas pu être rendu invisible en jeu</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>%1 n&apos;a pas pu être rendu visible en jeu</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1677"/>
-        <location filename="../ProfileInterface.cpp" line="1714"/>
-        <location filename="../ProfileInterface.cpp" line="1779"/>
+        <location filename="../ProfileInterface.cpp" line="1674"/>
+        <location filename="../ProfileInterface.cpp" line="1711"/>
+        <location filename="../ProfileInterface.cpp" line="1776"/>
         <source>Edi&amp;t</source>
         <translation>Édi&amp;ter</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1679"/>
-        <location filename="../ProfileInterface.cpp" line="1720"/>
-        <location filename="../ProfileInterface.cpp" line="1785"/>
+        <location filename="../ProfileInterface.cpp" line="1676"/>
+        <location filename="../ProfileInterface.cpp" line="1717"/>
+        <location filename="../ProfileInterface.cpp" line="1782"/>
         <source>Show &amp;In-game</source>
         <translation>&amp;Visible en jeu</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1682"/>
-        <location filename="../ProfileInterface.cpp" line="1721"/>
-        <location filename="../ProfileInterface.cpp" line="1786"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1718"/>
+        <location filename="../ProfileInterface.cpp" line="1783"/>
         <source>Hide &amp;In-game</source>
         <translation>&amp;Invisible en jeu</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1689"/>
+        <location filename="../ProfileInterface.cpp" line="1686"/>
         <source>&amp;Export</source>
         <translation>&amp;Exporter</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1692"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;View</source>
         <translation>&amp;Voir</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;Remove</source>
         <translation>S&amp;upprimer</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
-        <location filename="../ProfileInterface.cpp" line="1727"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
         <source>&amp;Select</source>
         <translation>&amp;Sélectionner</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1700"/>
-        <location filename="../ProfileInterface.cpp" line="1729"/>
+        <location filename="../ProfileInterface.cpp" line="1697"/>
+        <location filename="../ProfileInterface.cpp" line="1726"/>
         <source>&amp;Deselect</source>
         <translation>&amp;Déselectionner</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1703"/>
-        <location filename="../ProfileInterface.cpp" line="1732"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>Select &amp;All</source>
         <translation>Sélectionner &amp;tout</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
-        <location filename="../ProfileInterface.cpp" line="1735"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>&amp;Deselect All</source>
         <translation>&amp;Déselectionner tout</translation>
     </message>
@@ -2426,7 +2424,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../OptionsDialog.cpp" line="748"/>
         <location filename="../UserInterface.cpp" line="194"/>
         <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
@@ -2439,8 +2437,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="370"/>
-        <location filename="../ProfileInterface.cpp" line="1716"/>
-        <location filename="../ProfileInterface.cpp" line="1781"/>
+        <location filename="../ProfileInterface.cpp" line="1713"/>
+        <location filename="../ProfileInterface.cpp" line="1778"/>
         <source>Change &amp;Players...</source>
         <translation>Modifier les &amp;joueurs...</translation>
     </message>
@@ -2451,22 +2449,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="346"/>
-        <location filename="../ProfileInterface.cpp" line="1718"/>
-        <location filename="../ProfileInterface.cpp" line="1783"/>
+        <location filename="../ProfileInterface.cpp" line="1715"/>
+        <location filename="../ProfileInterface.cpp" line="1780"/>
         <source>Change &amp;Title...</source>
         <translation>Changer le &amp;titre...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="354"/>
-        <location filename="../ProfileInterface.cpp" line="1717"/>
-        <location filename="../ProfileInterface.cpp" line="1782"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Change &amp;Crew...</source>
         <translation>Changer le &amp;Crew...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="362"/>
-        <location filename="../ProfileInterface.cpp" line="1715"/>
-        <location filename="../ProfileInterface.cpp" line="1780"/>
+        <location filename="../ProfileInterface.cpp" line="1712"/>
+        <location filename="../ProfileInterface.cpp" line="1777"/>
         <source>&amp;Qualify as Avatar</source>
         <translation>&amp;Qualifier comme Avatar</translation>
     </message>
@@ -2524,16 +2522,16 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>%1 - Nouvelles</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Show In-game</source>
         <translation>Visible en jeu</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Hide In-game</source>
         <translation>Invisible en jeu</translation>
     </message>
diff --git a/res/gta5sync_ko.ts b/res/gta5sync_ko.ts
index 1e20a2e..ed02f33 100644
--- a/res/gta5sync_ko.ts
+++ b/res/gta5sync_ko.ts
@@ -201,22 +201,22 @@ Pictures and Savegames</source>
         <translation>닫기(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Snapmatic Image Editor</source>
         <translation>스냅매틱 이미지 편집기</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
         <source>Patching of Snapmatic Image failed because of I/O Error</source>
         <translation>I/O 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Patching of Snapmatic Image failed because of Image Error</source>
         <translation>이미지 오류로 인해 스냅매틱 이미지를 패치하지 못했습니다.</translation>
     </message>
@@ -385,7 +385,7 @@ Pictures and Savegames</source>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="195"/>
-        <location filename="../ProfileInterface.cpp" line="725"/>
+        <location filename="../ProfileInterface.cpp" line="722"/>
         <source>Custom Avatar</source>
         <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
         <translatorcomment>소셜클럽의 사용자 지정 아바타 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
@@ -393,7 +393,7 @@ Pictures and Savegames</source>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="218"/>
-        <location filename="../ProfileInterface.cpp" line="744"/>
+        <location filename="../ProfileInterface.cpp" line="741"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translatorcomment>소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
@@ -756,26 +756,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Found: %1</source>
         <translation>찾음: %1</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="406"/>
         <location filename="../OptionsDialog.ui" line="429"/>
-        <location filename="../OptionsDialog.cpp" line="640"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="656"/>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="669"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
-        <location filename="../OptionsDialog.cpp" line="677"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="643"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="672"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
+        <location filename="../OptionsDialog.cpp" line="680"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Language: %1</source>
         <translation>언어: %1</translation>
     </message>
@@ -796,7 +796,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="598"/>
+        <location filename="../OptionsDialog.cpp" line="601"/>
         <source>Participate in %1 User Statistics</source>
         <translation>사용자 통계 참가 %1</translation>
     </message>
@@ -832,8 +832,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="614"/>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="617"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Participation ID: %1</source>
         <translation>참여 아이디: %1</translation>
     </message>
@@ -960,64 +960,64 @@ Y: %2</translation>
         <translation>%1 (인터페이스와 가까운 언어)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>%1</source>
         <comment>%1</comment>
         <translatorcomment>%1</translatorcomment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>다시 시작한 후 새 사용자 지정 폴더가 초기화됩니다. %1.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="496"/>
+        <location filename="../OptionsDialog.cpp" line="499"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translatorcomment>프로필 없음 (기본값)</translatorcomment>
         <translation>프로필 없음</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="504"/>
-        <location filename="../OptionsDialog.cpp" line="508"/>
-        <location filename="../OptionsDialog.cpp" line="510"/>
+        <location filename="../OptionsDialog.cpp" line="507"/>
+        <location filename="../OptionsDialog.cpp" line="511"/>
+        <location filename="../OptionsDialog.cpp" line="513"/>
         <source>Profile: %1</source>
         <translation>프로필: %1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="599"/>
+        <location filename="../OptionsDialog.cpp" line="602"/>
         <source>View %1 User Statistics Online</source>
         <translation>온라인 %1 사용자 통계 보기</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Not registered</source>
         <translation>등록되지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Yes</source>
         <translation>예</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
         <source>No</source>
         <translation>아니요</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
         <source>OS defined</source>
         <translation>OS 정의</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Steam defined</source>
         <translation>스팀 정의</translation>
     </message>
@@ -1062,42 +1062,42 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1690"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Export as &amp;Picture...</source>
         <translation>내 PC에 이미지로 내보내기(&amp;P)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1691"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>내 PC에 스냅매틱으로 내보내기(&amp;S)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1684"/>
+        <location filename="../ProfileInterface.cpp" line="1681"/>
         <source>&amp;Edit Properties...</source>
         <translation>속성 편집(&amp;E)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1685"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
         <source>&amp;Overwrite Image...</source>
         <translation>이미지 덮어쓰기(&amp;O)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1687"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>지도 뷰어 열기(&amp;M)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1688"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>JSON 편집기 열기(&amp;J)</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="496"/>
+        <location filename="../PictureDialog.cpp" line="488"/>
         <source>Key 1 - Avatar Preview Mode
 Key 2 - Toggle Overlay
 Arrow Keys - Navigate</source>
@@ -1106,142 +1106,140 @@ Arrow Keys - Navigate</source>
 화살표키 - 이동</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Snapmatic Picture Viewer</source>
         <translation>스냅매틱 이미지 뷰어</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Failed at %1</source>
         <translation>%1에서 실패했습니다.</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="722"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="686"/>
         <location filename="../SnapmaticEditor.cpp" line="246"/>
         <source>No Players</source>
         <translation>플레이어 없음</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="698"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="665"/>
         <source>No Crew</source>
         <translation>조직 없음</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
         <source>Unknown Location</source>
         <translation>알 수 없는 위치</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="656"/>
+        <location filename="../PictureDialog.cpp" line="620"/>
         <source>Avatar Preview Mode
 Press 1 for Default View</source>
         <translation>아바타 미리 보기 모드입니다.
 돌아가려면 숫자 1을 누릅니다.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="99"/>
+        <location filename="../PictureExport.cpp" line="93"/>
         <source>Export as Picture...</source>
         <translation>내 PC에 이미지로 내보내기</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="100"/>
-        <location filename="../PictureExport.cpp" line="262"/>
+        <location filename="../PictureExport.cpp" line="94"/>
+        <location filename="../PictureExport.cpp" line="236"/>
         <source>Export</source>
         <translation>내보내기</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="103"/>
+        <location filename="../PictureExport.cpp" line="97"/>
         <source>JPEG Graphics (*.jpg *.jpeg)</source>
         <translation>JPEG Graphics (*.jpg *.jpeg)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="104"/>
+        <location filename="../PictureExport.cpp" line="98"/>
         <source>Portable Network Graphics (*.png)</source>
         <translation>Portable Network Graphics (*.png)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="215"/>
-        <location filename="../PictureExport.cpp" line="218"/>
-        <location filename="../PictureExport.cpp" line="221"/>
-        <location filename="../PictureExport.cpp" line="224"/>
-        <location filename="../PictureExport.cpp" line="231"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="190"/>
+        <location filename="../PictureExport.cpp" line="193"/>
+        <location filename="../PictureExport.cpp" line="196"/>
+        <location filename="../PictureExport.cpp" line="199"/>
+        <location filename="../PictureExport.cpp" line="205"/>
         <source>Export as Picture</source>
         <translation>내 PC에 이미지로 내보내기</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="298"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="271"/>
         <source>Overwrite %1 with current Snapmatic picture?</source>
         <translation>%1을 현재 스냅매틱 이미지로 덮어쓰시겠습니까?</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="215"/>
+        <location filename="../PictureExport.cpp" line="190"/>
         <source>Failed to export the picture because the system occurred a write failure</source>
         <translation>시스템에서 쓰기 오류가 발생하여 이미지를 내보내지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="218"/>
+        <location filename="../PictureExport.cpp" line="193"/>
         <source>Failed to export the picture because the format detection failures</source>
         <translation>확장자 감지에 실패하여 이미지를 내보내지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="221"/>
+        <location filename="../PictureExport.cpp" line="196"/>
         <source>Failed to export the picture because the file can&apos;t be written</source>
         <translation>파일을 쓸 수 없으므로 이미지를 내보내지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="224"/>
+        <location filename="../PictureExport.cpp" line="199"/>
         <source>Failed to export the picture because of an unknown reason</source>
         <translation>알 수 없는 이유로 이미지를 내보내지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="231"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="205"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>No valid file is selected</source>
         <translation>올바른 파일이 선택되지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="261"/>
+        <location filename="../PictureExport.cpp" line="235"/>
         <source>Export as Snapmatic...</source>
         <translation>내 PC에 스냅매틱으로 내보내기</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="265"/>
+        <location filename="../PictureExport.cpp" line="239"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="266"/>
+        <location filename="../PictureExport.cpp" line="241"/>
         <source>GTA V Raw Export (*.auto)</source>
         <translation>GTA V Raw Export (*.auto)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="267"/>
+        <location filename="../PictureExport.cpp" line="243"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic pictures (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="298"/>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
-        <location filename="../PictureExport.cpp" line="323"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="271"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
+        <location filename="../PictureExport.cpp" line="290"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>Export as Snapmatic</source>
         <translation>내 PC에 스냅매틱으로 내보내기</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
         <source>Failed to export current Snapmatic picture</source>
         <translation>현재 스냅매틱 이미지를 내보내지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="323"/>
+        <location filename="../PictureExport.cpp" line="290"/>
         <source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
         <translation>.auto 확장자를 사용하기 때문에 스냅매틱을 &quot;%1&quot;로 내보냈습니다.</translation>
     </message>
@@ -1347,23 +1345,23 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="477"/>
         <location filename="../ImportDialog.cpp" line="804"/>
-        <location filename="../ProfileInterface.cpp" line="500"/>
-        <location filename="../ProfileInterface.cpp" line="501"/>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="566"/>
-        <location filename="../ProfileInterface.cpp" line="600"/>
-        <location filename="../ProfileInterface.cpp" line="642"/>
-        <location filename="../ProfileInterface.cpp" line="677"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
-        <location filename="../ProfileInterface.cpp" line="947"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
-        <location filename="../ProfileInterface.cpp" line="990"/>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="497"/>
+        <location filename="../ProfileInterface.cpp" line="498"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="563"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
+        <location filename="../ProfileInterface.cpp" line="987"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Import...</source>
         <translation>가져오기</translation>
     </message>
@@ -1380,14 +1378,14 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="520"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
         <source>All image files (%1)</source>
         <translation>모든 이미지 파일 (%1)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="489"/>
         <location filename="../ImportDialog.cpp" line="816"/>
-        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
         <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>모든 파일 (**)</translation>
@@ -1395,14 +1393,14 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
         <source>Can&apos;t import %1 because file can&apos;t be open</source>
         <translation>파일을 열 수 없으므로 %1을 가져올 수 없습니다.</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="518"/>
         <location filename="../ImportDialog.cpp" line="845"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation>파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다.</translation>
     </message>
@@ -1417,53 +1415,53 @@ Press 1 for Default View</source>
         <translation>불러오는 중...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>Snapmatic Loader</source>
         <translation>스냅매틱 불러오기</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
         <translation>&lt;h4&gt;다음 스냅매틱 이미지를 복구했습니다. &lt;/h4&gt;%1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="513"/>
         <source>Importable files (%1)</source>
         <translation>가져올 수 있는 파일 (%1)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="514"/>
         <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V로 내보내기 (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../ProfileInterface.cpp" line="515"/>
         <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>세이브 파일 (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>스냅매틱 이미지 (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
         <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>올바른 파일이 선택되지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="567"/>
-        <location filename="../ProfileInterface.cpp" line="584"/>
+        <location filename="../ProfileInterface.cpp" line="564"/>
+        <location filename="../ProfileInterface.cpp" line="581"/>
         <source>Import file %1 of %2 files</source>
         <translation>%2 파일 중 %1 파일을 가져옵니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="600"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
         <source>Import failed with...
 
 %1</source>
@@ -1472,91 +1470,91 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
         <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>스냅매틱 이미지를 읽지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
         <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>세이브 파일을 읽지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="947"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
         <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
         <translation>파일 형식을 검색할 수 없으므로 %1을 가져올 수 없습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1006"/>
+        <location filename="../ProfileInterface.cpp" line="1003"/>
         <source>Prepare Content for Import...</source>
         <translation>가져올 컨텐츠를 준비합니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
         <translation>스냅매틱 이미지를 가져오지 못했습니다. 파일이 PGTA로 시작되거나 .g5e로 끝나지 않습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation>uid %1이(가) 있는 스냅매틱 이미지가 이미 있습니다. 가져오기를 새 uid 및 타임스탬프를 할당하시겠습니까?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>스냅매틱 이미지를 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>게임 저장 파일을 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>게임 저장 파일을 가져오지 못했습니다. 게임 저장 슬롯이 남아 있지 않습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1331"/>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
-        <location filename="../ProfileInterface.cpp" line="1414"/>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1328"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
+        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
         <source>Export selected...</source>
         <translation>내보내기를 선택했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1354"/>
-        <location filename="../ProfileInterface.cpp" line="1372"/>
+        <location filename="../ProfileInterface.cpp" line="1351"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>JPG 이미지 및 GTA 스냅매틱</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1355"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1352"/>
+        <location filename="../ProfileInterface.cpp" line="1374"/>
         <source>JPG pictures only</source>
         <translation>JPG 이미지만</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1356"/>
-        <location filename="../ProfileInterface.cpp" line="1381"/>
+        <location filename="../ProfileInterface.cpp" line="1353"/>
+        <location filename="../ProfileInterface.cpp" line="1378"/>
         <source>GTA Snapmatic only</source>
         <translation>GTA 스냅매틱만</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
         <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
         <translation>%1 스냅매틱 이미지 내보내기를 시작합니다.%2 &lt;br&gt;&lt;br&gt;JPG 이미지를 사용하면 이미지 뷰어로 파일을 열 수 있습니다.&lt;br&gt;GTA 스냅매틱을 사용하면 다음과 같이 이미지를 게임으로 가져올 수 있습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1415"/>
+        <location filename="../ProfileInterface.cpp" line="1412"/>
         <source>Initialising export...</source>
         <translation>내보내기를 초기화하는 중...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
         <source>Export failed with...
 
 %1</source>
@@ -1565,45 +1563,45 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>스냅매틱 이미지 또는 세이브 파일이 선택되지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>Remove selected</source>
         <translation>선택한 항목 삭제</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>선택한 스냅매틱 이미지 및 세이브 파일을 삭제하시겠습니까?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>선택한 모든 스냅매틱 이미지 및 세이브 파일을 삭제하지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>스냅매틱 이미지가 선택되지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1614,84 +1612,84 @@ Press 1 for Default View</source>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify as Avatar</source>
         <translation>아바타 자격 부여</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2124"/>
-        <location filename="../ProfileInterface.cpp" line="2227"/>
-        <location filename="../ProfileInterface.cpp" line="2358"/>
-        <location filename="../ProfileInterface.cpp" line="2464"/>
+        <location filename="../ProfileInterface.cpp" line="2121"/>
+        <location filename="../ProfileInterface.cpp" line="2224"/>
+        <location filename="../ProfileInterface.cpp" line="2355"/>
+        <location filename="../ProfileInterface.cpp" line="2461"/>
         <source>Patch selected...</source>
         <translation>패치가 선택됨...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2125"/>
-        <location filename="../ProfileInterface.cpp" line="2144"/>
-        <location filename="../ProfileInterface.cpp" line="2228"/>
-        <location filename="../ProfileInterface.cpp" line="2247"/>
-        <location filename="../ProfileInterface.cpp" line="2359"/>
-        <location filename="../ProfileInterface.cpp" line="2378"/>
-        <location filename="../ProfileInterface.cpp" line="2465"/>
-        <location filename="../ProfileInterface.cpp" line="2484"/>
+        <location filename="../ProfileInterface.cpp" line="2122"/>
+        <location filename="../ProfileInterface.cpp" line="2141"/>
+        <location filename="../ProfileInterface.cpp" line="2225"/>
+        <location filename="../ProfileInterface.cpp" line="2244"/>
+        <location filename="../ProfileInterface.cpp" line="2356"/>
+        <location filename="../ProfileInterface.cpp" line="2375"/>
+        <location filename="../ProfileInterface.cpp" line="2462"/>
+        <location filename="../ProfileInterface.cpp" line="2481"/>
         <source>Patch file %1 of %2 files</source>
         <translation>%2 파일의 %1 패치 파일입니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
         <translation>자격 부여</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players...</source>
         <translation>플레이어 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
         <translation>플레이어 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew...</source>
         <translation>조직 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>올바른 스냅매틱 조직 아이디를 입력하지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
         <translation>조직 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title...</source>
         <translation>제목 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>올바른 스냅매틱 제목을 입력하지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
@@ -1792,45 +1790,45 @@ Press 1 for Default View</source>
         <translation>삭제</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1757"/>
+        <location filename="../ProfileInterface.cpp" line="1754"/>
         <source>&amp;View</source>
         <translation>보기(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1723"/>
-        <location filename="../ProfileInterface.cpp" line="1758"/>
-        <location filename="../ProfileInterface.cpp" line="1788"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1755"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>&amp;Export</source>
         <translation>내보내기(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1724"/>
-        <location filename="../ProfileInterface.cpp" line="1759"/>
-        <location filename="../ProfileInterface.cpp" line="1789"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1756"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>&amp;Remove</source>
         <translation>삭제(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1762"/>
-        <location filename="../ProfileInterface.cpp" line="1792"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Select</source>
         <translation>선택(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1765"/>
-        <location filename="../ProfileInterface.cpp" line="1794"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1791"/>
         <source>&amp;Deselect</source>
         <translation>선택 해제(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1768"/>
-        <location filename="../ProfileInterface.cpp" line="1797"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>Select &amp;All</source>
         <translation>모두 선택(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1771"/>
-        <location filename="../ProfileInterface.cpp" line="1800"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>&amp;Deselect All</source>
         <translation>모두 선택 해제(&amp;D)</translation>
     </message>
@@ -1930,9 +1928,9 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="191"/>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Snapmatic Properties</source>
         <translation>스냅매틱 속성</translation>
     </message>
@@ -2023,9 +2021,9 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>I/O 오류로 인해 스냅매틱 속성을 패치하지 못했습니다.</translation>
     </message>
@@ -2035,25 +2033,25 @@ Press 1 for Default View</source>
         <translation>JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>조직 스냅매틱</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>새로운 조직 스냅매틱:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>스냅매틱 제목</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>새로운 스냅매틱 제목:</translation>
@@ -2222,8 +2220,8 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../SnapmaticWidget.ui" line="152"/>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Delete picture</source>
         <translation>이미지 삭제</translation>
     </message>
@@ -2233,82 +2231,82 @@ Press 1 for Default View</source>
         <translation>삭제</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1677"/>
-        <location filename="../ProfileInterface.cpp" line="1714"/>
-        <location filename="../ProfileInterface.cpp" line="1779"/>
+        <location filename="../ProfileInterface.cpp" line="1674"/>
+        <location filename="../ProfileInterface.cpp" line="1711"/>
+        <location filename="../ProfileInterface.cpp" line="1776"/>
         <source>Edi&amp;t</source>
         <translation>편집(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1679"/>
-        <location filename="../ProfileInterface.cpp" line="1720"/>
-        <location filename="../ProfileInterface.cpp" line="1785"/>
+        <location filename="../ProfileInterface.cpp" line="1676"/>
+        <location filename="../ProfileInterface.cpp" line="1717"/>
+        <location filename="../ProfileInterface.cpp" line="1782"/>
         <source>Show &amp;In-game</source>
         <translation>인게임에서 보이기(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1682"/>
-        <location filename="../ProfileInterface.cpp" line="1721"/>
-        <location filename="../ProfileInterface.cpp" line="1786"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1718"/>
+        <location filename="../ProfileInterface.cpp" line="1783"/>
         <source>Hide &amp;In-game</source>
         <translation>인게임에서 숨기기(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1689"/>
+        <location filename="../ProfileInterface.cpp" line="1686"/>
         <source>&amp;Export</source>
         <translation>내보내기(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1692"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;View</source>
         <translation>보기(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;Remove</source>
         <translation>삭제(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
-        <location filename="../ProfileInterface.cpp" line="1727"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
         <source>&amp;Select</source>
         <translation>선택(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1700"/>
-        <location filename="../ProfileInterface.cpp" line="1729"/>
+        <location filename="../ProfileInterface.cpp" line="1697"/>
+        <location filename="../ProfileInterface.cpp" line="1726"/>
         <source>&amp;Deselect</source>
         <translation>선택 해제(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1703"/>
-        <location filename="../ProfileInterface.cpp" line="1732"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>Select &amp;All</source>
         <translation>모두 선택(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
-        <location filename="../ProfileInterface.cpp" line="1735"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>&amp;Deselect All</source>
         <translation>모두 선택 해제(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
         <source>Are you sure to delete %1 from your Snapmatic pictures?</source>
         <translation>스냅매틱 이미지에서 %1을 삭제하시겠습니까?</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Failed at deleting %1 from your Snapmatic pictures</source>
         <translation>스냅매틱 이미지에서 %1을 삭제하지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>인게임 스냅매틱 이미지에서 %1 을 숨기지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>인게임 스냅매틱 이미지에서 %1 을 표시하지 못했습니다.</translation>
     </message>
@@ -2472,7 +2470,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../OptionsDialog.cpp" line="748"/>
         <location filename="../UserInterface.cpp" line="194"/>
         <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
@@ -2490,43 +2488,43 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="346"/>
-        <location filename="../ProfileInterface.cpp" line="1718"/>
-        <location filename="../ProfileInterface.cpp" line="1783"/>
+        <location filename="../ProfileInterface.cpp" line="1715"/>
+        <location filename="../ProfileInterface.cpp" line="1780"/>
         <source>Change &amp;Title...</source>
         <translation>제목 변경(&amp;T)</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="354"/>
-        <location filename="../ProfileInterface.cpp" line="1717"/>
-        <location filename="../ProfileInterface.cpp" line="1782"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Change &amp;Crew...</source>
         <translation>&amp;조직 상징 변경(&amp;C)</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="362"/>
-        <location filename="../ProfileInterface.cpp" line="1715"/>
-        <location filename="../ProfileInterface.cpp" line="1780"/>
+        <location filename="../ProfileInterface.cpp" line="1712"/>
+        <location filename="../ProfileInterface.cpp" line="1777"/>
         <source>&amp;Qualify as Avatar</source>
         <translation>아바타 자격 부여(&amp;Q)</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="370"/>
-        <location filename="../ProfileInterface.cpp" line="1716"/>
-        <location filename="../ProfileInterface.cpp" line="1781"/>
+        <location filename="../ProfileInterface.cpp" line="1713"/>
+        <location filename="../ProfileInterface.cpp" line="1778"/>
         <source>Change &amp;Players...</source>
         <translation>플레이어 변경(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Show In-game</source>
         <translation>인게임 보이기</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Hide In-game</source>
         <translation>인게임 숨기기</translation>
     </message>
diff --git a/res/gta5sync_ru.ts b/res/gta5sync_ru.ts
index e34070f..91f274c 100644
--- a/res/gta5sync_ru.ts
+++ b/res/gta5sync_ru.ts
@@ -180,10 +180,10 @@ Pictures and Savegames</source>
 <context>
     <name>ImageEditorDialog</name>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Snapmatic Image Editor</source>
         <translation>Редактор картинок Snapmatic</translation>
     </message>
@@ -213,14 +213,14 @@ Pictures and Savegames</source>
         <translation>&amp;Закрыть</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
         <source>Patching of Snapmatic Image failed because of I/O Error</source>
         <translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Patching of Snapmatic Image failed because of Image Error</source>
         <translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation>
     </message>
@@ -399,14 +399,14 @@ Pictures and Savegames</source>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="195"/>
-        <location filename="../ProfileInterface.cpp" line="725"/>
+        <location filename="../ProfileInterface.cpp" line="722"/>
         <source>Custom Avatar</source>
         <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
         <translation>Свой Аватар</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="218"/>
-        <location filename="../ProfileInterface.cpp" line="744"/>
+        <location filename="../ProfileInterface.cpp" line="741"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>Своя Картинка</translation>
@@ -756,26 +756,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Found: %1</source>
         <translation>Найдено: %1</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="406"/>
         <location filename="../OptionsDialog.ui" line="429"/>
-        <location filename="../OptionsDialog.cpp" line="640"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="656"/>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="669"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
-        <location filename="../OptionsDialog.cpp" line="677"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="643"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="672"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
+        <location filename="../OptionsDialog.cpp" line="680"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Language: %1</source>
         <translation>Язык: %1</translation>
     </message>
@@ -796,7 +796,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="598"/>
+        <location filename="../OptionsDialog.cpp" line="601"/>
         <source>Participate in %1 User Statistics</source>
         <translation>Участвовать в пользовательской статистике %1</translation>
     </message>
@@ -829,8 +829,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="614"/>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="617"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Participation ID: %1</source>
         <translation>Номер участника: %1</translation>
     </message>
@@ -959,62 +959,62 @@ Y: %2</translation>
         <translation>%1 (Приоритетный язык)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>Другая папка будет загружена после перезапуска %1.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="599"/>
+        <location filename="../OptionsDialog.cpp" line="602"/>
         <source>View %1 User Statistics Online</source>
         <translation>Посмотреть пользовательскую статистику %1 онлайн</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Not registered</source>
         <translation>Не зарегистрирован</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Yes</source>
         <translation>Да</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
         <source>No</source>
         <translation>Нет</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
         <source>OS defined</source>
         <translation>Настройка от ОС</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Steam defined</source>
         <translation>Настройка от Steam</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="496"/>
+        <location filename="../OptionsDialog.cpp" line="499"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>Нет профиля</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="504"/>
-        <location filename="../OptionsDialog.cpp" line="508"/>
-        <location filename="../OptionsDialog.cpp" line="510"/>
+        <location filename="../OptionsDialog.cpp" line="507"/>
+        <location filename="../OptionsDialog.cpp" line="511"/>
+        <location filename="../OptionsDialog.cpp" line="513"/>
         <source>Profile: %1</source>
         <translation>Профиль: %1</translation>
     </message>
@@ -1058,43 +1058,43 @@ Y: %2</translation>
         <translation>&amp;Закрыть</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="100"/>
-        <location filename="../PictureExport.cpp" line="262"/>
+        <location filename="../PictureExport.cpp" line="94"/>
+        <location filename="../PictureExport.cpp" line="236"/>
         <source>Export</source>
         <translation>Экспортировать</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1690"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Export as &amp;Picture...</source>
         <translation>Экспортировать как &amp;картинку...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1691"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>Экспортировать как &amp;Snapmatic...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1685"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
         <source>&amp;Overwrite Image...</source>
         <translation>&amp;Перезаписать картинку...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1684"/>
+        <location filename="../ProfileInterface.cpp" line="1681"/>
         <source>&amp;Edit Properties...</source>
         <translation>&amp;Изменить свойства...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1687"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>Открыть &amp;карту...</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="496"/>
+        <location filename="../PictureDialog.cpp" line="488"/>
         <source>Key 1 - Avatar Preview Mode
 Key 2 - Toggle Overlay
 Arrow Keys - Navigate</source>
@@ -1103,142 +1103,140 @@ Arrow Keys - Navigate</source>
 Стрелки - Навигация</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Snapmatic Picture Viewer</source>
         <translation>Просмотрщик фотографий Snapmatic</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Failed at %1</source>
         <translation>Ошибка при %1</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="698"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="665"/>
         <source>No Crew</source>
         <translation>Вне банды</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="722"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="686"/>
         <location filename="../SnapmaticEditor.cpp" line="246"/>
         <source>No Players</source>
         <translation>Игроков нет</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="656"/>
+        <location filename="../PictureDialog.cpp" line="620"/>
         <source>Avatar Preview Mode
 Press 1 for Default View</source>
         <translation>Режим просмотра аватарок
 Нажмите 1 для стандартного просмотра</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
         <source>Unknown Location</source>
         <translation>Неизвестное место</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="104"/>
+        <location filename="../PictureExport.cpp" line="98"/>
         <source>Portable Network Graphics (*.png)</source>
         <translation>Картинка Portable Network Graphics (*.png)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="298"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="271"/>
         <source>Overwrite %1 with current Snapmatic picture?</source>
         <translation>Перезаписать %1 текущей картинкой Snapmatic?</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="99"/>
+        <location filename="../PictureExport.cpp" line="93"/>
         <source>Export as Picture...</source>
         <translation>Экспорт как картинку...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="103"/>
+        <location filename="../PictureExport.cpp" line="97"/>
         <source>JPEG Graphics (*.jpg *.jpeg)</source>
         <translation>Картинка JPEG (*.jpg *.jpeg)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="215"/>
-        <location filename="../PictureExport.cpp" line="218"/>
-        <location filename="../PictureExport.cpp" line="221"/>
-        <location filename="../PictureExport.cpp" line="224"/>
-        <location filename="../PictureExport.cpp" line="231"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="190"/>
+        <location filename="../PictureExport.cpp" line="193"/>
+        <location filename="../PictureExport.cpp" line="196"/>
+        <location filename="../PictureExport.cpp" line="199"/>
+        <location filename="../PictureExport.cpp" line="205"/>
         <source>Export as Picture</source>
         <translation>Экспорт как картинку</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="215"/>
+        <location filename="../PictureExport.cpp" line="190"/>
         <source>Failed to export the picture because the system occurred a write failure</source>
         <translation>Не удалось экспортировать картинку из-за ошибки системы при записи</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="218"/>
+        <location filename="../PictureExport.cpp" line="193"/>
         <source>Failed to export the picture because the format detection failures</source>
         <translation>Не удалось экспортировать картинку, потому что произошла ошибка при распозновании формата</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="221"/>
+        <location filename="../PictureExport.cpp" line="196"/>
         <source>Failed to export the picture because the file can&apos;t be written</source>
         <translation>Не удалось экспортировать картинку, так как файл не может быть записан</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="224"/>
+        <location filename="../PictureExport.cpp" line="199"/>
         <source>Failed to export the picture because of an unknown reason</source>
         <translation>Не удалось экспортировать картинку по неизвестной причине</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
         <source>Failed to export current Snapmatic picture</source>
         <translation>Не удалось экспортировать текущую картинку Snapmatic</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="261"/>
+        <location filename="../PictureExport.cpp" line="235"/>
         <source>Export as Snapmatic...</source>
         <translation>Экспортировать как Snapmatic...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="298"/>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
-        <location filename="../PictureExport.cpp" line="323"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="271"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
+        <location filename="../PictureExport.cpp" line="290"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>Export as Snapmatic</source>
         <translation>Экспортировать как Snapmatic</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="323"/>
+        <location filename="../PictureExport.cpp" line="290"/>
         <source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
         <translation>Snapmatic был экспортирован как &quot;%1&quot; из-за расширеня файла.</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="231"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="205"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>No valid file is selected</source>
         <translation>Выбранный файл неверен</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="265"/>
+        <location filename="../PictureExport.cpp" line="239"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="266"/>
+        <location filename="../PictureExport.cpp" line="241"/>
         <source>GTA V Raw Export (*.auto)</source>
         <translation>GTA V Экспорт Исходника (*.auto)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="267"/>
+        <location filename="../PictureExport.cpp" line="243"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Картинки Snapmatic (PGTA*)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1688"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>Открыть &amp;редактор JSON...</translation>
     </message>
@@ -1340,12 +1338,12 @@ Press 1 for Default View</source>
         <translation>Загрузка...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>Snapmatic Loader</source>
         <translation>Загрузчик Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
         <translatorcomment>Change wording if the %1 is not a multiline beginning at new line
 </translatorcomment>
@@ -1354,23 +1352,23 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="477"/>
         <location filename="../ImportDialog.cpp" line="804"/>
-        <location filename="../ProfileInterface.cpp" line="500"/>
-        <location filename="../ProfileInterface.cpp" line="501"/>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="566"/>
-        <location filename="../ProfileInterface.cpp" line="600"/>
-        <location filename="../ProfileInterface.cpp" line="642"/>
-        <location filename="../ProfileInterface.cpp" line="677"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
-        <location filename="../ProfileInterface.cpp" line="947"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
-        <location filename="../ProfileInterface.cpp" line="990"/>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="497"/>
+        <location filename="../ProfileInterface.cpp" line="498"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="563"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
+        <location filename="../ProfileInterface.cpp" line="987"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Import...</source>
         <translation>Импортировать...</translation>
     </message>
@@ -1385,13 +1383,13 @@ Press 1 for Default View</source>
         <translation>Импортировать</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../ProfileInterface.cpp" line="515"/>
         <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>Файлы сохранения (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Картинка Snapmatic (PGTA*)</translation>
@@ -1399,19 +1397,19 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="489"/>
         <location filename="../ImportDialog.cpp" line="816"/>
-        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
         <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>Все файлы (**)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="567"/>
-        <location filename="../ProfileInterface.cpp" line="584"/>
+        <location filename="../ProfileInterface.cpp" line="564"/>
+        <location filename="../ProfileInterface.cpp" line="581"/>
         <source>Import file %1 of %2 files</source>
         <translation>Импортируются файлы %1 из %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="600"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
         <source>Import failed with...
 
 %1</source>
@@ -1420,20 +1418,20 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
         <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>Не удалось загрузить картинку Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
         <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>Не удалось загрузить файл сохранения</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
         <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>Выбранный файл неверен</translation>
@@ -1444,145 +1442,145 @@ Press 1 for Default View</source>
         <translation>Включенные картинки: %1 из %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="513"/>
         <source>Importable files (%1)</source>
         <translation>Файлы для импорта (%1)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="520"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
         <source>All image files (%1)</source>
         <translation>Все файлы изображений (%1)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
         <source>Can&apos;t import %1 because file can&apos;t be open</source>
         <translation>Не удалось открыть %1, файл не может быть открыт</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="518"/>
         <location filename="../ImportDialog.cpp" line="845"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="947"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
         <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
         <translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
         <translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1354"/>
-        <location filename="../ProfileInterface.cpp" line="1372"/>
+        <location filename="../ProfileInterface.cpp" line="1351"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>Картинки JPG и GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1355"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1352"/>
+        <location filename="../ProfileInterface.cpp" line="1374"/>
         <source>JPG pictures only</source>
         <translation>Только картинки JPG</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1356"/>
-        <location filename="../ProfileInterface.cpp" line="1381"/>
+        <location filename="../ProfileInterface.cpp" line="1353"/>
+        <location filename="../ProfileInterface.cpp" line="1378"/>
         <source>GTA Snapmatic only</source>
         <translation>Только GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1415"/>
+        <location filename="../ProfileInterface.cpp" line="1412"/>
         <source>Initialising export...</source>
         <translation>Подготовка к экспорту...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>Не выделены ни один Snapmatic или сохранение</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>Remove selected</source>
         <translation>Снять выделение</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1006"/>
+        <location filename="../ProfileInterface.cpp" line="1003"/>
         <source>Prepare Content for Import...</source>
         <translation>Подготовка данных к импорту...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify as Avatar</source>
         <translation>Пометить как Аватар</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>Не выделена ни одна картинка Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2124"/>
-        <location filename="../ProfileInterface.cpp" line="2227"/>
-        <location filename="../ProfileInterface.cpp" line="2358"/>
-        <location filename="../ProfileInterface.cpp" line="2464"/>
+        <location filename="../ProfileInterface.cpp" line="2121"/>
+        <location filename="../ProfileInterface.cpp" line="2224"/>
+        <location filename="../ProfileInterface.cpp" line="2355"/>
+        <location filename="../ProfileInterface.cpp" line="2461"/>
         <source>Patch selected...</source>
         <translation>Пропатчить выделенные...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2125"/>
-        <location filename="../ProfileInterface.cpp" line="2144"/>
-        <location filename="../ProfileInterface.cpp" line="2228"/>
-        <location filename="../ProfileInterface.cpp" line="2247"/>
-        <location filename="../ProfileInterface.cpp" line="2359"/>
-        <location filename="../ProfileInterface.cpp" line="2378"/>
-        <location filename="../ProfileInterface.cpp" line="2465"/>
-        <location filename="../ProfileInterface.cpp" line="2484"/>
+        <location filename="../ProfileInterface.cpp" line="2122"/>
+        <location filename="../ProfileInterface.cpp" line="2141"/>
+        <location filename="../ProfileInterface.cpp" line="2225"/>
+        <location filename="../ProfileInterface.cpp" line="2244"/>
+        <location filename="../ProfileInterface.cpp" line="2356"/>
+        <location filename="../ProfileInterface.cpp" line="2375"/>
+        <location filename="../ProfileInterface.cpp" line="2462"/>
+        <location filename="../ProfileInterface.cpp" line="2481"/>
         <source>Patch file %1 of %2 files</source>
         <translation>Изменяется файл %1 из %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1592,86 +1590,86 @@ Press 1 for Default View</source>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translatorcomment>Можно использовать слово &quot;приписать&quot;</translatorcomment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>Помечание</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players...</source>
         <translation>Изменить игроков...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>Измение игроков</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew...</source>
         <translation>Изменить банду...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>Введённый идентификатор банды не верен</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>Изменение банды</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title...</source>
         <translation>Изменить заголовок...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>Введённый заголовок не верен</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>Изменение заголовка</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
         <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
         <translation>%1Эскпортировать картинки Snapmatic%2&lt;br&gt;&lt;br&gt;Картинки JPG можно открыть любым просмотрщиком&lt;br&gt;Картинки формата GTA Snapmatic можно снова импортировать в игру&lt;br&gt;&lt;br&gt;Экспортировать как:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1331"/>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
-        <location filename="../ProfileInterface.cpp" line="1414"/>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1328"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
+        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
         <source>Export selected...</source>
         <translation>Экпортировать выделенное...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
         <source>Export failed with...
 
 %1</source>
@@ -1692,7 +1690,7 @@ Press 1 for Default View</source>
         <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="514"/>
         <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
@@ -1822,38 +1820,38 @@ Press 1 for Default View</source>
         <translation>Не удалось удалить сохранение %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1757"/>
+        <location filename="../ProfileInterface.cpp" line="1754"/>
         <source>&amp;View</source>
         <translation>&amp;Просмотр</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1724"/>
-        <location filename="../ProfileInterface.cpp" line="1759"/>
-        <location filename="../ProfileInterface.cpp" line="1789"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1756"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>&amp;Remove</source>
         <translation>&amp;Удалить</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1762"/>
-        <location filename="../ProfileInterface.cpp" line="1792"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Select</source>
         <translation>&amp;Выбрать</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1765"/>
-        <location filename="../ProfileInterface.cpp" line="1794"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1791"/>
         <source>&amp;Deselect</source>
         <translation>Сн&amp;ять выбор</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1768"/>
-        <location filename="../ProfileInterface.cpp" line="1797"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>Select &amp;All</source>
         <translation>В&amp;ыбрать все</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1771"/>
-        <location filename="../ProfileInterface.cpp" line="1800"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>&amp;Deselect All</source>
         <translation>Снять выбо&amp;р со всех</translation>
     </message>
@@ -1863,9 +1861,9 @@ Press 1 for Default View</source>
         <translation>Копировать сохранение</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1723"/>
-        <location filename="../ProfileInterface.cpp" line="1758"/>
-        <location filename="../ProfileInterface.cpp" line="1788"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1755"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>&amp;Export</source>
         <translation>&amp;Экспортировать</translation>
     </message>
@@ -1917,9 +1915,9 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="191"/>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Snapmatic Properties</source>
         <translation>Свойства Snapmatic</translation>
     </message>
@@ -1969,7 +1967,7 @@ Press 1 for Default View</source>
         <translation>Meme</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>Заголовок Snapmatic</translation>
@@ -2068,26 +2066,26 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>Новый заголовок Snapmatic:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>Банда на Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>Новая банда на Snapmatic:</translation>
@@ -2199,88 +2197,88 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../SnapmaticWidget.ui" line="152"/>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Delete picture</source>
         <translation>Удалить картинку</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
         <source>Are you sure to delete %1 from your Snapmatic pictures?</source>
         <translation>Уверены, что хотите удалить %1 из коллекции картинок Snapmatic?</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Failed at deleting %1 from your Snapmatic pictures</source>
         <translation>Не удалось удалить %1 из колелкции картинок Snapmatic</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>Не удалось скрыть %1 из списка картинок Snapmatic в игре</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1677"/>
-        <location filename="../ProfileInterface.cpp" line="1714"/>
-        <location filename="../ProfileInterface.cpp" line="1779"/>
+        <location filename="../ProfileInterface.cpp" line="1674"/>
+        <location filename="../ProfileInterface.cpp" line="1711"/>
+        <location filename="../ProfileInterface.cpp" line="1776"/>
         <source>Edi&amp;t</source>
         <translation>&amp;Правка</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1679"/>
-        <location filename="../ProfileInterface.cpp" line="1720"/>
-        <location filename="../ProfileInterface.cpp" line="1785"/>
+        <location filename="../ProfileInterface.cpp" line="1676"/>
+        <location filename="../ProfileInterface.cpp" line="1717"/>
+        <location filename="../ProfileInterface.cpp" line="1782"/>
         <source>Show &amp;In-game</source>
         <translation>Показывать в &amp;игре</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1682"/>
-        <location filename="../ProfileInterface.cpp" line="1721"/>
-        <location filename="../ProfileInterface.cpp" line="1786"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1718"/>
+        <location filename="../ProfileInterface.cpp" line="1783"/>
         <source>Hide &amp;In-game</source>
         <translation>Ск&amp;рыть в игре</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1689"/>
+        <location filename="../ProfileInterface.cpp" line="1686"/>
         <source>&amp;Export</source>
         <translation>&amp;Экспорт</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1692"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;View</source>
         <translation>По&amp;казать</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;Remove</source>
         <translation>У&amp;далить</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
-        <location filename="../ProfileInterface.cpp" line="1727"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
         <source>&amp;Select</source>
         <translation>&amp;Выделить</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1700"/>
-        <location filename="../ProfileInterface.cpp" line="1729"/>
+        <location filename="../ProfileInterface.cpp" line="1697"/>
+        <location filename="../ProfileInterface.cpp" line="1726"/>
         <source>&amp;Deselect</source>
         <translation>Сн&amp;ять выделение</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1703"/>
-        <location filename="../ProfileInterface.cpp" line="1732"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>Select &amp;All</source>
         <translation>В&amp;ыбрать все</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
-        <location filename="../ProfileInterface.cpp" line="1735"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>&amp;Deselect All</source>
         <translation>Снять выбо&amp;р со всех</translation>
     </message>
@@ -2404,29 +2402,29 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="370"/>
-        <location filename="../ProfileInterface.cpp" line="1716"/>
-        <location filename="../ProfileInterface.cpp" line="1781"/>
+        <location filename="../ProfileInterface.cpp" line="1713"/>
+        <location filename="../ProfileInterface.cpp" line="1778"/>
         <source>Change &amp;Players...</source>
         <translation>&amp;Изменить игрока...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="346"/>
-        <location filename="../ProfileInterface.cpp" line="1718"/>
-        <location filename="../ProfileInterface.cpp" line="1783"/>
+        <location filename="../ProfileInterface.cpp" line="1715"/>
+        <location filename="../ProfileInterface.cpp" line="1780"/>
         <source>Change &amp;Title...</source>
         <translation>Изменить &amp;Заголовок...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="354"/>
-        <location filename="../ProfileInterface.cpp" line="1717"/>
-        <location filename="../ProfileInterface.cpp" line="1782"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Change &amp;Crew...</source>
         <translation>Изменить &amp;банду...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="362"/>
-        <location filename="../ProfileInterface.cpp" line="1715"/>
-        <location filename="../ProfileInterface.cpp" line="1780"/>
+        <location filename="../ProfileInterface.cpp" line="1712"/>
+        <location filename="../ProfileInterface.cpp" line="1777"/>
         <source>&amp;Qualify as Avatar</source>
         <translation>&amp;Пометить как Аватар</translation>
     </message>
@@ -2480,7 +2478,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../OptionsDialog.cpp" line="748"/>
         <location filename="../UserInterface.cpp" line="194"/>
         <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
@@ -2528,16 +2526,16 @@ Press 1 for Default View</source>
         <translation>Пере&amp;загрузить</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Show In-game</source>
         <translation>Показывать в игре</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Hide In-game</source>
         <translation>Скрыть в игре</translation>
     </message>
diff --git a/res/gta5sync_uk.ts b/res/gta5sync_uk.ts
index d181481..d81847b 100644
--- a/res/gta5sync_uk.ts
+++ b/res/gta5sync_uk.ts
@@ -204,22 +204,22 @@ Pictures and Savegames</source>
         <translation>&amp;Закрити</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Snapmatic Image Editor</source>
         <translation>Редактор Snapmatic зображень</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
         <source>Patching of Snapmatic Image failed because of I/O Error</source>
         <translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Patching of Snapmatic Image failed because of Image Error</source>
         <translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation>
     </message>
@@ -388,14 +388,14 @@ Pictures and Savegames</source>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="195"/>
-        <location filename="../ProfileInterface.cpp" line="725"/>
+        <location filename="../ProfileInterface.cpp" line="722"/>
         <source>Custom Avatar</source>
         <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
         <translation>Користувацький Аватар</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="218"/>
-        <location filename="../ProfileInterface.cpp" line="744"/>
+        <location filename="../ProfileInterface.cpp" line="741"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>Користувацьке Зображення</translation>
@@ -752,26 +752,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Found: %1</source>
         <translation>Знайдено:%1</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="406"/>
         <location filename="../OptionsDialog.ui" line="429"/>
-        <location filename="../OptionsDialog.cpp" line="640"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="656"/>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="669"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
-        <location filename="../OptionsDialog.cpp" line="677"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="643"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="672"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
+        <location filename="../OptionsDialog.cpp" line="680"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Language: %1</source>
         <translation>Мова: %1</translation>
     </message>
@@ -793,7 +793,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="598"/>
+        <location filename="../OptionsDialog.cpp" line="601"/>
         <source>Participate in %1 User Statistics</source>
         <translation>Опитування %1 про устаткування ПК</translation>
     </message>
@@ -829,8 +829,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="614"/>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="617"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Participation ID: %1</source>
         <translation>ID учасника : %1</translation>
     </message>
@@ -952,62 +952,62 @@ Y: %2</translation>
         <translation>%1 (пріоритет мови)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>Нова користувацька папка буде ініціалізована після перезапуску %1.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="496"/>
+        <location filename="../OptionsDialog.cpp" line="499"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>Жодного</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="504"/>
-        <location filename="../OptionsDialog.cpp" line="508"/>
-        <location filename="../OptionsDialog.cpp" line="510"/>
+        <location filename="../OptionsDialog.cpp" line="507"/>
+        <location filename="../OptionsDialog.cpp" line="511"/>
+        <location filename="../OptionsDialog.cpp" line="513"/>
         <source>Profile: %1</source>
         <translation>Профіль: %1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="599"/>
+        <location filename="../OptionsDialog.cpp" line="602"/>
         <source>View %1 User Statistics Online</source>
         <translation>Переглянути користувацьку статистику %1 онлайн</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Not registered</source>
         <translation>Не зареєстрований</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Yes</source>
         <translation>Так</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
         <source>No</source>
         <translation>Ні</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
         <source>OS defined</source>
         <translation>Визначається ОС</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Steam defined</source>
         <translation>Визначається Steam</translation>
     </message>
@@ -1052,42 +1052,42 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1690"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Export as &amp;Picture...</source>
         <translation>Експортувати як &amp;зображення...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1691"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>Експортувати як &amp;Snapmatic...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1684"/>
+        <location filename="../ProfileInterface.cpp" line="1681"/>
         <source>&amp;Edit Properties...</source>
         <translation>&amp;Змінити властивості...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1685"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
         <source>&amp;Overwrite Image...</source>
         <translation>&amp;Перезаписати зображення...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1687"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>Відкрити &amp;карту...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1688"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>Відкрити редактор &amp;JSON...</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="496"/>
+        <location filename="../PictureDialog.cpp" line="488"/>
         <source>Key 1 - Avatar Preview Mode
 Key 2 - Toggle Overlay
 Arrow Keys - Navigate</source>
@@ -1096,142 +1096,140 @@ Arrow Keys - Navigate</source>
 Стрілки - Навігація</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Snapmatic Picture Viewer</source>
         <translation>Переглядач фотографій Snapmatic</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Failed at %1</source>
         <translation>Помилка на%1</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="722"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="686"/>
         <location filename="../SnapmaticEditor.cpp" line="246"/>
         <source>No Players</source>
         <translation>Гравців немає</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="698"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="665"/>
         <source>No Crew</source>
         <translation>Банди немає</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
         <source>Unknown Location</source>
         <translation>Невідома локація</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="656"/>
+        <location filename="../PictureDialog.cpp" line="620"/>
         <source>Avatar Preview Mode
 Press 1 for Default View</source>
         <translation>Режим для аватарок
 Натисніть 1 для стандартного перегляду</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="99"/>
+        <location filename="../PictureExport.cpp" line="93"/>
         <source>Export as Picture...</source>
         <translation>Експортувати як зображення...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="100"/>
-        <location filename="../PictureExport.cpp" line="262"/>
+        <location filename="../PictureExport.cpp" line="94"/>
+        <location filename="../PictureExport.cpp" line="236"/>
         <source>Export</source>
         <translation>Експорт</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="103"/>
+        <location filename="../PictureExport.cpp" line="97"/>
         <source>JPEG Graphics (*.jpg *.jpeg)</source>
         <translation>JPEG Graphics (*.jpg *.jpeg)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="104"/>
+        <location filename="../PictureExport.cpp" line="98"/>
         <source>Portable Network Graphics (*.png)</source>
         <translation>Portable Network Graphics (*.png)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="215"/>
-        <location filename="../PictureExport.cpp" line="218"/>
-        <location filename="../PictureExport.cpp" line="221"/>
-        <location filename="../PictureExport.cpp" line="224"/>
-        <location filename="../PictureExport.cpp" line="231"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="190"/>
+        <location filename="../PictureExport.cpp" line="193"/>
+        <location filename="../PictureExport.cpp" line="196"/>
+        <location filename="../PictureExport.cpp" line="199"/>
+        <location filename="../PictureExport.cpp" line="205"/>
         <source>Export as Picture</source>
         <translation>Експортувати як зображення</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="298"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="271"/>
         <source>Overwrite %1 with current Snapmatic picture?</source>
         <translation>Перезаписати %1 поточним Snapmatic зображенням?</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="215"/>
+        <location filename="../PictureExport.cpp" line="190"/>
         <source>Failed to export the picture because the system occurred a write failure</source>
         <translation>Не вдалося експортувати зображення, оскільки в системі виникла помилка запису</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="218"/>
+        <location filename="../PictureExport.cpp" line="193"/>
         <source>Failed to export the picture because the format detection failures</source>
         <translation>Не вдалося експортувати зображення через помилки виявлення формату</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="221"/>
+        <location filename="../PictureExport.cpp" line="196"/>
         <source>Failed to export the picture because the file can&apos;t be written</source>
         <translation>Не вдалося експортувати зображення, оскільки файл не може бути записаний</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="224"/>
+        <location filename="../PictureExport.cpp" line="199"/>
         <source>Failed to export the picture because of an unknown reason</source>
         <translation>Не вдалося експортувати зображення через невідому причину</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="231"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="205"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>No valid file is selected</source>
         <translation>Вибрано невірний файл</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="261"/>
+        <location filename="../PictureExport.cpp" line="235"/>
         <source>Export as Snapmatic...</source>
         <translation>Експортувати як Snapmatic...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="265"/>
+        <location filename="../PictureExport.cpp" line="239"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="266"/>
+        <location filename="../PictureExport.cpp" line="241"/>
         <source>GTA V Raw Export (*.auto)</source>
         <translation>GTA V RAW-експорт (*.auto)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="267"/>
+        <location filename="../PictureExport.cpp" line="243"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic картинки (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="298"/>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
-        <location filename="../PictureExport.cpp" line="323"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="271"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
+        <location filename="../PictureExport.cpp" line="290"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>Export as Snapmatic</source>
         <translation>Експортувати як Snapmatic</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
         <source>Failed to export current Snapmatic picture</source>
         <translation>Не вдалося експортувати поточну фотографію Snapmatic</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="323"/>
+        <location filename="../PictureExport.cpp" line="290"/>
         <source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
         <translation>Експортується Snapmatic до &quot;%1&quot; через використання .auto розширення.</translation>
     </message>
@@ -1337,23 +1335,23 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="477"/>
         <location filename="../ImportDialog.cpp" line="804"/>
-        <location filename="../ProfileInterface.cpp" line="500"/>
-        <location filename="../ProfileInterface.cpp" line="501"/>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="566"/>
-        <location filename="../ProfileInterface.cpp" line="600"/>
-        <location filename="../ProfileInterface.cpp" line="642"/>
-        <location filename="../ProfileInterface.cpp" line="677"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
-        <location filename="../ProfileInterface.cpp" line="947"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
-        <location filename="../ProfileInterface.cpp" line="990"/>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="497"/>
+        <location filename="../ProfileInterface.cpp" line="498"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="563"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
+        <location filename="../ProfileInterface.cpp" line="987"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Import...</source>
         <translation>Імпортування...</translation>
     </message>
@@ -1370,14 +1368,14 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="520"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
         <source>All image files (%1)</source>
         <translation>Файли зображень (%1)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="489"/>
         <location filename="../ImportDialog.cpp" line="816"/>
-        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
         <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>Усі файли (**)</translation>
@@ -1385,14 +1383,14 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
         <source>Can&apos;t import %1 because file can&apos;t be open</source>
         <translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="518"/>
         <location filename="../ImportDialog.cpp" line="845"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
     </message>
@@ -1407,53 +1405,53 @@ Press 1 for Default View</source>
         <translation>Завантаження...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>Snapmatic Loader</source>
         <translation>Snapmatic Loader</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
         <translation>&lt;h4&gt;Наступні Snapmatic зображення були відновлені&lt;/h4&gt;%1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="513"/>
         <source>Importable files (%1)</source>
         <translation>Імпортуються файли (%1)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="514"/>
         <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../ProfileInterface.cpp" line="515"/>
         <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>Файли збереження гри (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic зображення (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
         <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>Вибрані недійсні файли</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="567"/>
-        <location filename="../ProfileInterface.cpp" line="584"/>
+        <location filename="../ProfileInterface.cpp" line="564"/>
+        <location filename="../ProfileInterface.cpp" line="581"/>
         <source>Import file %1 of %2 files</source>
         <translation>Імпортується файл %1 з %2 файлів</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="600"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
         <source>Import failed with...
 
 %1</source>
@@ -1462,81 +1460,81 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
         <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>Не вдалося прочитати Snapmatic картинку</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
         <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>Не вдалося прочитати файл збереження гри</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="947"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
         <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
         <translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
         <translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1331"/>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
-        <location filename="../ProfileInterface.cpp" line="1414"/>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1328"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
+        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
         <source>Export selected...</source>
         <translation>Експорт обраних...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1354"/>
-        <location filename="../ProfileInterface.cpp" line="1372"/>
+        <location filename="../ProfileInterface.cpp" line="1351"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>JPG картинки і GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1355"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1352"/>
+        <location filename="../ProfileInterface.cpp" line="1374"/>
         <source>JPG pictures only</source>
         <translation>Тільки JPG картинки</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1356"/>
-        <location filename="../ProfileInterface.cpp" line="1381"/>
+        <location filename="../ProfileInterface.cpp" line="1353"/>
+        <location filename="../ProfileInterface.cpp" line="1378"/>
         <source>GTA Snapmatic only</source>
         <translation>Тільки GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
         <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
         <translation>%1 Експортувати Snapmatic фотографії %2 &lt;br&gt;&lt;br&gt; Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень&lt;br&gt;GTA Snapmatic дає змогу імпортувати зображення в гру&lt;br&gt;&lt;br&gt;Експортувати як:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1415"/>
+        <location filename="../ProfileInterface.cpp" line="1412"/>
         <source>Initialising export...</source>
         <translation>Ініціалізація експорту...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
         <source>Export failed with...
 
 %1</source>
@@ -1545,45 +1543,45 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>Remove selected</source>
         <translation>Видалити вибрані</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>Не вибрано жодного Snapmatic зображення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1593,91 +1591,91 @@ Press 1 for Default View</source>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1006"/>
+        <location filename="../ProfileInterface.cpp" line="1003"/>
         <source>Prepare Content for Import...</source>
         <translation>Підготувати контент для імпорту ...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify as Avatar</source>
         <translation>Позначити як Аватар</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2124"/>
-        <location filename="../ProfileInterface.cpp" line="2227"/>
-        <location filename="../ProfileInterface.cpp" line="2358"/>
-        <location filename="../ProfileInterface.cpp" line="2464"/>
+        <location filename="../ProfileInterface.cpp" line="2121"/>
+        <location filename="../ProfileInterface.cpp" line="2224"/>
+        <location filename="../ProfileInterface.cpp" line="2355"/>
+        <location filename="../ProfileInterface.cpp" line="2461"/>
         <source>Patch selected...</source>
         <translation>Вибір патчу...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2125"/>
-        <location filename="../ProfileInterface.cpp" line="2144"/>
-        <location filename="../ProfileInterface.cpp" line="2228"/>
-        <location filename="../ProfileInterface.cpp" line="2247"/>
-        <location filename="../ProfileInterface.cpp" line="2359"/>
-        <location filename="../ProfileInterface.cpp" line="2378"/>
-        <location filename="../ProfileInterface.cpp" line="2465"/>
-        <location filename="../ProfileInterface.cpp" line="2484"/>
+        <location filename="../ProfileInterface.cpp" line="2122"/>
+        <location filename="../ProfileInterface.cpp" line="2141"/>
+        <location filename="../ProfileInterface.cpp" line="2225"/>
+        <location filename="../ProfileInterface.cpp" line="2244"/>
+        <location filename="../ProfileInterface.cpp" line="2356"/>
+        <location filename="../ProfileInterface.cpp" line="2375"/>
+        <location filename="../ProfileInterface.cpp" line="2462"/>
+        <location filename="../ProfileInterface.cpp" line="2481"/>
         <source>Patch file %1 of %2 files</source>
         <translation>Патч файлу %1 з %2 файлів</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>Якість</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players...</source>
         <translation>Зміна гравців...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>Змінити гравців</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew...</source>
         <translation>Зміна банди...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>Змінити банду</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title...</source>
         <translation>Зміна назви...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>Змінити назву</translation>
@@ -1777,45 +1775,45 @@ Press 1 for Default View</source>
         <translation>Видалити</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1757"/>
+        <location filename="../ProfileInterface.cpp" line="1754"/>
         <source>&amp;View</source>
         <translation>&amp;Перегляд</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1723"/>
-        <location filename="../ProfileInterface.cpp" line="1758"/>
-        <location filename="../ProfileInterface.cpp" line="1788"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1755"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>&amp;Export</source>
         <translation>&amp;Експорт</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1724"/>
-        <location filename="../ProfileInterface.cpp" line="1759"/>
-        <location filename="../ProfileInterface.cpp" line="1789"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1756"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>&amp;Remove</source>
         <translation>&amp;Видалення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1762"/>
-        <location filename="../ProfileInterface.cpp" line="1792"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Select</source>
         <translation>&amp;Виділення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1765"/>
-        <location filename="../ProfileInterface.cpp" line="1794"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1791"/>
         <source>&amp;Deselect</source>
         <translation>&amp;Зняти виділення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1768"/>
-        <location filename="../ProfileInterface.cpp" line="1797"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>Select &amp;All</source>
         <translation>Вибрати &amp;усі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1771"/>
-        <location filename="../ProfileInterface.cpp" line="1800"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>&amp;Deselect All</source>
         <translation>&amp;Зняти виділення усіх</translation>
     </message>
@@ -1915,9 +1913,9 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="191"/>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Snapmatic Properties</source>
         <translation>Властивості Snapmatic</translation>
     </message>
@@ -2008,9 +2006,9 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
     </message>
@@ -2020,25 +2018,25 @@ Press 1 for Default View</source>
         <translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>Snapmatic банда</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>Нова Snapmatic банда:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>Snapmatic назва</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>Новий Snapmatic заголовок:</translation>
@@ -2202,8 +2200,8 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../SnapmaticWidget.ui" line="152"/>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Delete picture</source>
         <translation>Видалити фото</translation>
     </message>
@@ -2213,82 +2211,82 @@ Press 1 for Default View</source>
         <translation>Видалити</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1677"/>
-        <location filename="../ProfileInterface.cpp" line="1714"/>
-        <location filename="../ProfileInterface.cpp" line="1779"/>
+        <location filename="../ProfileInterface.cpp" line="1674"/>
+        <location filename="../ProfileInterface.cpp" line="1711"/>
+        <location filename="../ProfileInterface.cpp" line="1776"/>
         <source>Edi&amp;t</source>
         <translation>Редагува&amp;ти</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1679"/>
-        <location filename="../ProfileInterface.cpp" line="1720"/>
-        <location filename="../ProfileInterface.cpp" line="1785"/>
+        <location filename="../ProfileInterface.cpp" line="1676"/>
+        <location filename="../ProfileInterface.cpp" line="1717"/>
+        <location filename="../ProfileInterface.cpp" line="1782"/>
         <source>Show &amp;In-game</source>
         <translation>Показати &amp;у грі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1682"/>
-        <location filename="../ProfileInterface.cpp" line="1721"/>
-        <location filename="../ProfileInterface.cpp" line="1786"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1718"/>
+        <location filename="../ProfileInterface.cpp" line="1783"/>
         <source>Hide &amp;In-game</source>
         <translation>Сховати &amp;у грі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1689"/>
+        <location filename="../ProfileInterface.cpp" line="1686"/>
         <source>&amp;Export</source>
         <translation>&amp;Експортувати</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1692"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;View</source>
         <translation>&amp;Переглянути</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;Remove</source>
         <translation>&amp;Видалити</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
-        <location filename="../ProfileInterface.cpp" line="1727"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
         <source>&amp;Select</source>
         <translation>&amp;Виділення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1700"/>
-        <location filename="../ProfileInterface.cpp" line="1729"/>
+        <location filename="../ProfileInterface.cpp" line="1697"/>
+        <location filename="../ProfileInterface.cpp" line="1726"/>
         <source>&amp;Deselect</source>
         <translation>&amp;Зняти виділення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1703"/>
-        <location filename="../ProfileInterface.cpp" line="1732"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>Select &amp;All</source>
         <translation>Вибрати &amp;усі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
-        <location filename="../ProfileInterface.cpp" line="1735"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>&amp;Deselect All</source>
         <translation>&amp;Зняти виділення усіх</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
         <source>Are you sure to delete %1 from your Snapmatic pictures?</source>
         <translation>Ви дійсно бажаєте видалити %1 з ваших Snapmatic фотографій?</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Failed at deleting %1 from your Snapmatic pictures</source>
         <translation>Не вдалося видалити%1 з ваших Snapmatic фотографій</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>Не вдалося сховати %1 Snapmatic у грі</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>Не вдалося показати %1 Snapmatic у грі</translation>
     </message>
@@ -2452,7 +2450,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../OptionsDialog.cpp" line="748"/>
         <location filename="../UserInterface.cpp" line="194"/>
         <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
@@ -2470,43 +2468,43 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="346"/>
-        <location filename="../ProfileInterface.cpp" line="1718"/>
-        <location filename="../ProfileInterface.cpp" line="1783"/>
+        <location filename="../ProfileInterface.cpp" line="1715"/>
+        <location filename="../ProfileInterface.cpp" line="1780"/>
         <source>Change &amp;Title...</source>
         <translation>Змінити &amp;заголовок...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="354"/>
-        <location filename="../ProfileInterface.cpp" line="1717"/>
-        <location filename="../ProfileInterface.cpp" line="1782"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Change &amp;Crew...</source>
         <translation>Змінити &amp;банду...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="362"/>
-        <location filename="../ProfileInterface.cpp" line="1715"/>
-        <location filename="../ProfileInterface.cpp" line="1780"/>
+        <location filename="../ProfileInterface.cpp" line="1712"/>
+        <location filename="../ProfileInterface.cpp" line="1777"/>
         <source>&amp;Qualify as Avatar</source>
         <translation>Позначити як &amp;аватар</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="370"/>
-        <location filename="../ProfileInterface.cpp" line="1716"/>
-        <location filename="../ProfileInterface.cpp" line="1781"/>
+        <location filename="../ProfileInterface.cpp" line="1713"/>
+        <location filename="../ProfileInterface.cpp" line="1778"/>
         <source>Change &amp;Players...</source>
         <translation>Змінити &amp;гравців...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Show In-game</source>
         <translation>Показати у грі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Hide In-game</source>
         <translation>Сховати у грі</translation>
     </message>
diff --git a/res/gta5sync_zh_TW.ts b/res/gta5sync_zh_TW.ts
index 5ea86ac..95a9421 100644
--- a/res/gta5sync_zh_TW.ts
+++ b/res/gta5sync_zh_TW.ts
@@ -200,22 +200,22 @@ Pictures and Savegames</source>
         <translation>關閉(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Snapmatic Image Editor</source>
         <translation>Snapmatic 圖片編輯器</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../PictureDialog.cpp" line="893"/>
+        <location filename="../SnapmaticWidget.cpp" line="390"/>
         <source>Patching of Snapmatic Image failed because of I/O Error</source>
         <translation>I/O 錯誤,Snapmatic 圖片更新失敗</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="401"/>
+        <location filename="../PictureDialog.cpp" line="917"/>
+        <location filename="../SnapmaticWidget.cpp" line="414"/>
         <source>Patching of Snapmatic Image failed because of Image Error</source>
         <translation>圖片錯誤,Snapmatic 圖片更新失敗</translation>
     </message>
@@ -384,14 +384,14 @@ Pictures and Savegames</source>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="195"/>
-        <location filename="../ProfileInterface.cpp" line="725"/>
+        <location filename="../ProfileInterface.cpp" line="722"/>
         <source>Custom Avatar</source>
         <comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
         <translation>自訂大頭貼</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="218"/>
-        <location filename="../ProfileInterface.cpp" line="744"/>
+        <location filename="../ProfileInterface.cpp" line="741"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>自訂圖片</translation>
@@ -747,26 +747,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Found: %1</source>
         <translation>找到: %1</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="406"/>
         <location filename="../OptionsDialog.ui" line="429"/>
-        <location filename="../OptionsDialog.cpp" line="640"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="656"/>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="669"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
-        <location filename="../OptionsDialog.cpp" line="677"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="643"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="672"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
+        <location filename="../OptionsDialog.cpp" line="680"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Language: %1</source>
         <translation>語言: %1</translation>
     </message>
@@ -787,7 +787,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="598"/>
+        <location filename="../OptionsDialog.cpp" line="601"/>
         <source>Participate in %1 User Statistics</source>
         <translation>參與 %1 使用者統計</translation>
     </message>
@@ -823,8 +823,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="614"/>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="617"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Participation ID: %1</source>
         <translation>參與 ID: %1</translation>
     </message>
@@ -946,62 +946,62 @@ Y: %2</translation>
         <translation>%1 (遊戲語言)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="486"/>
+        <location filename="../OptionsDialog.cpp" line="489"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>自訂資料夾將在 %1 重新啟動後初始化.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="496"/>
+        <location filename="../OptionsDialog.cpp" line="499"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>無</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="504"/>
-        <location filename="../OptionsDialog.cpp" line="508"/>
-        <location filename="../OptionsDialog.cpp" line="510"/>
+        <location filename="../OptionsDialog.cpp" line="507"/>
+        <location filename="../OptionsDialog.cpp" line="511"/>
+        <location filename="../OptionsDialog.cpp" line="513"/>
         <source>Profile: %1</source>
         <translation>設定檔: %1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="599"/>
+        <location filename="../OptionsDialog.cpp" line="602"/>
         <source>View %1 User Statistics Online</source>
         <translation>檢視 %1 使用者統計資訊</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="618"/>
+        <location filename="../OptionsDialog.cpp" line="621"/>
         <source>Not registered</source>
         <translation>未註冊參與</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="636"/>
-        <location filename="../OptionsDialog.cpp" line="652"/>
-        <location filename="../OptionsDialog.cpp" line="665"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="639"/>
+        <location filename="../OptionsDialog.cpp" line="655"/>
+        <location filename="../OptionsDialog.cpp" line="668"/>
+        <location filename="../OptionsDialog.cpp" line="669"/>
         <source>Yes</source>
         <translation>是</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="651"/>
+        <location filename="../OptionsDialog.cpp" line="640"/>
+        <location filename="../OptionsDialog.cpp" line="654"/>
         <source>No</source>
         <translation>否</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="673"/>
+        <location filename="../OptionsDialog.cpp" line="647"/>
+        <location filename="../OptionsDialog.cpp" line="676"/>
         <source>OS defined</source>
         <translation>系統定義</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="660"/>
-        <location filename="../OptionsDialog.cpp" line="681"/>
+        <location filename="../OptionsDialog.cpp" line="663"/>
+        <location filename="../OptionsDialog.cpp" line="684"/>
         <source>Steam defined</source>
         <translation>Steam 定義</translation>
     </message>
@@ -1046,42 +1046,42 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1690"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Export as &amp;Picture...</source>
         <translation>匯出成圖片(&amp;P)...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1691"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>匯出成 Snapmatic(&amp;S)...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1684"/>
+        <location filename="../ProfileInterface.cpp" line="1681"/>
         <source>&amp;Edit Properties...</source>
         <translation>編輯屬性(&amp;E) ...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1685"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
         <source>&amp;Overwrite Image...</source>
         <translation>修改圖片(&amp;O)...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1687"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>開啟地圖檢視器(&amp;M)...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1688"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>開啟 JSON 編輯器(&amp;J)...</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="496"/>
+        <location filename="../PictureDialog.cpp" line="488"/>
         <source>Key 1 - Avatar Preview Mode
 Key 2 - Toggle Overlay
 Arrow Keys - Navigate</source>
@@ -1090,142 +1090,140 @@ Arrow Keys - Navigate</source>
 方向鍵 - 導覽</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Snapmatic Picture Viewer</source>
         <translation>Snapmatic 圖片檢視器</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="557"/>
-        <location filename="../PictureDialog.cpp" line="583"/>
+        <location filename="../PictureDialog.cpp" line="547"/>
         <source>Failed at %1</source>
         <translation>失敗: %1</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="722"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="686"/>
         <location filename="../SnapmaticEditor.cpp" line="246"/>
         <source>No Players</source>
         <translation>無</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
-        <location filename="../PictureDialog.cpp" line="698"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
+        <location filename="../PictureDialog.cpp" line="665"/>
         <source>No Crew</source>
         <translation>無</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="582"/>
+        <location filename="../PictureDialog.cpp" line="567"/>
         <source>Unknown Location</source>
         <translation>未知地點</translation>
     </message>
     <message>
-        <location filename="../PictureDialog.cpp" line="656"/>
+        <location filename="../PictureDialog.cpp" line="620"/>
         <source>Avatar Preview Mode
 Press 1 for Default View</source>
         <translation>大頭貼預覽模式
 按 1 切換格預設檢視</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="99"/>
+        <location filename="../PictureExport.cpp" line="93"/>
         <source>Export as Picture...</source>
         <translation>匯出成圖片...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="100"/>
-        <location filename="../PictureExport.cpp" line="262"/>
+        <location filename="../PictureExport.cpp" line="94"/>
+        <location filename="../PictureExport.cpp" line="236"/>
         <source>Export</source>
         <translation>匯出</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="103"/>
+        <location filename="../PictureExport.cpp" line="97"/>
         <source>JPEG Graphics (*.jpg *.jpeg)</source>
         <translation>JPEG 圖形格式 (*.jpg *.jpeg)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="104"/>
+        <location filename="../PictureExport.cpp" line="98"/>
         <source>Portable Network Graphics (*.png)</source>
         <translation>可攜式網路圖形 (*.png)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="215"/>
-        <location filename="../PictureExport.cpp" line="218"/>
-        <location filename="../PictureExport.cpp" line="221"/>
-        <location filename="../PictureExport.cpp" line="224"/>
-        <location filename="../PictureExport.cpp" line="231"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="190"/>
+        <location filename="../PictureExport.cpp" line="193"/>
+        <location filename="../PictureExport.cpp" line="196"/>
+        <location filename="../PictureExport.cpp" line="199"/>
+        <location filename="../PictureExport.cpp" line="205"/>
         <source>Export as Picture</source>
         <translation>匯出成圖片</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="154"/>
-        <location filename="../PictureExport.cpp" line="298"/>
+        <location filename="../PictureExport.cpp" line="138"/>
+        <location filename="../PictureExport.cpp" line="271"/>
         <source>Overwrite %1 with current Snapmatic picture?</source>
         <translation>確定修改目前的 Snapmatic 圖片 %1 ?</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="215"/>
+        <location filename="../PictureExport.cpp" line="190"/>
         <source>Failed to export the picture because the system occurred a write failure</source>
         <translation>系統寫入失敗,無法匯出圖片</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="218"/>
+        <location filename="../PictureExport.cpp" line="193"/>
         <source>Failed to export the picture because the format detection failures</source>
         <translation>格式檢測失敗,無法匯出圖片</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="221"/>
+        <location filename="../PictureExport.cpp" line="196"/>
         <source>Failed to export the picture because the file can&apos;t be written</source>
         <translation>文件無法寫入,匯出圖片失敗</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="224"/>
+        <location filename="../PictureExport.cpp" line="199"/>
         <source>Failed to export the picture because of an unknown reason</source>
         <translation>未知的錯誤,無法匯出圖片</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="231"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="205"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>No valid file is selected</source>
         <translation>未選擇有效的檔案</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="261"/>
+        <location filename="../PictureExport.cpp" line="235"/>
         <source>Export as Snapmatic...</source>
         <translation>匯出成 Snapmatic...</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="265"/>
+        <location filename="../PictureExport.cpp" line="239"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="266"/>
+        <location filename="../PictureExport.cpp" line="241"/>
         <source>GTA V Raw Export (*.auto)</source>
         <translation>GTA V Raw Export (*.auto)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="267"/>
+        <location filename="../PictureExport.cpp" line="243"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic 圖片 (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="298"/>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
-        <location filename="../PictureExport.cpp" line="323"/>
-        <location filename="../PictureExport.cpp" line="329"/>
+        <location filename="../PictureExport.cpp" line="271"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
+        <location filename="../PictureExport.cpp" line="290"/>
+        <location filename="../PictureExport.cpp" line="295"/>
         <source>Export as Snapmatic</source>
         <translation>匯出成 Snapmatic</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="309"/>
-        <location filename="../PictureExport.cpp" line="318"/>
+        <location filename="../PictureExport.cpp" line="279"/>
+        <location filename="../PictureExport.cpp" line="286"/>
         <source>Failed to export current Snapmatic picture</source>
         <translation>匯出目前的 Snapmatic 圖片失敗</translation>
     </message>
     <message>
-        <location filename="../PictureExport.cpp" line="323"/>
+        <location filename="../PictureExport.cpp" line="290"/>
         <source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
         <translation>因為使用 .auto 格式,將 Snapmatic 匯出到 &quot;%1&quot;.</translation>
     </message>
@@ -1331,23 +1329,23 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="477"/>
         <location filename="../ImportDialog.cpp" line="804"/>
-        <location filename="../ProfileInterface.cpp" line="500"/>
-        <location filename="../ProfileInterface.cpp" line="501"/>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="566"/>
-        <location filename="../ProfileInterface.cpp" line="600"/>
-        <location filename="../ProfileInterface.cpp" line="642"/>
-        <location filename="../ProfileInterface.cpp" line="677"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
-        <location filename="../ProfileInterface.cpp" line="947"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
-        <location filename="../ProfileInterface.cpp" line="990"/>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="497"/>
+        <location filename="../ProfileInterface.cpp" line="498"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="563"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
+        <location filename="../ProfileInterface.cpp" line="987"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Import...</source>
         <translation>匯入...</translation>
     </message>
@@ -1364,14 +1362,14 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="520"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
         <source>All image files (%1)</source>
         <translation>所有圖片 (%1)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="489"/>
         <location filename="../ImportDialog.cpp" line="816"/>
-        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
         <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>所有檔案 (**)</translation>
@@ -1379,14 +1377,14 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="790"/>
+        <location filename="../ProfileInterface.cpp" line="787"/>
         <source>Can&apos;t import %1 because file can&apos;t be open</source>
         <translation>無法匯入 %1,因為檔案無法開啟</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="518"/>
         <location filename="../ImportDialog.cpp" line="845"/>
-        <location filename="../ProfileInterface.cpp" line="800"/>
+        <location filename="../ProfileInterface.cpp" line="797"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation>無法匯入 %1,因為檔案無法正確解析</translation>
     </message>
@@ -1401,179 +1399,179 @@ Press 1 for Default View</source>
         <translation>載入中...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>Snapmatic Loader</source>
         <translation>Snapmatic 載入器</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="427"/>
+        <location filename="../ProfileInterface.cpp" line="424"/>
         <source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
         <translation>&lt;h4&gt;下列的 Snapmatic 圖片已被更新&lt;/h4&gt;%1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="513"/>
         <source>Importable files (%1)</source>
         <translation>可匯入的檔案 (%1)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="514"/>
         <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../ProfileInterface.cpp" line="515"/>
         <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>遊戲存檔 (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic 圖片 (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="545"/>
-        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../ProfileInterface.cpp" line="542"/>
+        <location filename="../ProfileInterface.cpp" line="949"/>
         <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>沒有選擇有效的檔案</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="567"/>
-        <location filename="../ProfileInterface.cpp" line="584"/>
+        <location filename="../ProfileInterface.cpp" line="564"/>
+        <location filename="../ProfileInterface.cpp" line="581"/>
         <source>Import file %1 of %2 files</source>
         <translation>匯入檔案 %1 共 %2 個</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="600"/>
+        <location filename="../ProfileInterface.cpp" line="597"/>
         <source>Import failed with...
 
 %1</source>
         <translation>%1 匯入失敗</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../ProfileInterface.cpp" line="639"/>
         <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>無法讀取 Snapmatic 圖片</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../ProfileInterface.cpp" line="674"/>
         <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>無法讀取遊戲存檔</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="947"/>
+        <location filename="../ProfileInterface.cpp" line="944"/>
         <source>Can&apos;t import %1 because file format can&apos;t be detected</source>
         <translation>無法匯入 %1,因為無法檢測該檔案格式</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1120"/>
+        <location filename="../ProfileInterface.cpp" line="1117"/>
         <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
         <translation>匯入 Snapmatic 圖片失敗,檔案不是 PGTA 開頭或附檔名不是 .g5e</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1224"/>
+        <location filename="../ProfileInterface.cpp" line="1221"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>匯入 Snapmatic 圖片失敗,無法將該檔案複製到設定檔中</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1261"/>
+        <location filename="../ProfileInterface.cpp" line="1258"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>匯入遊戲存檔失敗,無法將該檔案複製到設定檔中</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1267"/>
+        <location filename="../ProfileInterface.cpp" line="1264"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>匯入遊戲存檔失敗,沒有遊戲存檔欄位</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1331"/>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
-        <location filename="../ProfileInterface.cpp" line="1414"/>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1328"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
+        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
         <source>Export selected...</source>
         <translation>匯出所選...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1354"/>
-        <location filename="../ProfileInterface.cpp" line="1372"/>
+        <location filename="../ProfileInterface.cpp" line="1351"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>JPG 圖片和 GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1355"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1352"/>
+        <location filename="../ProfileInterface.cpp" line="1374"/>
         <source>JPG pictures only</source>
         <translation>只有 JPG 圖片</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1356"/>
-        <location filename="../ProfileInterface.cpp" line="1381"/>
+        <location filename="../ProfileInterface.cpp" line="1353"/>
+        <location filename="../ProfileInterface.cpp" line="1378"/>
         <source>GTA Snapmatic only</source>
         <translation>只有 GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1369"/>
+        <location filename="../ProfileInterface.cpp" line="1366"/>
         <source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
         <translation>%1 匯出 Snapmatic 圖片 %2&lt;br&gt;&lt;br&gt;JPG 圖片可使用圖片檢視器開啟&lt;br&gt;GTA Snapmatic 可以匯入到遊戲中&lt;br&gt;&lt;br&gt;匯出成:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1415"/>
+        <location filename="../ProfileInterface.cpp" line="1412"/>
         <source>Initialising export...</source>
         <translation>初始化...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1449"/>
+        <location filename="../ProfileInterface.cpp" line="1446"/>
         <source>Export failed with...
 
 %1</source>
         <translation>%1 匯出失敗</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1469"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1466"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>未選擇 Snapmatic 圖片或遊戲存檔</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
-        <location filename="../ProfileInterface.cpp" line="1511"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
+        <location filename="../ProfileInterface.cpp" line="1508"/>
         <source>Remove selected</source>
         <translation>移除所選</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1474"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>你想移除所選的 Snapmatic 圖片/存檔嗎?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1502"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>無法移除所選擇的 Snapmatic 圖片/遊戲存檔</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>未選擇 Snapmatic 圖片</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1583,91 +1581,91 @@ Press 1 for Default View</source>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1006"/>
+        <location filename="../ProfileInterface.cpp" line="1003"/>
         <source>Prepare Content for Import...</source>
         <translation>準備匯入內容...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1128"/>
+        <location filename="../ProfileInterface.cpp" line="1125"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation>已有與 uid %1 相同的 Snapmatic 圖片,你想要匯入新的 uid 和時間戳嗎?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2113"/>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2110"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify as Avatar</source>
         <translation>合格大頭貼</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2124"/>
-        <location filename="../ProfileInterface.cpp" line="2227"/>
-        <location filename="../ProfileInterface.cpp" line="2358"/>
-        <location filename="../ProfileInterface.cpp" line="2464"/>
+        <location filename="../ProfileInterface.cpp" line="2121"/>
+        <location filename="../ProfileInterface.cpp" line="2224"/>
+        <location filename="../ProfileInterface.cpp" line="2355"/>
+        <location filename="../ProfileInterface.cpp" line="2461"/>
         <source>Patch selected...</source>
         <translation>修改所選...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2125"/>
-        <location filename="../ProfileInterface.cpp" line="2144"/>
-        <location filename="../ProfileInterface.cpp" line="2228"/>
-        <location filename="../ProfileInterface.cpp" line="2247"/>
-        <location filename="../ProfileInterface.cpp" line="2359"/>
-        <location filename="../ProfileInterface.cpp" line="2378"/>
-        <location filename="../ProfileInterface.cpp" line="2465"/>
-        <location filename="../ProfileInterface.cpp" line="2484"/>
+        <location filename="../ProfileInterface.cpp" line="2122"/>
+        <location filename="../ProfileInterface.cpp" line="2141"/>
+        <location filename="../ProfileInterface.cpp" line="2225"/>
+        <location filename="../ProfileInterface.cpp" line="2244"/>
+        <location filename="../ProfileInterface.cpp" line="2356"/>
+        <location filename="../ProfileInterface.cpp" line="2375"/>
+        <location filename="../ProfileInterface.cpp" line="2462"/>
+        <location filename="../ProfileInterface.cpp" line="2481"/>
         <source>Patch file %1 of %2 files</source>
         <translation>修改檔案 %1 共 %2 個檔案</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2178"/>
+        <location filename="../ProfileInterface.cpp" line="2175"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>合格</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2199"/>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2196"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players...</source>
         <translation>更改玩家...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2277"/>
+        <location filename="../ProfileInterface.cpp" line="2274"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>更改玩家</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2298"/>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2295"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew...</source>
         <translation>更改幫會...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2332"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>輸入了無效的幫會 ID</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2408"/>
+        <location filename="../ProfileInterface.cpp" line="2405"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>更改幫會</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2429"/>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2426"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title...</source>
         <translation>更改標題...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2443"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>輸入了無效的標題</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2511"/>
+        <location filename="../ProfileInterface.cpp" line="2508"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>更改標題</translation>
@@ -1759,45 +1757,45 @@ Press 1 for Default View</source>
         <translation>刪除</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1757"/>
+        <location filename="../ProfileInterface.cpp" line="1754"/>
         <source>&amp;View</source>
         <translation>檢視(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1723"/>
-        <location filename="../ProfileInterface.cpp" line="1758"/>
-        <location filename="../ProfileInterface.cpp" line="1788"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1755"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>&amp;Export</source>
         <translation>匯出(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1724"/>
-        <location filename="../ProfileInterface.cpp" line="1759"/>
-        <location filename="../ProfileInterface.cpp" line="1789"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1756"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>&amp;Remove</source>
         <translation>移除(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1762"/>
-        <location filename="../ProfileInterface.cpp" line="1792"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Select</source>
         <translation>選擇(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1765"/>
-        <location filename="../ProfileInterface.cpp" line="1794"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1791"/>
         <source>&amp;Deselect</source>
         <translation>取消選擇(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1768"/>
-        <location filename="../ProfileInterface.cpp" line="1797"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>Select &amp;All</source>
         <translation>選擇全部(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1771"/>
-        <location filename="../ProfileInterface.cpp" line="1800"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>&amp;Deselect All</source>
         <translation>取消選擇全部(&amp;D)</translation>
     </message>
@@ -1897,9 +1895,9 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="191"/>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Snapmatic Properties</source>
         <translation>Snapmatic 屬性</translation>
     </message>
@@ -1990,9 +1988,9 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
-        <location filename="../PictureDialog.cpp" line="849"/>
+        <location filename="../PictureDialog.cpp" line="808"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="435"/>
+        <location filename="../SnapmaticWidget.cpp" line="448"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>讀寫錯誤,未能更新 Snapmatic 屬性</translation>
     </message>
@@ -2002,25 +2000,25 @@ Press 1 for Default View</source>
         <translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>幫會</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2326"/>
+        <location filename="../ProfileInterface.cpp" line="2323"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>輸入新的幫會:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>標題</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2441"/>
+        <location filename="../ProfileInterface.cpp" line="2438"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>輸入新的標題:</translation>
@@ -2184,8 +2182,8 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../SnapmaticWidget.ui" line="152"/>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Delete picture</source>
         <translation>刪除圖片</translation>
     </message>
@@ -2195,82 +2193,82 @@ Press 1 for Default View</source>
         <translation>刪除</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1677"/>
-        <location filename="../ProfileInterface.cpp" line="1714"/>
-        <location filename="../ProfileInterface.cpp" line="1779"/>
+        <location filename="../ProfileInterface.cpp" line="1674"/>
+        <location filename="../ProfileInterface.cpp" line="1711"/>
+        <location filename="../ProfileInterface.cpp" line="1776"/>
         <source>Edi&amp;t</source>
         <translation>編輯(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1679"/>
-        <location filename="../ProfileInterface.cpp" line="1720"/>
-        <location filename="../ProfileInterface.cpp" line="1785"/>
+        <location filename="../ProfileInterface.cpp" line="1676"/>
+        <location filename="../ProfileInterface.cpp" line="1717"/>
+        <location filename="../ProfileInterface.cpp" line="1782"/>
         <source>Show &amp;In-game</source>
         <translation>在遊戲中顯示(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1682"/>
-        <location filename="../ProfileInterface.cpp" line="1721"/>
-        <location filename="../ProfileInterface.cpp" line="1786"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1718"/>
+        <location filename="../ProfileInterface.cpp" line="1783"/>
         <source>Hide &amp;In-game</source>
         <translation>在遊戲中隱藏(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1689"/>
+        <location filename="../ProfileInterface.cpp" line="1686"/>
         <source>&amp;Export</source>
         <translation>匯出(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1692"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;View</source>
         <translation>檢視(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;Remove</source>
         <translation>移除(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
-        <location filename="../ProfileInterface.cpp" line="1727"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
         <source>&amp;Select</source>
         <translation>選擇(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1700"/>
-        <location filename="../ProfileInterface.cpp" line="1729"/>
+        <location filename="../ProfileInterface.cpp" line="1697"/>
+        <location filename="../ProfileInterface.cpp" line="1726"/>
         <source>&amp;Deselect</source>
         <translation>取消選擇(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1703"/>
-        <location filename="../ProfileInterface.cpp" line="1732"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>Select &amp;All</source>
         <translation>選擇全部(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
-        <location filename="../ProfileInterface.cpp" line="1735"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>&amp;Deselect All</source>
         <translation>取消選擇全部(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="170"/>
+        <location filename="../SnapmaticWidget.cpp" line="183"/>
         <source>Are you sure to delete %1 from your Snapmatic pictures?</source>
         <translation>你確定要刪除Snapmatic 圖片 %1 嗎?</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="196"/>
+        <location filename="../SnapmaticWidget.cpp" line="209"/>
         <source>Failed at deleting %1 from your Snapmatic pictures</source>
         <translation>刪除 Snapmatic 圖片 %1 失敗</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>在遊戲中隱藏圖片 %1 失敗</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>在遊戲中顯示圖片 %1 失敗</translation>
     </message>
@@ -2433,7 +2431,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../OptionsDialog.cpp" line="748"/>
         <location filename="../UserInterface.cpp" line="194"/>
         <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
@@ -2451,43 +2449,43 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="346"/>
-        <location filename="../ProfileInterface.cpp" line="1718"/>
-        <location filename="../ProfileInterface.cpp" line="1783"/>
+        <location filename="../ProfileInterface.cpp" line="1715"/>
+        <location filename="../ProfileInterface.cpp" line="1780"/>
         <source>Change &amp;Title...</source>
         <translation>更改標題(&amp;T)...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="354"/>
-        <location filename="../ProfileInterface.cpp" line="1717"/>
-        <location filename="../ProfileInterface.cpp" line="1782"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Change &amp;Crew...</source>
         <translation>更改幫會(&amp;C)...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="362"/>
-        <location filename="../ProfileInterface.cpp" line="1715"/>
-        <location filename="../ProfileInterface.cpp" line="1780"/>
+        <location filename="../ProfileInterface.cpp" line="1712"/>
+        <location filename="../ProfileInterface.cpp" line="1777"/>
         <source>&amp;Qualify as Avatar</source>
         <translation>符合大頭貼資格(&amp;Q)</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="370"/>
-        <location filename="../ProfileInterface.cpp" line="1716"/>
-        <location filename="../ProfileInterface.cpp" line="1781"/>
+        <location filename="../ProfileInterface.cpp" line="1713"/>
+        <location filename="../ProfileInterface.cpp" line="1778"/>
         <source>Change &amp;Players...</source>
         <translation>更改玩家(&amp;P)...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <location filename="../ProfileInterface.cpp" line="1604"/>
+        <location filename="../ProfileInterface.cpp" line="1618"/>
+        <location filename="../SnapmaticWidget.cpp" line="343"/>
         <source>Show In-game</source>
         <translation>在遊戲中顯示</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1641"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
-        <location filename="../SnapmaticWidget.cpp" line="322"/>
+        <location filename="../ProfileInterface.cpp" line="1638"/>
+        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../SnapmaticWidget.cpp" line="335"/>
         <source>Hide In-game</source>
         <translation>在遊戲中隱藏</translation>
     </message>