From e448bd4f639abee76820948e18d835cc43b698e3 Mon Sep 17 00:00:00 2001
From: Syping <schiedelrafael@keppe.org>
Date: Mon, 23 Nov 2020 03:47:17 +0100
Subject: [PATCH] content mode now in options

---
 OptionsDialog.cpp     |  29 ++-
 OptionsDialog.ui      |  12 +-
 ProfileInterface.cpp  |  24 ++-
 ProfileInterface.h    |   2 +
 UserInterface.cpp     |  35 ++--
 res/gta5sync.ts       | 464 ++++++++++++++++++++++--------------------
 res/gta5sync_de.qm    | Bin 49495 -> 49281 bytes
 res/gta5sync_de.ts    | 456 +++++++++++++++++++++--------------------
 res/gta5sync_en_US.ts | 464 ++++++++++++++++++++++--------------------
 res/gta5sync_fr.qm    | Bin 46520 -> 46304 bytes
 res/gta5sync_fr.ts    | 456 +++++++++++++++++++++--------------------
 res/gta5sync_ko.qm    | Bin 39078 -> 38906 bytes
 res/gta5sync_ko.ts    | 456 +++++++++++++++++++++--------------------
 res/gta5sync_ru.qm    | Bin 47618 -> 47400 bytes
 res/gta5sync_ru.ts    | 456 +++++++++++++++++++++--------------------
 res/gta5sync_uk.qm    | Bin 47597 -> 47367 bytes
 res/gta5sync_uk.ts    | 456 +++++++++++++++++++++--------------------
 res/gta5sync_zh_TW.qm | Bin 36396 -> 36248 bytes
 res/gta5sync_zh_TW.ts | 456 +++++++++++++++++++++--------------------
 19 files changed, 1977 insertions(+), 1789 deletions(-)

diff --git a/OptionsDialog.cpp b/OptionsDialog.cpp
index 4870b9f..59f1b94 100644
--- a/OptionsDialog.cpp
+++ b/OptionsDialog.cpp
@@ -124,6 +124,8 @@ OptionsDialog::OptionsDialog(ProfileDatabase *profileDB, QWidget *parent) :
     resize(435 * screenRatio, 405 * screenRatio);
 #endif
 
+    ui->rbModern->setText(ui->rbModern->text().arg(GTA5SYNC_APPSTR));
+    ui->rbClassic->setText(ui->rbClassic->text().arg(GTA5SYNC_APPSTR));
     setWindowTitle(windowTitle().arg(GTA5SYNC_APPSTR));
 }
 
@@ -285,14 +287,19 @@ void OptionsDialog::setupRadioButtons()
         switch (contentMode)
         {
         case 0:
-            ui->rbOpenWithSC->setChecked(true);
+        case 20:
+            ui->rbModern->setChecked(true);
             break;
         case 1:
-            ui->rbOpenWithDC->setChecked(true);
-            break;
         case 2:
-            ui->rbSelectWithSC->setChecked(true);
+        case 21:
+            ui->rbModern->setChecked(true);
+            ui->cbDoubleclick->setChecked(true);
             break;
+        case 10:
+            ui->rbClassic->setChecked(true);
+        case 11:
+            ui->cbDoubleclick->setChecked(true);
         }
     }
 }
@@ -364,18 +371,18 @@ void OptionsDialog::applySettings()
     settings->endGroup();
 
     settings->beginGroup("Profile");
-    int newContentMode = 0;
-    if (ui->rbOpenWithSC->isChecked())
+    int newContentMode = 20;
+    if (ui->rbModern->isChecked())
     {
-        newContentMode = 0;
+        newContentMode = 20;
     }
-    else if (ui->rbOpenWithDC->isChecked())
+    else if (ui->rbClassic->isChecked())
     {
-        newContentMode = 1;
+        newContentMode = 10;
     }
-    else if (ui->rbSelectWithSC->isChecked())
+    if (ui->cbDoubleclick->isChecked())
     {
-        newContentMode = 2;
+        newContentMode++;
     }
     settings->setValue("ContentMode", newContentMode);
 #if QT_VERSION >= 0x050000
diff --git a/OptionsDialog.ui b/OptionsDialog.ui
index a5daae3..6c5e80b 100644
--- a/OptionsDialog.ui
+++ b/OptionsDialog.ui
@@ -34,9 +34,9 @@
          </property>
          <layout class="QVBoxLayout" name="vlProfileContentMode">
           <item>
-           <widget class="QRadioButton" name="rbOpenWithSC">
+           <widget class="QRadioButton" name="rbModern">
             <property name="text">
-             <string>Open with Singleclick</string>
+             <string notr="true">%1 1.9+</string>
             </property>
             <property name="checked">
              <bool>true</bool>
@@ -44,16 +44,16 @@
            </widget>
           </item>
           <item>
-           <widget class="QRadioButton" name="rbOpenWithDC">
+           <widget class="QRadioButton" name="rbClassic">
             <property name="text">
-             <string>Open with Doubleclick</string>
+             <string notr="true">%1 1.0-1.8</string>
             </property>
            </widget>
           </item>
           <item>
-           <widget class="QRadioButton" name="rbSelectWithSC">
+           <widget class="QCheckBox" name="cbDoubleclick">
             <property name="text">
-             <string>Select with Singleclick</string>
+             <string>Open with Doubleclick</string>
             </property>
            </widget>
           </item>
diff --git a/ProfileInterface.cpp b/ProfileInterface.cpp
index 439bb08..ad8d73a 100644
--- a/ProfileInterface.cpp
+++ b/ProfileInterface.cpp
@@ -1470,7 +1470,7 @@ void ProfileInterface::exportSelected()
     }
 }
 
-void ProfileInterface::deleteSelected()
+void ProfileInterface::deleteSelectedL(bool isRemoteEmited)
 {
     if (selectedWidgts != 0)
     {
@@ -1485,7 +1485,7 @@ void ProfileInterface::deleteSelected()
                         SnapmaticWidget *picWidget = qobject_cast<SnapmaticWidget*>(widget);
                         if (picWidget->getPicture()->deletePictureFile())
                         {
-                            pictureDeleted(picWidget);
+                            pictureDeleted(picWidget, isRemoteEmited);
                         }
                     }
                     else if (widget->getWidgetType() == "SavegameWidget")
@@ -1495,7 +1495,7 @@ void ProfileInterface::deleteSelected()
                         QString fileName = savegame->getSavegameFileName();
                         if (!QFile::exists(fileName) || QFile::remove(fileName))
                         {
-                            savegameDeleted(sgdWidget);
+                            savegameDeleted(sgdWidget, isRemoteEmited);
                         }
                     }
                 }
@@ -1512,6 +1512,16 @@ void ProfileInterface::deleteSelected()
     }
 }
 
+void ProfileInterface::deleteSelected()
+{
+    deleteSelectedL(false);
+}
+
+void ProfileInterface::deleteSelectedR()
+{
+    deleteSelectedL(true);
+}
+
 void ProfileInterface::massToolQualify()
 {
     massTool(MassTool::Qualify);
@@ -1710,8 +1720,8 @@ void ProfileInterface::contextMenuTriggeredPIC(QContextMenuEvent *ev)
         editMenu.addAction(SnapmaticWidget::tr("Show &In-game"), this, SLOT(enableSelected()), QKeySequence::fromString("Shift+E"));
         editMenu.addAction(SnapmaticWidget::tr("Hide &In-game"), this, SLOT(disableSelected()), QKeySequence::fromString("Shift+D"));
         contextMenu.addMenu(&editMenu);
-        contextMenu.addAction(SnapmaticWidget::tr("&Export"), this, SLOT(exportSelected()));
-        contextMenu.addAction(SnapmaticWidget::tr("&Remove"), this, SLOT(deleteSelected()));
+        contextMenu.addAction(SavegameWidget::tr("&Export"), this, SLOT(exportSelected()), QKeySequence::fromString("Ctrl+E"));
+        contextMenu.addAction(SavegameWidget::tr("&Remove"), this, SLOT(deleteSelectedR()), QKeySequence::fromString("Ctrl+Del"));
         contextMenu.addSeparator();
         if (!picWidget->isSelected())
             contextMenu.addAction(SnapmaticWidget::tr("&Select"), picWidget, SLOT(pictureSelected()));
@@ -1775,8 +1785,8 @@ void ProfileInterface::contextMenuTriggeredSGD(QContextMenuEvent *ev)
         editMenu.addAction(SnapmaticWidget::tr("Show &In-game"), this, SLOT(enableSelected()), QKeySequence::fromString("Shift+E"));
         editMenu.addAction(SnapmaticWidget::tr("Hide &In-game"), this, SLOT(disableSelected()), QKeySequence::fromString("Shift+D"));
         contextMenu.addMenu(&editMenu);
-        contextMenu.addAction(SavegameWidget::tr("&Export"), this, SLOT(exportSelected()));
-        contextMenu.addAction(SavegameWidget::tr("&Remove"), this, SLOT(deleteSelected()));
+        contextMenu.addAction(SavegameWidget::tr("&Export"), this, SLOT(exportSelected()), QKeySequence::fromString("Ctrl+E"));
+        contextMenu.addAction(SavegameWidget::tr("&Remove"), this, SLOT(deleteSelectedR()), QKeySequence::fromString("Ctrl+Del"));
         contextMenu.addSeparator();
         if (!sgdWidget->isSelected())
             contextMenu.addAction(SavegameWidget::tr("&Select"), sgdWidget, SLOT(savegameSelected()));
diff --git a/ProfileInterface.h b/ProfileInterface.h
index 185cad7..6b3fb16 100644
--- a/ProfileInterface.h
+++ b/ProfileInterface.h
@@ -66,6 +66,7 @@ public slots:
     void enableSelected();
     void exportSelected();
     void deleteSelected();
+    void deleteSelectedR();
     void updatePalette();
     void importFiles();
 
@@ -128,6 +129,7 @@ private:
     void savegameLoaded(SavegameData *savegame, QString savegamePath, bool inserted);
     void savegameDeleted(SavegameWidget *sgdWidget, bool isRemoteEmited = false);
     void pictureDeleted(SnapmaticWidget *picWidget, bool isRemoteEmited = false);
+    void deleteSelectedL(bool isRemoteEmited = false);
     void insertSnapmaticIPI(QWidget *widget);
     void insertSavegameIPI(QWidget *widget);
     void sortingProfileInterface();
diff --git a/UserInterface.cpp b/UserInterface.cpp
index e6529ad..3f4d016 100644
--- a/UserInterface.cpp
+++ b/UserInterface.cpp
@@ -186,17 +186,13 @@ void UserInterface::setupDirEnv(bool showFolderDialog)
 
     bool folderExists;
     GTAV_Folder = AppEnv::getGameFolder(&folderExists);
-    if (folderExists)
-    {
+    if (folderExists) {
         QDir::setCurrent(GTAV_Folder);
     }
-    else
-    {
-        if (showFolderDialog)
-        {
+    else {
+        if (showFolderDialog) {
             GTAV_Folder = QFileDialog::getExistingDirectory(this, tr("Select GTA V Folder..."), StandardPaths::documentsLocation(), QFileDialog::ShowDirsOnly);
-            if (QFileInfo(GTAV_Folder).exists())
-            {
+            if (QFileInfo(GTAV_Folder).exists()) {
                 folderExists = true;
                 QDir::setCurrent(GTAV_Folder);
                 AppEnv::setGameFolder(GTAV_Folder);
@@ -216,15 +212,15 @@ void UserInterface::setupDirEnv(bool showFolderDialog)
     settings.beginGroup("Profile");
     QString defaultProfile = settings.value("Default", "").toString();
 
-    bool contentModeOk;
-    contentMode = settings.value("ContentMode", 0).toInt(&contentModeOk);
-    if (contentMode != 0 && contentMode != 1 && contentMode != 2 && contentMode != 10 && contentMode != 11 && contentMode != 20 && contentMode != 21)
-    {
-        contentMode = 0;
+    contentMode = settings.value("ContentMode", 0).toInt();
+    if (contentMode == 1) {
+        contentMode = 21;
+    }
+    else if (contentMode != 10 && contentMode != 11 && contentMode != 20 && contentMode != 21) {
+        contentMode = 20;
     }
 
-    if (folderExists)
-    {
+    if (folderExists) {
         QDir GTAV_ProfilesDir;
         GTAV_ProfilesFolder = GTAV_Folder % "/Profiles";
         GTAV_ProfilesDir.setPath(GTAV_ProfilesFolder);
@@ -232,17 +228,14 @@ void UserInterface::setupDirEnv(bool showFolderDialog)
         GTAV_Profiles = GTAV_ProfilesDir.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::NoSort);
         setupProfileUi();
 
-        if (GTAV_Profiles.length() == 1)
-        {
+        if (GTAV_Profiles.length() == 1) {
             openProfile(GTAV_Profiles.at(0));
         }
-        else if(GTAV_Profiles.contains(defaultProfile))
-        {
+        else if(GTAV_Profiles.contains(defaultProfile)) {
             openProfile(defaultProfile);
         }
     }
-    else
-    {
+    else {
         GTAV_Profiles = QStringList();
         setupProfileUi();
     }
diff --git a/res/gta5sync.ts b/res/gta5sync.ts
index 5b26309..ec272b6 100644
--- a/res/gta5sync.ts
+++ b/res/gta5sync.ts
@@ -193,20 +193,20 @@ Pictures and Savegames</source>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
         <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
-        <location filename="../SnapmaticWidget.cpp" line="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <source>Snapmatic Image Editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
         <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="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <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="721"/>
+        <location filename="../ProfileInterface.cpp" line="725"/>
         <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="740"/>
+        <location filename="../ProfileInterface.cpp" line="744"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation type="unfinished"></translation>
@@ -602,19 +602,9 @@ Y: %2</source>
         <source>Content Open/Select Mode</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <location filename="../OptionsDialog.ui" line="39"/>
-        <source>Open with Singleclick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../OptionsDialog.ui" line="49"/>
-        <source>Open with Doubleclick</source>
-        <translation type="unfinished"></translation>
-    </message>
     <message>
         <location filename="../OptionsDialog.ui" line="56"/>
-        <source>Select with Singleclick</source>
+        <source>Open with Doubleclick</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -731,26 +721,26 @@ Y: %2</source>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <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"/>
         <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="633"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="649"/>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="662"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
-        <location filename="../OptionsDialog.cpp" line="670"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <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"/>
         <source>Language: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -771,7 +761,7 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="591"/>
+        <location filename="../OptionsDialog.cpp" line="598"/>
         <source>Participate in %1 User Statistics</source>
         <translation type="unfinished"></translation>
     </message>
@@ -807,8 +797,8 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="607"/>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="614"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Participation ID: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -830,8 +820,8 @@ Y: %2</source>
     <message>
         <location filename="../OptionsDialog.ui" line="611"/>
         <location filename="../OptionsDialog.ui" line="633"/>
-        <location filename="../OptionsDialog.cpp" line="224"/>
-        <location filename="../OptionsDialog.cpp" line="273"/>
+        <location filename="../OptionsDialog.cpp" line="226"/>
+        <location filename="../OptionsDialog.cpp" line="275"/>
         <source>Current: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -893,95 +883,95 @@ Y: %2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>System</source>
         <comment>System in context of System default</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
         <source>%1 (Game language)</source>
         <comment>Next closest language compared to the Game settings</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>%1 (Closest to Interface)</source>
         <comment>Next closest language compared to the Interface</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>Auto</source>
         <comment>Automatic language choice.</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>%1 (Language priority)</source>
         <comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="489"/>
+        <location filename="../OptionsDialog.cpp" line="496"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="497"/>
-        <location filename="../OptionsDialog.cpp" line="501"/>
-        <location filename="../OptionsDialog.cpp" line="503"/>
+        <location filename="../OptionsDialog.cpp" line="504"/>
+        <location filename="../OptionsDialog.cpp" line="508"/>
+        <location filename="../OptionsDialog.cpp" line="510"/>
         <source>Profile: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="592"/>
+        <location filename="../OptionsDialog.cpp" line="599"/>
         <source>View %1 User Statistics Online</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Not registered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="636"/>
+        <location filename="../OptionsDialog.cpp" line="652"/>
+        <location filename="../OptionsDialog.cpp" line="665"/>
+        <location filename="../OptionsDialog.cpp" line="666"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="637"/>
+        <location filename="../OptionsDialog.cpp" line="651"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="673"/>
         <source>OS defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <location filename="../OptionsDialog.cpp" line="660"/>
+        <location filename="../OptionsDialog.cpp" line="681"/>
         <source>Steam defined</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1023,37 +1013,37 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1658"/>
+        <location filename="../ProfileInterface.cpp" line="1690"/>
         <source>Export as &amp;Picture...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1659"/>
+        <location filename="../ProfileInterface.cpp" line="1691"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>&amp;Edit Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1653"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>&amp;Overwrite Image...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Open &amp;Map Viewer...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1656"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Open &amp;JSON Editor...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1305,23 +1295,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="496"/>
-        <location filename="../ProfileInterface.cpp" line="497"/>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="562"/>
-        <location filename="../ProfileInterface.cpp" line="596"/>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
-        <location filename="../ProfileInterface.cpp" line="796"/>
-        <location filename="../ProfileInterface.cpp" line="943"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../ProfileInterface.cpp" line="986"/>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <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"/>
         <source>Import...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1338,29 +1328,29 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="520"/>
         <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="517"/>
-        <location filename="../UserInterface.cpp" line="477"/>
+        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
+        <location filename="../ProfileInterface.cpp" line="790"/>
         <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="796"/>
+        <location filename="../ProfileInterface.cpp" line="800"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1375,189 +1365,189 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <source>Snapmatic Loader</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <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="512"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <source>Importable files (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="513"/>
-        <location filename="../UserInterface.cpp" line="474"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="514"/>
-        <location filename="../UserInterface.cpp" line="475"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="515"/>
-        <location filename="../UserInterface.cpp" line="476"/>
+        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../ProfileInterface.cpp" line="545"/>
+        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="563"/>
-        <location filename="../ProfileInterface.cpp" line="580"/>
+        <location filename="../ProfileInterface.cpp" line="567"/>
+        <location filename="../ProfileInterface.cpp" line="584"/>
         <source>Import file %1 of %2 files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="596"/>
+        <location filename="../ProfileInterface.cpp" line="600"/>
         <source>Import failed with...
 
 %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../UserInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../UserInterface.cpp" line="533"/>
+        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="943"/>
+        <location filename="../ProfileInterface.cpp" line="947"/>
         <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="1002"/>
+        <location filename="../ProfileInterface.cpp" line="1006"/>
         <source>Prepare Content for Import...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
+        <location filename="../ProfileInterface.cpp" line="1120"/>
         <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="1124"/>
+        <location filename="../ProfileInterface.cpp" line="1128"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
+        <location filename="../ProfileInterface.cpp" line="1224"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
+        <location filename="../ProfileInterface.cpp" line="1261"/>
         <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="1263"/>
+        <location filename="../ProfileInterface.cpp" line="1267"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1327"/>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
-        <location filename="../ProfileInterface.cpp" line="1410"/>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
+        <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"/>
         <source>Export selected...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1350"/>
-        <location filename="../ProfileInterface.cpp" line="1368"/>
+        <location filename="../ProfileInterface.cpp" line="1354"/>
+        <location filename="../ProfileInterface.cpp" line="1372"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1351"/>
-        <location filename="../ProfileInterface.cpp" line="1373"/>
+        <location filename="../ProfileInterface.cpp" line="1355"/>
+        <location filename="../ProfileInterface.cpp" line="1377"/>
         <source>JPG pictures only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1352"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1356"/>
+        <location filename="../ProfileInterface.cpp" line="1381"/>
         <source>GTA Snapmatic only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <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="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1415"/>
         <source>Initialising export...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
+        <location filename="../ProfileInterface.cpp" line="1449"/>
         <source>Export failed with...
 
 %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>Remove selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
         <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
+        <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"/>
         <source>No Snapmatic pictures are selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <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"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1565,87 +1555,87 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2113"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify as Avatar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2029"/>
-        <location filename="../ProfileInterface.cpp" line="2132"/>
-        <location filename="../ProfileInterface.cpp" line="2263"/>
-        <location filename="../ProfileInterface.cpp" line="2369"/>
+        <location filename="../ProfileInterface.cpp" line="2124"/>
+        <location filename="../ProfileInterface.cpp" line="2227"/>
+        <location filename="../ProfileInterface.cpp" line="2358"/>
+        <location filename="../ProfileInterface.cpp" line="2464"/>
         <source>Patch selected...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2030"/>
-        <location filename="../ProfileInterface.cpp" line="2049"/>
-        <location filename="../ProfileInterface.cpp" line="2133"/>
-        <location filename="../ProfileInterface.cpp" line="2152"/>
-        <location filename="../ProfileInterface.cpp" line="2264"/>
-        <location filename="../ProfileInterface.cpp" line="2283"/>
-        <location filename="../ProfileInterface.cpp" line="2370"/>
-        <location filename="../ProfileInterface.cpp" line="2389"/>
+        <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"/>
         <source>Patch file %1 of %2 files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2199"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2298"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="473"/>
+        <location filename="../UserInterface.cpp" line="466"/>
         <source>All profile files (*.g5e SGTA* PGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1731,37 +1721,45 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1694"/>
+        <location filename="../ProfileInterface.cpp" line="1757"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1723"/>
+        <location filename="../ProfileInterface.cpp" line="1758"/>
+        <location filename="../ProfileInterface.cpp" line="1788"/>
         <source>&amp;Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1696"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1792"/>
         <source>&amp;Select</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1699"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>&amp;Deselect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1702"/>
+        <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="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1771"/>
+        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1861,7 +1859,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Snapmatic Properties</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1954,7 +1952,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1964,25 +1962,25 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation type="unfinished"></translation>
@@ -2157,52 +2155,62 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1643"/>
+        <location filename="../ProfileInterface.cpp" line="1677"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Edi&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1646"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>Show &amp;In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1650"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>Hide &amp;In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1657"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1660"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1663"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1665"/>
+        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1727"/>
         <source>&amp;Select</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1666"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>&amp;Deselect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1669"/>
+        <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="1673"/>
+        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2217,12 +2225,12 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2286,7 +2294,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="153"/>
-        <location filename="../UserInterface.cpp" line="679"/>
+        <location filename="../UserInterface.cpp" line="673"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2323,7 +2331,7 @@ Press 1 for Default View</source>
     <message>
         <location filename="../UserInterface.ui" line="236"/>
         <location filename="../UserInterface.cpp" line="66"/>
-        <location filename="../UserInterface.cpp" line="768"/>
+        <location filename="../UserInterface.cpp" line="762"/>
         <source>&amp;About %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2379,15 +2387,15 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="319"/>
-        <location filename="../UserInterface.cpp" line="257"/>
+        <location filename="../UserInterface.cpp" line="250"/>
         <source>Select &amp;GTA V Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="738"/>
-        <location filename="../UserInterface.cpp" line="197"/>
-        <location filename="../UserInterface.cpp" line="735"/>
+        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../UserInterface.cpp" line="194"/>
+        <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2403,65 +2411,73 @@ 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"/>
         <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"/>
         <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"/>
         <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"/>
         <source>Change &amp;Players...</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
-        <source>Show In-game</source>
-        <translation type="unfinished"></translation>
-    </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1607"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <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"/>
         <source>Hide In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UserInterface.cpp" line="70"/>
-        <location filename="../UserInterface.cpp" line="323"/>
-        <location filename="../UserInterface.cpp" line="782"/>
+        <location filename="../UserInterface.cpp" line="316"/>
+        <location filename="../UserInterface.cpp" line="776"/>
         <source>Select Profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="470"/>
+        <location filename="../UserInterface.cpp" line="463"/>
         <source>Open File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="517"/>
-        <location filename="../UserInterface.cpp" line="533"/>
-        <location filename="../UserInterface.cpp" line="560"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../UserInterface.cpp" line="510"/>
+        <location filename="../UserInterface.cpp" line="526"/>
+        <location filename="../UserInterface.cpp" line="553"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="560"/>
+        <location filename="../UserInterface.cpp" line="553"/>
         <source>Can&apos;t open %1 because of not valid file format</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="648"/>
+        <location filename="../UserInterface.cpp" line="642"/>
         <source>%1 - Messages</source>
         <translation type="unfinished"></translation>
     </message>
diff --git a/res/gta5sync_de.qm b/res/gta5sync_de.qm
index 5ef25a4a2c6a8b9d88c892d9df58529e18cbd299..f447bb29ac306c25ae4f3227907de5458de0dad0 100644
GIT binary patch
delta 2901
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

delta 3011
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

diff --git a/res/gta5sync_de.ts b/res/gta5sync_de.ts
index 7ce5ee4..e42bbd1 100644
--- a/res/gta5sync_de.ts
+++ b/res/gta5sync_de.ts
@@ -178,8 +178,8 @@ Snapmatic Bilder und Spielständen</translation>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
         <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
-        <location filename="../SnapmaticWidget.cpp" line="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <source>Snapmatic Image Editor</source>
         <translation>Snapmatic Bild Editor</translation>
     </message>
@@ -210,13 +210,13 @@ Snapmatic Bilder und Spielständen</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
         <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="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <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="721"/>
+        <location filename="../ProfileInterface.cpp" line="725"/>
         <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="740"/>
+        <location filename="../ProfileInterface.cpp" line="744"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>Eigenes Bild</translation>
@@ -613,19 +613,17 @@ Y: %2</translation>
         <translation>Inhalte Öffnen/Auswählen Modus</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="39"/>
         <source>Open with Singleclick</source>
-        <translation>Ein Klick zum öffnen</translation>
+        <translation type="vanished">Ein Klick zum öffnen</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="49"/>
+        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Open with Doubleclick</source>
         <translation>Doppelklick zum öffnen</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Select with Singleclick</source>
-        <translation>Ein Klick zum auswählen</translation>
+        <translation type="vanished">Ein Klick zum auswählen</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="66"/>
@@ -751,26 +749,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <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"/>
         <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="633"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="649"/>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="662"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
-        <location filename="../OptionsDialog.cpp" line="670"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <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"/>
         <source>Language: %1</source>
         <translation>Sprache: %1</translation>
     </message>
@@ -791,7 +789,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="591"/>
+        <location filename="../OptionsDialog.cpp" line="598"/>
         <source>Participate in %1 User Statistics</source>
         <translation>An %1 Benutzerstatistik teilnehmen</translation>
     </message>
@@ -822,8 +820,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="607"/>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="614"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Participation ID: %1</source>
         <translation>Teilnahme ID: %1</translation>
     </message>
@@ -879,8 +877,8 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="611"/>
         <location filename="../OptionsDialog.ui" line="633"/>
-        <location filename="../OptionsDialog.cpp" line="224"/>
-        <location filename="../OptionsDialog.cpp" line="273"/>
+        <location filename="../OptionsDialog.cpp" line="226"/>
+        <location filename="../OptionsDialog.cpp" line="275"/>
         <source>Current: %1</source>
         <translation>Aktuell: %1</translation>
     </message>
@@ -917,95 +915,95 @@ Y: %2</translation>
         <translation>Abbre&amp;chen</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>System</source>
         <comment>System in context of System default</comment>
         <translation>System</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
         <source>%1 (Game language)</source>
         <comment>Next closest language compared to the Game settings</comment>
         <translation>%1 (Spielsprache)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>%1 (Closest to Interface)</source>
         <comment>Next closest language compared to the Interface</comment>
         <translation>%1 (Näheste zur Oberfläche)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>Auto</source>
         <comment>Automatic language choice.</comment>
         <translation>Automatisch</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>%1 (Language priority)</source>
         <comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
         <translation>%1 (Sprachenpriorität)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <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="592"/>
+        <location filename="../OptionsDialog.cpp" line="599"/>
         <source>View %1 User Statistics Online</source>
         <translation>%1 Benutzerstatistik Online ansehen</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Not registered</source>
         <translation>Nicht registriert</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="636"/>
+        <location filename="../OptionsDialog.cpp" line="652"/>
+        <location filename="../OptionsDialog.cpp" line="665"/>
+        <location filename="../OptionsDialog.cpp" line="666"/>
         <source>Yes</source>
         <translation>Ja</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="637"/>
+        <location filename="../OptionsDialog.cpp" line="651"/>
         <source>No</source>
         <translation>Nein</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="673"/>
         <source>OS defined</source>
         <translation>OS-defined</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <location filename="../OptionsDialog.cpp" line="660"/>
+        <location filename="../OptionsDialog.cpp" line="681"/>
         <source>Steam defined</source>
         <translation>Steam-definiert</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="489"/>
+        <location filename="../OptionsDialog.cpp" line="496"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>Kein Profil</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="497"/>
-        <location filename="../OptionsDialog.cpp" line="501"/>
-        <location filename="../OptionsDialog.cpp" line="503"/>
+        <location filename="../OptionsDialog.cpp" line="504"/>
+        <location filename="../OptionsDialog.cpp" line="508"/>
+        <location filename="../OptionsDialog.cpp" line="510"/>
         <source>Profile: %1</source>
         <translation>Profil: %1</translation>
     </message>
@@ -1056,31 +1054,31 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1658"/>
+        <location filename="../ProfileInterface.cpp" line="1690"/>
         <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="1659"/>
+        <location filename="../ProfileInterface.cpp" line="1691"/>
         <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="1652"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>&amp;Edit Properties...</source>
         <translation>Eigenschaften bearb&amp;eiten...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1653"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>&amp;Overwrite Image...</source>
         <translation>Bild &amp;überschreiben...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>&amp;Kartenansicht öffnen...</translation>
     </message>
@@ -1229,7 +1227,7 @@ Drücke 1 für Standardmodus</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1656"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>&amp;JSON Editor öffnen...</translation>
     </message>
@@ -1332,35 +1330,35 @@ Drücke 1 für Standardmodus</translation>
         <translation>Lade...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <source>Snapmatic Loader</source>
         <translation>Snapmatic Lader</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <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="496"/>
-        <location filename="../ProfileInterface.cpp" line="497"/>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="562"/>
-        <location filename="../ProfileInterface.cpp" line="596"/>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
-        <location filename="../ProfileInterface.cpp" line="796"/>
-        <location filename="../ProfileInterface.cpp" line="943"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../ProfileInterface.cpp" line="986"/>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <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"/>
         <source>Import...</source>
         <translation>Importieren...</translation>
     </message>
@@ -1375,45 +1373,45 @@ Drücke 1 für Standardmodus</translation>
         <translation>Importieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="514"/>
-        <location filename="../UserInterface.cpp" line="475"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>Spielstanddateien (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="515"/>
-        <location filename="../UserInterface.cpp" line="476"/>
+        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic Bilder (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="512"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <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="516"/>
+        <location filename="../ProfileInterface.cpp" line="520"/>
         <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="517"/>
-        <location filename="../UserInterface.cpp" line="477"/>
+        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>Alle Dateien (**)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="563"/>
-        <location filename="../ProfileInterface.cpp" line="580"/>
+        <location filename="../ProfileInterface.cpp" line="567"/>
+        <location filename="../ProfileInterface.cpp" line="584"/>
         <source>Import file %1 of %2 files</source>
         <translation>Importiere Datei %1 von %2 Dateien</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="596"/>
+        <location filename="../ProfileInterface.cpp" line="600"/>
         <source>Import failed with...
 
 %1</source>
@@ -1422,55 +1420,55 @@ Drücke 1 für Standardmodus</translation>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../UserInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="642"/>
+        <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="673"/>
-        <location filename="../UserInterface.cpp" line="533"/>
+        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>Fehler beim Lesen von Spielstanddatei</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
+        <location filename="../ProfileInterface.cpp" line="790"/>
         <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="796"/>
+        <location filename="../ProfileInterface.cpp" line="800"/>
         <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="943"/>
+        <location filename="../ProfileInterface.cpp" line="947"/>
         <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="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1415"/>
         <source>Initialising export...</source>
         <translation>Initialisiere Export...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
+        <location filename="../ProfileInterface.cpp" line="1120"/>
         <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="1365"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <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="541"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../ProfileInterface.cpp" line="545"/>
+        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>Keine gültige Datei wurde ausgewählt</translation>
     </message>
@@ -1480,91 +1478,91 @@ Drücke 1 für Standardmodus</translation>
         <translation>Aktivierte Bilder: %1 von %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
+        <location filename="../ProfileInterface.cpp" line="1128"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <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="1220"/>
+        <location filename="../ProfileInterface.cpp" line="1224"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
+        <location filename="../ProfileInterface.cpp" line="1261"/>
         <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="1263"/>
+        <location filename="../ProfileInterface.cpp" line="1267"/>
         <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="1350"/>
-        <location filename="../ProfileInterface.cpp" line="1368"/>
+        <location filename="../ProfileInterface.cpp" line="1354"/>
+        <location filename="../ProfileInterface.cpp" line="1372"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>JPG Bilder und GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1351"/>
-        <location filename="../ProfileInterface.cpp" line="1373"/>
+        <location filename="../ProfileInterface.cpp" line="1355"/>
+        <location filename="../ProfileInterface.cpp" line="1377"/>
         <source>JPG pictures only</source>
         <translation>Nur JPG Bilder</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1352"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1356"/>
+        <location filename="../ProfileInterface.cpp" line="1381"/>
         <source>GTA Snapmatic only</source>
         <translation>Nur GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2029"/>
-        <location filename="../ProfileInterface.cpp" line="2132"/>
-        <location filename="../ProfileInterface.cpp" line="2263"/>
-        <location filename="../ProfileInterface.cpp" line="2369"/>
+        <location filename="../ProfileInterface.cpp" line="2124"/>
+        <location filename="../ProfileInterface.cpp" line="2227"/>
+        <location filename="../ProfileInterface.cpp" line="2358"/>
+        <location filename="../ProfileInterface.cpp" line="2464"/>
         <source>Patch selected...</source>
         <translation>Auswahl patchen...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2030"/>
-        <location filename="../ProfileInterface.cpp" line="2049"/>
-        <location filename="../ProfileInterface.cpp" line="2133"/>
-        <location filename="../ProfileInterface.cpp" line="2152"/>
-        <location filename="../ProfileInterface.cpp" line="2264"/>
-        <location filename="../ProfileInterface.cpp" line="2283"/>
-        <location filename="../ProfileInterface.cpp" line="2370"/>
-        <location filename="../ProfileInterface.cpp" line="2389"/>
+        <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"/>
         <source>Patch file %1 of %2 files</source>
         <translation>Patche Datei %1 von %2 Dateien</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2113"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify as Avatar</source>
         <translation>Als Avatar qualifizieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
         <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
+        <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"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>Keine Snapmatic Bilder sind ausgewählt</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
         <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="1587"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <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"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1574,93 +1572,93 @@ Drücke 1 für Standardmodus</translation>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1002"/>
+        <location filename="../ProfileInterface.cpp" line="1006"/>
         <source>Prepare Content for Import...</source>
         <translation>Bereite Inhalt für Import vor...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>Qualifizieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2199"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players...</source>
         <translation>Spieler ändern...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>Spieler ändern</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2298"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew...</source>
         <translation>Crew ändern...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
         <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="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>Crew ändern</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title...</source>
         <translation>Titel ändern...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
         <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="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>Titel ändern</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <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="1473"/>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>Remove selected</source>
         <translation>Auswahl löschen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
         <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="1327"/>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
-        <location filename="../ProfileInterface.cpp" line="1410"/>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
+        <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"/>
         <source>Export selected...</source>
         <translation>Auswahl exportieren...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
+        <location filename="../ProfileInterface.cpp" line="1449"/>
         <source>Export failed with...
 
 %1</source>
@@ -1674,13 +1672,13 @@ Drücke 1 für Standardmodus</translation>
         <translation>Exportiere Datei %1 von %2 Dateien</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="473"/>
+        <location filename="../UserInterface.cpp" line="466"/>
         <source>All profile files (*.g5e SGTA* PGTA*)</source>
         <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="513"/>
-        <location filename="../UserInterface.cpp" line="474"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
@@ -1804,32 +1802,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="1694"/>
+        <location filename="../ProfileInterface.cpp" line="1757"/>
         <source>&amp;View</source>
         <translation>A&amp;nsehen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1696"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Remove</source>
         <translation>Entfe&amp;rnen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1792"/>
         <source>&amp;Select</source>
         <translation>Au&amp;swählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1699"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>&amp;Deselect</source>
         <translation>A&amp;bwählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1702"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>Select &amp;All</source>
         <translation>&amp;Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1771"/>
+        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation>Alles a&amp;bwählen</translation>
     </message>
@@ -1844,7 +1848,9 @@ Drücke 1 für Standardmodus</translation>
         <translation>Spielstand kopieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1723"/>
+        <location filename="../ProfileInterface.cpp" line="1758"/>
+        <location filename="../ProfileInterface.cpp" line="1788"/>
         <source>&amp;Export</source>
         <translation>&amp;Exportieren</translation>
     </message>
@@ -1898,7 +1904,7 @@ Drücke 1 für Standardmodus</translation>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Snapmatic Properties</source>
         <translation>Snapmatic Eigenschaften</translation>
     </message>
@@ -1938,7 +1944,7 @@ Drücke 1 für Standardmodus</translation>
         <translation>Meme</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>Snapmatic Titel</translation>
@@ -2049,24 +2055,24 @@ Drücke 1 für Standardmodus</translation>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <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="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>Neuer Snapmatic Titel:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>Snapmatic Crew</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>Neue Snapmatic Crew:</translation>
@@ -2184,62 +2190,72 @@ Drücke 1 für Standardmodus</translation>
         <translation>Bist du sicher %1 von deine Snapmatic Bilder zu löschen?</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <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="328"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <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="1643"/>
+        <location filename="../ProfileInterface.cpp" line="1677"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Edi&amp;t</source>
         <translation>Bearbei&amp;ten</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1657"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;Export</source>
         <translation>&amp;Exportieren</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1646"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>Show &amp;In-game</source>
         <translation>&amp;Im Spiel anzeigen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1650"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>Hide &amp;In-game</source>
         <translation>&amp;Im Spiel ausblenden</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1660"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;View</source>
         <translation>A&amp;nsehen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1663"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
         <source>&amp;Remove</source>
         <translation>Entfe&amp;rnen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1665"/>
+        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1727"/>
         <source>&amp;Select</source>
         <translation>Au&amp;swählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1666"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>&amp;Deselect</source>
         <translation>A&amp;bwählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1669"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>Select &amp;All</source>
         <translation>Alles &amp;auswählen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1673"/>
+        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation>Alles a&amp;bwählen</translation>
     </message>
@@ -2352,21 +2368,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"/>
         <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"/>
         <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"/>
         <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"/>
         <source>Change &amp;Crew...</source>
         <translation>&amp;Crew ändern...</translation>
     </message>
@@ -2382,7 +2406,7 @@ Drücke 1 für Standardmodus</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="319"/>
-        <location filename="../UserInterface.cpp" line="257"/>
+        <location filename="../UserInterface.cpp" line="250"/>
         <source>Select &amp;GTA V Folder...</source>
         <translation>Wähle &amp;GTA V Ordner...</translation>
     </message>
@@ -2398,7 +2422,7 @@ Drücke 1 für Standardmodus</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="153"/>
-        <location filename="../UserInterface.cpp" line="679"/>
+        <location filename="../UserInterface.cpp" line="673"/>
         <source>&amp;Close</source>
         <translation>S&amp;chließen</translation>
     </message>
@@ -2434,21 +2458,21 @@ Drücke 1 für Standardmodus</translation>
     </message>
     <message>
         <location filename="../UserInterface.cpp" line="70"/>
-        <location filename="../UserInterface.cpp" line="323"/>
-        <location filename="../UserInterface.cpp" line="782"/>
+        <location filename="../UserInterface.cpp" line="316"/>
+        <location filename="../UserInterface.cpp" line="776"/>
         <source>Select Profile</source>
         <translation>Profil auswählen</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="738"/>
-        <location filename="../UserInterface.cpp" line="197"/>
-        <location filename="../UserInterface.cpp" line="735"/>
+        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../UserInterface.cpp" line="194"/>
+        <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
         <translation>Wähle GTA V Ordner...</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="470"/>
+        <location filename="../UserInterface.cpp" line="463"/>
         <source>Open File...</source>
         <translation>Datei öffnen...</translation>
     </message>
@@ -2461,25 +2485,25 @@ Drücke 1 für Standardmodus</translation>
     <message>
         <location filename="../UserInterface.ui" line="236"/>
         <location filename="../UserInterface.cpp" line="66"/>
-        <location filename="../UserInterface.cpp" line="768"/>
+        <location filename="../UserInterface.cpp" line="762"/>
         <source>&amp;About %1</source>
         <translation>&amp;Über %1</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="517"/>
-        <location filename="../UserInterface.cpp" line="533"/>
-        <location filename="../UserInterface.cpp" line="560"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../UserInterface.cpp" line="510"/>
+        <location filename="../UserInterface.cpp" line="526"/>
+        <location filename="../UserInterface.cpp" line="553"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>Open File</source>
         <translation>Datei öffnen</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="560"/>
+        <location filename="../UserInterface.cpp" line="553"/>
         <source>Can&apos;t open %1 because of not valid file format</source>
         <translation>Kann nicht %1 öffnen weil Dateiformat nicht gültig ist</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="648"/>
+        <location filename="../UserInterface.cpp" line="642"/>
         <source>%1 - Messages</source>
         <translation>%1 - Nachrichten</translation>
     </message>
@@ -2489,16 +2513,16 @@ Drücke 1 für Standardmodus</translation>
         <translation>&amp;Neuladen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../ProfileInterface.cpp" line="1607"/>
+        <location filename="../ProfileInterface.cpp" line="1621"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Show In-game</source>
         <translation>Im Spiel anzeigen</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../ProfileInterface.cpp" line="1641"/>
+        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <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 af2c115..fbd6d73 100644
--- a/res/gta5sync_en_US.ts
+++ b/res/gta5sync_en_US.ts
@@ -168,8 +168,8 @@ Pictures and Savegames</source>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
         <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
-        <location filename="../SnapmaticWidget.cpp" line="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <source>Snapmatic Image Editor</source>
         <translation type="unfinished"></translation>
     </message>
@@ -200,13 +200,13 @@ Pictures and Savegames</source>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
         <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="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <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="721"/>
+        <location filename="../ProfileInterface.cpp" line="725"/>
         <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="740"/>
+        <location filename="../ProfileInterface.cpp" line="744"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation type="unfinished"></translation>
@@ -602,19 +602,9 @@ Y: %2</source>
         <source>Content Open/Select Mode</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <location filename="../OptionsDialog.ui" line="39"/>
-        <source>Open with Singleclick</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../OptionsDialog.ui" line="49"/>
-        <source>Open with Doubleclick</source>
-        <translation type="unfinished"></translation>
-    </message>
     <message>
         <location filename="../OptionsDialog.ui" line="56"/>
-        <source>Select with Singleclick</source>
+        <source>Open with Doubleclick</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
@@ -731,26 +721,26 @@ Y: %2</source>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <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"/>
         <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="633"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="649"/>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="662"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
-        <location filename="../OptionsDialog.cpp" line="670"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <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"/>
         <source>Language: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -766,7 +756,7 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="591"/>
+        <location filename="../OptionsDialog.cpp" line="598"/>
         <source>Participate in %1 User Statistics</source>
         <translation type="unfinished"></translation>
     </message>
@@ -787,8 +777,8 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="607"/>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="614"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Participation ID: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -850,8 +840,8 @@ Y: %2</source>
     <message>
         <location filename="../OptionsDialog.ui" line="611"/>
         <location filename="../OptionsDialog.ui" line="633"/>
-        <location filename="../OptionsDialog.cpp" line="224"/>
-        <location filename="../OptionsDialog.cpp" line="273"/>
+        <location filename="../OptionsDialog.cpp" line="226"/>
+        <location filename="../OptionsDialog.cpp" line="275"/>
         <source>Current: %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -893,95 +883,95 @@ Y: %2</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>System</source>
         <comment>System in context of System default</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
         <source>%1 (Game language)</source>
         <comment>Next closest language compared to the Game settings</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>%1 (Closest to Interface)</source>
         <comment>Next closest language compared to the Interface</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>Auto</source>
         <comment>Automatic language choice.</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>%1 (Language priority)</source>
         <comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <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="489"/>
+        <location filename="../OptionsDialog.cpp" line="496"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="497"/>
-        <location filename="../OptionsDialog.cpp" line="501"/>
-        <location filename="../OptionsDialog.cpp" line="503"/>
+        <location filename="../OptionsDialog.cpp" line="504"/>
+        <location filename="../OptionsDialog.cpp" line="508"/>
+        <location filename="../OptionsDialog.cpp" line="510"/>
         <source>Profile: %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="592"/>
+        <location filename="../OptionsDialog.cpp" line="599"/>
         <source>View %1 User Statistics Online</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Not registered</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="636"/>
+        <location filename="../OptionsDialog.cpp" line="652"/>
+        <location filename="../OptionsDialog.cpp" line="665"/>
+        <location filename="../OptionsDialog.cpp" line="666"/>
         <source>Yes</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="637"/>
+        <location filename="../OptionsDialog.cpp" line="651"/>
         <source>No</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="673"/>
         <source>OS defined</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <location filename="../OptionsDialog.cpp" line="660"/>
+        <location filename="../OptionsDialog.cpp" line="681"/>
         <source>Steam defined</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1023,31 +1013,31 @@ Y: %2</source>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1658"/>
+        <location filename="../ProfileInterface.cpp" line="1690"/>
         <source>Export as &amp;Picture...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1659"/>
+        <location filename="../ProfileInterface.cpp" line="1691"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1653"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>&amp;Overwrite Image...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>&amp;Edit Properties...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Open &amp;Map Viewer...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1199,7 +1189,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1656"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Open &amp;JSON Editor...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1313,35 +1303,35 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <source>Snapmatic Loader</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <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="496"/>
-        <location filename="../ProfileInterface.cpp" line="497"/>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="562"/>
-        <location filename="../ProfileInterface.cpp" line="596"/>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
-        <location filename="../ProfileInterface.cpp" line="796"/>
-        <location filename="../ProfileInterface.cpp" line="943"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../ProfileInterface.cpp" line="986"/>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <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"/>
         <source>Import...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1356,219 +1346,219 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="512"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <source>Importable files (%1)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="513"/>
-        <location filename="../UserInterface.cpp" line="474"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="514"/>
-        <location filename="../UserInterface.cpp" line="475"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="515"/>
-        <location filename="../UserInterface.cpp" line="476"/>
+        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="520"/>
         <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="517"/>
-        <location filename="../UserInterface.cpp" line="477"/>
+        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../ProfileInterface.cpp" line="545"/>
+        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="563"/>
-        <location filename="../ProfileInterface.cpp" line="580"/>
+        <location filename="../ProfileInterface.cpp" line="567"/>
+        <location filename="../ProfileInterface.cpp" line="584"/>
         <source>Import file %1 of %2 files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="596"/>
+        <location filename="../ProfileInterface.cpp" line="600"/>
         <source>Import failed with...
 
 %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../UserInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../UserInterface.cpp" line="533"/>
+        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
+        <location filename="../ProfileInterface.cpp" line="790"/>
         <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="796"/>
+        <location filename="../ProfileInterface.cpp" line="800"/>
         <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="943"/>
+        <location filename="../ProfileInterface.cpp" line="947"/>
         <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="1116"/>
+        <location filename="../ProfileInterface.cpp" line="1120"/>
         <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="1220"/>
+        <location filename="../ProfileInterface.cpp" line="1224"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
+        <location filename="../ProfileInterface.cpp" line="1261"/>
         <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="1263"/>
+        <location filename="../ProfileInterface.cpp" line="1267"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1350"/>
-        <location filename="../ProfileInterface.cpp" line="1368"/>
+        <location filename="../ProfileInterface.cpp" line="1354"/>
+        <location filename="../ProfileInterface.cpp" line="1372"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1351"/>
-        <location filename="../ProfileInterface.cpp" line="1373"/>
+        <location filename="../ProfileInterface.cpp" line="1355"/>
+        <location filename="../ProfileInterface.cpp" line="1377"/>
         <source>JPG pictures only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1352"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1356"/>
+        <location filename="../ProfileInterface.cpp" line="1381"/>
         <source>GTA Snapmatic only</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <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="1327"/>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
-        <location filename="../ProfileInterface.cpp" line="1410"/>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
+        <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"/>
         <source>Export selected...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1415"/>
         <source>Initialising export...</source>
         <translation>Initializing export...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
+        <location filename="../ProfileInterface.cpp" line="1449"/>
         <source>Export failed with...
 
 %1</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>Remove selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2113"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify as Avatar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
         <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
+        <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"/>
         <source>No Snapmatic pictures are selected</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2029"/>
-        <location filename="../ProfileInterface.cpp" line="2132"/>
-        <location filename="../ProfileInterface.cpp" line="2263"/>
-        <location filename="../ProfileInterface.cpp" line="2369"/>
+        <location filename="../ProfileInterface.cpp" line="2124"/>
+        <location filename="../ProfileInterface.cpp" line="2227"/>
+        <location filename="../ProfileInterface.cpp" line="2358"/>
+        <location filename="../ProfileInterface.cpp" line="2464"/>
         <source>Patch selected...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2030"/>
-        <location filename="../ProfileInterface.cpp" line="2049"/>
-        <location filename="../ProfileInterface.cpp" line="2133"/>
-        <location filename="../ProfileInterface.cpp" line="2152"/>
-        <location filename="../ProfileInterface.cpp" line="2264"/>
-        <location filename="../ProfileInterface.cpp" line="2283"/>
-        <location filename="../ProfileInterface.cpp" line="2370"/>
-        <location filename="../ProfileInterface.cpp" line="2389"/>
+        <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"/>
         <source>Patch file %1 of %2 files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <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"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1576,76 +1566,76 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1002"/>
+        <location filename="../ProfileInterface.cpp" line="1006"/>
         <source>Prepare Content for Import...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
+        <location filename="../ProfileInterface.cpp" line="1128"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2199"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2298"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="473"/>
+        <location filename="../UserInterface.cpp" line="466"/>
         <source>All profile files (*.g5e SGTA* PGTA*)</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1731,37 +1721,45 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1694"/>
+        <location filename="../ProfileInterface.cpp" line="1757"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1723"/>
+        <location filename="../ProfileInterface.cpp" line="1758"/>
+        <location filename="../ProfileInterface.cpp" line="1788"/>
         <source>&amp;Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1696"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1792"/>
         <source>&amp;Select</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1699"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>&amp;Deselect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1702"/>
+        <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="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1771"/>
+        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -1861,7 +1859,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Snapmatic Properties</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2006,30 +2004,30 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation type="unfinished"></translation>
@@ -2157,52 +2155,62 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1643"/>
+        <location filename="../ProfileInterface.cpp" line="1677"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Edi&amp;t</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1646"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>Show &amp;In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1650"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>Hide &amp;In-game</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1657"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;Export</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1660"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1663"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
         <source>&amp;Remove</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1665"/>
+        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1727"/>
         <source>&amp;Select</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1666"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>&amp;Deselect</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1669"/>
+        <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="1673"/>
+        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2217,12 +2225,12 @@ Press 1 for Default View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2286,7 +2294,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="153"/>
-        <location filename="../UserInterface.cpp" line="679"/>
+        <location filename="../UserInterface.cpp" line="673"/>
         <source>&amp;Close</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2318,7 +2326,7 @@ Press 1 for Default View</source>
     <message>
         <location filename="../UserInterface.ui" line="236"/>
         <location filename="../UserInterface.cpp" line="66"/>
-        <location filename="../UserInterface.cpp" line="768"/>
+        <location filename="../UserInterface.cpp" line="762"/>
         <source>&amp;About %1</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2374,15 +2382,15 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="319"/>
-        <location filename="../UserInterface.cpp" line="257"/>
+        <location filename="../UserInterface.cpp" line="250"/>
         <source>Select &amp;GTA V Folder...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="738"/>
-        <location filename="../UserInterface.cpp" line="197"/>
-        <location filename="../UserInterface.cpp" line="735"/>
+        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../UserInterface.cpp" line="194"/>
+        <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2398,6 +2406,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"/>
         <source>Change &amp;Players...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -2408,60 +2418,66 @@ 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"/>
         <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"/>
         <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"/>
         <source>&amp;Qualify as Avatar</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../UserInterface.cpp" line="70"/>
-        <location filename="../UserInterface.cpp" line="323"/>
-        <location filename="../UserInterface.cpp" line="782"/>
+        <location filename="../UserInterface.cpp" line="316"/>
+        <location filename="../UserInterface.cpp" line="776"/>
         <source>Select Profile</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="470"/>
+        <location filename="../UserInterface.cpp" line="463"/>
         <source>Open File...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="517"/>
-        <location filename="../UserInterface.cpp" line="533"/>
-        <location filename="../UserInterface.cpp" line="560"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../UserInterface.cpp" line="510"/>
+        <location filename="../UserInterface.cpp" line="526"/>
+        <location filename="../UserInterface.cpp" line="553"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>Open File</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="560"/>
+        <location filename="../UserInterface.cpp" line="553"/>
         <source>Can&apos;t open %1 because of not valid file format</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="648"/>
+        <location filename="../UserInterface.cpp" line="642"/>
         <source>%1 - Messages</source>
         <translation type="unfinished"></translation>
     </message>
-    <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
-        <source>Show In-game</source>
-        <translation type="unfinished"></translation>
-    </message>
     <message>
         <location filename="../ProfileInterface.cpp" line="1607"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
+        <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"/>
         <source>Hide In-game</source>
         <translation type="unfinished"></translation>
     </message>
diff --git a/res/gta5sync_fr.qm b/res/gta5sync_fr.qm
index 062da138d0c1f0cbbe356309b2c488f3c5ddd272..752404cbad5e6837d92928bf8f18b6e6cc81ab39 100644
GIT binary patch
delta 2870
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
YBQ<5U$2|=lKF3o7&TEeE8|9GlHz;RfhyVZp

delta 2967
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

diff --git a/res/gta5sync_fr.ts b/res/gta5sync_fr.ts
index 338db28..8417299 100644
--- a/res/gta5sync_fr.ts
+++ b/res/gta5sync_fr.ts
@@ -178,8 +178,8 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
         <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
-        <location filename="../SnapmaticWidget.cpp" line="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <source>Snapmatic Image Editor</source>
         <translation>Éditeur d&apos;images Snapmatic</translation>
     </message>
@@ -210,13 +210,13 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
         <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="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <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="721"/>
+        <location filename="../ProfileInterface.cpp" line="725"/>
         <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="740"/>
+        <location filename="../ProfileInterface.cpp" line="744"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>Image personnalisé</translation>
@@ -623,19 +623,17 @@ Y : %2</translation>
         <translation>Ouverture/Sélection du contenu</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="39"/>
         <source>Open with Singleclick</source>
-        <translation>Ouvrir avec un clic</translation>
+        <translation type="vanished">Ouvrir avec un clic</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="49"/>
+        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Open with Doubleclick</source>
         <translation>Ouvrir avec un double-clic</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Select with Singleclick</source>
-        <translation>Sélectionner avec un clic</translation>
+        <translation type="vanished">Sélectionner avec un clic</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="66"/>
@@ -751,26 +749,26 @@ Y : %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <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"/>
         <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="633"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="649"/>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="662"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
-        <location filename="../OptionsDialog.cpp" line="670"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <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"/>
         <source>Language: %1</source>
         <translation>Langue : %1</translation>
     </message>
@@ -791,7 +789,7 @@ Y : %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="591"/>
+        <location filename="../OptionsDialog.cpp" line="598"/>
         <source>Participate in %1 User Statistics</source>
         <translation>Participer aux statistiques d&apos;usage %1</translation>
     </message>
@@ -822,8 +820,8 @@ Y : %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="607"/>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="614"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Participation ID: %1</source>
         <translation>ID de participation : %1</translation>
     </message>
@@ -874,8 +872,8 @@ Y : %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="611"/>
         <location filename="../OptionsDialog.ui" line="633"/>
-        <location filename="../OptionsDialog.cpp" line="224"/>
-        <location filename="../OptionsDialog.cpp" line="273"/>
+        <location filename="../OptionsDialog.cpp" line="226"/>
+        <location filename="../OptionsDialog.cpp" line="275"/>
         <source>Current: %1</source>
         <translation>Actuel : %1</translation>
     </message>
@@ -917,95 +915,95 @@ Y : %2</translation>
         <translation>&amp;Annuler</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>System</source>
         <comment>System in context of System default</comment>
         <translation>Système</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
         <source>%1 (Game language)</source>
         <comment>Next closest language compared to the Game settings</comment>
         <translation>%1 (Langue du jeu)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>%1 (Closest to Interface)</source>
         <comment>Next closest language compared to the Interface</comment>
         <translation>%1 (Langage proche de l&apos;interface)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>Auto</source>
         <comment>Automatic language choice.</comment>
         <translation>Automatique</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>%1 (Language priority)</source>
         <comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
         <translation>%1 (Priorité de la langue)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <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="592"/>
+        <location filename="../OptionsDialog.cpp" line="599"/>
         <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="611"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Not registered</source>
         <translation>Pas enregistré</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="636"/>
+        <location filename="../OptionsDialog.cpp" line="652"/>
+        <location filename="../OptionsDialog.cpp" line="665"/>
+        <location filename="../OptionsDialog.cpp" line="666"/>
         <source>Yes</source>
         <translation>Oui</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="637"/>
+        <location filename="../OptionsDialog.cpp" line="651"/>
         <source>No</source>
         <translation>Non</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="673"/>
         <source>OS defined</source>
         <translation>Défini par le système d&apos;exploitation</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <location filename="../OptionsDialog.cpp" line="660"/>
+        <location filename="../OptionsDialog.cpp" line="681"/>
         <source>Steam defined</source>
         <translation>Défini par Steam</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="489"/>
+        <location filename="../OptionsDialog.cpp" line="496"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>Aucun profil</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="497"/>
-        <location filename="../OptionsDialog.cpp" line="501"/>
-        <location filename="../OptionsDialog.cpp" line="503"/>
+        <location filename="../OptionsDialog.cpp" line="504"/>
+        <location filename="../OptionsDialog.cpp" line="508"/>
+        <location filename="../OptionsDialog.cpp" line="510"/>
         <source>Profile: %1</source>
         <translation>Profil : %1</translation>
     </message>
@@ -1136,31 +1134,31 @@ Y : %2</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1658"/>
+        <location filename="../ProfileInterface.cpp" line="1690"/>
         <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="1659"/>
+        <location filename="../ProfileInterface.cpp" line="1691"/>
         <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="1653"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <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="1652"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <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="1655"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
     </message>
@@ -1229,7 +1227,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1656"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
     </message>
@@ -1343,35 +1341,35 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Chargement...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <source>Snapmatic Loader</source>
         <translation>Snapmatic Loader</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <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="496"/>
-        <location filename="../ProfileInterface.cpp" line="497"/>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="562"/>
-        <location filename="../ProfileInterface.cpp" line="596"/>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
-        <location filename="../ProfileInterface.cpp" line="796"/>
-        <location filename="../ProfileInterface.cpp" line="943"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../ProfileInterface.cpp" line="986"/>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <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"/>
         <source>Import...</source>
         <translation>Importer...</translation>
     </message>
@@ -1386,40 +1384,40 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Importer</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="514"/>
-        <location filename="../UserInterface.cpp" line="475"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
+        <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="515"/>
-        <location filename="../UserInterface.cpp" line="476"/>
+        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Photos Snapmatic (PGTA*)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="520"/>
         <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="517"/>
-        <location filename="../UserInterface.cpp" line="477"/>
+        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>Tous les fichiers (**)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="563"/>
-        <location filename="../ProfileInterface.cpp" line="580"/>
+        <location filename="../ProfileInterface.cpp" line="567"/>
+        <location filename="../ProfileInterface.cpp" line="584"/>
         <source>Import file %1 of %2 files</source>
         <translation>Importation du fichier %1 sur %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="596"/>
+        <location filename="../ProfileInterface.cpp" line="600"/>
         <source>Import failed with...
 
 %1</source>
@@ -1428,148 +1426,148 @@ Appuyer sur 1 pour le mode par défaut</translation>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../ProfileInterface.cpp" line="545"/>
+        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>Fichier invalide</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="512"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <source>Importable files (%1)</source>
         <translation>Fichiers importables (%1)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../UserInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="642"/>
+        <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="673"/>
-        <location filename="../UserInterface.cpp" line="533"/>
+        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>Impossible de lire le fichier de sauvegarde</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
+        <location filename="../ProfileInterface.cpp" line="790"/>
         <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="796"/>
+        <location filename="../ProfileInterface.cpp" line="800"/>
         <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="943"/>
+        <location filename="../ProfileInterface.cpp" line="947"/>
         <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="1116"/>
+        <location filename="../ProfileInterface.cpp" line="1120"/>
         <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="1220"/>
+        <location filename="../ProfileInterface.cpp" line="1224"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>Impossible d&apos;importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
+        <location filename="../ProfileInterface.cpp" line="1261"/>
         <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="1263"/>
+        <location filename="../ProfileInterface.cpp" line="1267"/>
         <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="1350"/>
-        <location filename="../ProfileInterface.cpp" line="1368"/>
+        <location filename="../ProfileInterface.cpp" line="1354"/>
+        <location filename="../ProfileInterface.cpp" line="1372"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>Images JPG et GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1351"/>
-        <location filename="../ProfileInterface.cpp" line="1373"/>
+        <location filename="../ProfileInterface.cpp" line="1355"/>
+        <location filename="../ProfileInterface.cpp" line="1377"/>
         <source>JPG pictures only</source>
         <translation>Images JPG seulement</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1352"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1356"/>
+        <location filename="../ProfileInterface.cpp" line="1381"/>
         <source>GTA Snapmatic only</source>
         <translation>GTA Snapmatic seulement</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <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="1327"/>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
-        <location filename="../ProfileInterface.cpp" line="1410"/>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
+        <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"/>
         <source>Export selected...</source>
         <translation>Exporter la sélection...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1415"/>
         <source>Initialising export...</source>
         <translation>Initialisation de l&apos;export...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2113"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify as Avatar</source>
         <translation>Qualifier comme Avatar</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
         <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
+        <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"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>Aucun Snapmatic sélectionné</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2029"/>
-        <location filename="../ProfileInterface.cpp" line="2132"/>
-        <location filename="../ProfileInterface.cpp" line="2263"/>
-        <location filename="../ProfileInterface.cpp" line="2369"/>
+        <location filename="../ProfileInterface.cpp" line="2124"/>
+        <location filename="../ProfileInterface.cpp" line="2227"/>
+        <location filename="../ProfileInterface.cpp" line="2358"/>
+        <location filename="../ProfileInterface.cpp" line="2464"/>
         <source>Patch selected...</source>
         <translation>Patcher la sélection...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2030"/>
-        <location filename="../ProfileInterface.cpp" line="2049"/>
-        <location filename="../ProfileInterface.cpp" line="2133"/>
-        <location filename="../ProfileInterface.cpp" line="2152"/>
-        <location filename="../ProfileInterface.cpp" line="2264"/>
-        <location filename="../ProfileInterface.cpp" line="2283"/>
-        <location filename="../ProfileInterface.cpp" line="2370"/>
-        <location filename="../ProfileInterface.cpp" line="2389"/>
+        <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"/>
         <source>Patch file %1 of %2 files</source>
         <translation>Patch du fichier %1 sur %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <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"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1579,76 +1577,76 @@ Appuyer sur 1 pour le mode par défaut</translation>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
         <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="1002"/>
+        <location filename="../ProfileInterface.cpp" line="1006"/>
         <source>Prepare Content for Import...</source>
         <translation>Préparation du contenu pour l&apos;import...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
+        <location filename="../ProfileInterface.cpp" line="1128"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <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="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>Qualifier</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2199"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players...</source>
         <translation>Modifier les joueurs...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>Modifier les joueurs</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2298"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew...</source>
         <translation>Modifier le Crew...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>Snapmatic Crew ID invalide</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>Changer le Crew</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title...</source>
         <translation>Changer le titre...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>Titre Snapmatic invalide</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>Changer le titre</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
+        <location filename="../ProfileInterface.cpp" line="1449"/>
         <source>Export failed with...
 
 %1</source>
@@ -1657,31 +1655,31 @@ Appuyer sur 1 pour le mode par défaut</translation>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <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="1473"/>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>Remove selected</source>
         <translation>Supprimer la sélection</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>Supprimer la sélection ?</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="473"/>
+        <location filename="../UserInterface.cpp" line="466"/>
         <source>All profile files (*.g5e SGTA* PGTA*)</source>
         <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="513"/>
-        <location filename="../UserInterface.cpp" line="474"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
@@ -1775,7 +1773,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Supprimer</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1723"/>
+        <location filename="../ProfileInterface.cpp" line="1758"/>
+        <location filename="../ProfileInterface.cpp" line="1788"/>
         <source>&amp;Export</source>
         <translation>&amp;Exporter</translation>
     </message>
@@ -1866,32 +1866,38 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Impossible de supprimer %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1694"/>
+        <location filename="../ProfileInterface.cpp" line="1757"/>
         <source>&amp;View</source>
         <translation>&amp;Voir</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1696"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Remove</source>
         <translation>&amp;Supprimer</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1792"/>
         <source>&amp;Select</source>
         <translation>&amp;Sélectionner</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1699"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>&amp;Deselect</source>
         <translation>&amp;Déselectionner</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1702"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>Select &amp;All</source>
         <translation>Sélectionner to&amp;ut</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1771"/>
+        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation>&amp;Déselectionner tout</translation>
     </message>
@@ -1907,7 +1913,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Snapmatic Properties</source>
         <translation>Propriétés Snapmatic</translation>
     </message>
@@ -1947,7 +1953,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Meme</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>Titre Snapmatic</translation>
@@ -2060,24 +2066,24 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <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="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>Nouveau titre Snapmatic :</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>Crew Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>Nouveau crew Snapmatic :</translation>
@@ -2215,62 +2221,72 @@ Appuyer sur 1 pour le mode par défaut</translation>
         <translation>Impossible de supprimer %1</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <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="328"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <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="1643"/>
+        <location filename="../ProfileInterface.cpp" line="1677"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Edi&amp;t</source>
         <translation>Édi&amp;ter</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1646"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>Show &amp;In-game</source>
         <translation>&amp;Visible en jeu</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1650"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>Hide &amp;In-game</source>
         <translation>&amp;Invisible en jeu</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1657"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;Export</source>
         <translation>&amp;Exporter</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1660"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;View</source>
         <translation>&amp;Voir</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1663"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
         <source>&amp;Remove</source>
         <translation>S&amp;upprimer</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1665"/>
+        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1727"/>
         <source>&amp;Select</source>
         <translation>&amp;Sélectionner</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1666"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>&amp;Deselect</source>
         <translation>&amp;Déselectionner</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1669"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>Select &amp;All</source>
         <translation>Sélectionner &amp;tout</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1673"/>
+        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation>&amp;Déselectionner tout</translation>
     </message>
@@ -2328,7 +2344,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="153"/>
-        <location filename="../UserInterface.cpp" line="679"/>
+        <location filename="../UserInterface.cpp" line="673"/>
         <source>&amp;Close</source>
         <translation>Fer&amp;mer</translation>
     </message>
@@ -2404,15 +2420,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="319"/>
-        <location filename="../UserInterface.cpp" line="257"/>
+        <location filename="../UserInterface.cpp" line="250"/>
         <source>Select &amp;GTA V Folder...</source>
         <translation>Modifier l&apos;emplacement de &amp;GTA V...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="738"/>
-        <location filename="../UserInterface.cpp" line="197"/>
-        <location filename="../UserInterface.cpp" line="735"/>
+        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../UserInterface.cpp" line="194"/>
+        <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
         <translation>Modifier l&apos;emplacement de GTA V...</translation>
     </message>
@@ -2423,6 +2439,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"/>
         <source>Change &amp;Players...</source>
         <translation>Modifier les &amp;joueurs...</translation>
     </message>
@@ -2433,16 +2451,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"/>
         <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"/>
         <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"/>
         <source>&amp;Qualify as Avatar</source>
         <translation>&amp;Qualifier comme Avatar</translation>
     </message>
@@ -2465,51 +2489,51 @@ Appuyer sur 1 pour le mode par défaut</translation>
     <message>
         <location filename="../UserInterface.ui" line="236"/>
         <location filename="../UserInterface.cpp" line="66"/>
-        <location filename="../UserInterface.cpp" line="768"/>
+        <location filename="../UserInterface.cpp" line="762"/>
         <source>&amp;About %1</source>
         <translation>&amp;À propos de %1</translation>
     </message>
     <message>
         <location filename="../UserInterface.cpp" line="70"/>
-        <location filename="../UserInterface.cpp" line="323"/>
-        <location filename="../UserInterface.cpp" line="782"/>
+        <location filename="../UserInterface.cpp" line="316"/>
+        <location filename="../UserInterface.cpp" line="776"/>
         <source>Select Profile</source>
         <translation>Sélectionner un profil</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="470"/>
+        <location filename="../UserInterface.cpp" line="463"/>
         <source>Open File...</source>
         <translation>Ouvrir...</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="517"/>
-        <location filename="../UserInterface.cpp" line="533"/>
-        <location filename="../UserInterface.cpp" line="560"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../UserInterface.cpp" line="510"/>
+        <location filename="../UserInterface.cpp" line="526"/>
+        <location filename="../UserInterface.cpp" line="553"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>Open File</source>
         <translation>Ouvrir</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="560"/>
+        <location filename="../UserInterface.cpp" line="553"/>
         <source>Can&apos;t open %1 because of not valid file format</source>
         <translation>Impossible d&apos;ouvrir %1, format invalide</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="648"/>
+        <location filename="../UserInterface.cpp" line="642"/>
         <source>%1 - Messages</source>
         <translation>%1 - Nouvelles</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../ProfileInterface.cpp" line="1607"/>
+        <location filename="../ProfileInterface.cpp" line="1621"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Show In-game</source>
         <translation>Visible en jeu</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../ProfileInterface.cpp" line="1641"/>
+        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Hide In-game</source>
         <translation>Invisible en jeu</translation>
     </message>
diff --git a/res/gta5sync_ko.qm b/res/gta5sync_ko.qm
index 9069772e66a0c57babd896cd760c4c803e57ce1d..3e2a17095c58e0b2283c8d95f64aebc7514ca61b 100644
GIT binary patch
delta 2897
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

delta 3014
zcmY*bX;>6j7Cl{5b$3<u5)eUD8eDMLWRt}$2s)sG;KC*diXa*ga0!S&q(v}*AyMoh
zCXu+J7$p)F1VwRB86YYk?qf88h>;L9=-?Jd=la#J`O)9`s_WIe_nvd^eeZP@bMP3m
zO=mm{z<PjxA)(8^OPqB~YGBD+E8kYYRRfGl29{g^Tuw-sW(2l)FTkb~Rso}Jz#hy5
zvSPv3vp{k)*mlB#ijpeb<dpf~W_bX%CE(hdfy5#S^%hX>T>#h&z<g&uF#a}d-8KP!
z(Gup)GALwLkq2P^ey>fpVc%f`<b}ij4;R8BIDFLv41WTLv$KJzc5ryVdt9M}nS0=Q
z=P01wgAXVA0imJrOSlefmSg5-!srJEz0Axl+Z{m(S(L;@gdaT**iS%I)m7l{sfhX~
zg>y1S%EKIBTrKnw^8v?^hGv;gpPY~UNlw6`G<;UoNfn2p_H{b&p$b1%PoQY$(6*nl
zTJ49P>lBUOk4O7Bdj16islkBnw=&@;M_}nU60Scg;iknh%kM@5V~@)|p70;y>bYz~
z*<!$}TUIi4GBEwBtYqD<Ff3y%^eaD?Re%Akcv;Py<HXxGS^Eo$nK46lEg%($_+8fb
zjgCqvllAvM0F1}V{!||W!sjxoj4{B_0cOa(2I4)68C7qf7_Q7b$6jLcOD5$04ZtLq
ziEbVwRg0M=V_GTBE#{*Iq|d5yCS`LdreO1BX6>%;fWVDRu`?|+b7J<yx&jloOBnkz
zb0}jHFmkGdzFiU~xf;BTob~UR!=9zU%ySYhIVj;Kd!}+}4-kKqsj2Y*mgg`h&r`Yy
z#Y_WhM^vks#xq3Wr{PTNms((22GhQV))ic3I{LQ*Vm$M6Yao>+GTjGFft*`R@1rmv
z&5`-Dn6k5tU<U8D5tTu!nO8H2C*u(2FP9;}$Js{w!5hGaQX{jLx4@)OBa1Y8@6>PP
zkv<6M{fxpY3#lXC7$vS7MFE`+R;(H0vCQDbS{dIoy0DbU3$Qk7+DeOqstqexE7#ks
zGW0$$=P7Hu#srAj#CrTiGWtDcy?kj^Vl_K&;%;C?Jezydn`-Ja)UrB#ZYI0mZ$B_u
z&mR6w56o&~D;*C2%Z5mp)xuUDi2=BAY*k(axr^FPj3a8Eu?@T3fs|~vece9*k1`3D
zwMdwq$hOzz(fcv%{e48$a6k4@Og&)tkbT*CiSTRo&1nzlQ4r6u?>7h^$(bJ70VtFb
zdMi2ieP09VPr0bJ^OW};Zsi=ZkYyy7vL_yxYtOAIA<7mta5+3r>*jEJr!c_cQ*K*|
zGq5p>D|4i}*ZOm1`IKlnxV^7Kf%&_*^4v&j&H%2G*+LaNd2^Lsq`~xU+z*G((sL@;
zy!{qn+Rt5%q$#A&<*qTtz>JG>&WoOnY~@4$bfQVMLvAta70olP+_FhSQ$mzG<xxVq
zH2H!UYUdDRd0f|GGRJOtJhKW|Y%9-J{t9SP<lh`4D_dL1YY!O$<f{3x@+<yhi4seB
zm+T9g3-$8XXKs+ke^Lm8X@GaSgi)0eu8=8A*$SYrNipJnFqx!EVf*F+;LxWS|2?7i
z6hnnv7Z4GpSlLCdXFgY~y44N%<R~^A-4A@SLa}XkI+?RaQQB4t<j+);H&WjDa>cR0
z$F$u9#fc-&Xx)DmHJwCUl&L|hFxTHwJU%i3*s@yj_9U5a^>!ua-$a%#R$4YWksJo)
z)Ee5w@~+bNbvgOORXP1B&F$Qi$~lMHfy^7ql)V%^d_cLXF@ai5qs;CiIcCHuH>7SM
zo0=*&j=DpgQLn5>p#LNHE9;z#Xm&1FHk|Jy71o+7&(~2v?u@eOA{j7vrSeHVr9V1P
z`OKPp5%5a+E{5n1dcvESQX<1P@aE?lN%tDw{GJcB+Aq9rT@RJ5<;T4o17zRh?bcHw
z{7MOJTzQAoNq}=P@8&{wm}bv=7Wq-aCwR|}Q!tEGn&=z&ppsUacH8)1#+#J3;bRo!
z2*(IMZU-^-Q5K&(Yk+F*=aZKcvcvhcFWhMI4&w{XQ4J#=@mu`wQ?Fd+i=8|ug`IqP
zV=xI>z*jnlQ0mTns}DIcKA6As;2n^(i|>dIpdPB^Z#sFA67HS+lc=X8m0pnbQtr!q
z1X<sE%oo%{M^geeg2_1wVD_zG9Yld0YXzH)v#FL>f{XiOngJogl;vfFLnO=zl(2{-
z=B@M%!u;RJ7(*rs5l=Kg(P3fXZ^ZBvOJV8B9Kh2~SOzM?K`(qYn|4t>lhFE_gwuyf
zn6yGTS+JQ}-dv~~Ig}*S38xyblfUDIGsS7Nf2PoIlLO`@3C(xA$nTGZmK{wb@!!gX
z)&!A0{8YHqM~Q4XC0tIR59W*%u1uE!u|tLSb=5Q?UP`#+u7pdwC0zePXs`H!q^}ch
zT7}VR@?5xmnCKd#5gr^T-4<2~J>ti}x*vqz&!|y82o!oR5$_BAL>U!01d(x~k&h{P
zY@w)q&vSH{VVa<GbIlT?t`ePbXT&@W>ET!)<|kjLeHMzv9-$=16|vaAhu)8rFw@Pj
zRWQ@9*(sJe<WoynOBlC6!puam{5aK}!HC}}h+p$}V&%E_<-Qe9<>}~fEEG@YEuwou
zlGu<!ylinNr0t7diWj|m$?550OVC9cBoD>*G}5IgMC|-Ffm&yZc&(JKC2P~fZu59@
ztY~3UxIo4C4FU`1sf>?arSa}zm@Asw{iSlSeMW^pRn6Q=nT!ipEo^QiWhbg)$519*
zuj-T9#dJpOHEb2ll9ooR%494}x>c$&e+ndosLHj}Dlzt|(@%)c&84afjtqVFx$1JD
zIUq|`_3a`9dEQgKSwq_unyD2c1vhU|4?hx2LcdXuxbH;A=Lq$PUYZGOtJU^*O9@{a
zv?_Cbo!a{nv1=}<ebkgx@Q><{24Z>c19hk=nb~)|gfXq^_1CNEu+3AK9HL?teW0!i
zrzXg#P}iP~B->t+Fzl?lZrA}j7^bQ(L=L6>#;g06d()lcwED@v2-S-;tk^_$e5e`G
z(oNav>NW0KYG0o=jsG-~-Q>AuRgNEBNkcT%v5CO!I}*n8nzO0&;fI&C!;^@Pur#gr
zQyH+bO&evKN(ah3ZQPnc^7{d8YUgpf%*eH?zo0^tF50h}iQP#(+I{cBsC!>&k6a-d
z9O|`|S>Bk48P?hhbqREW3}`#rYKX^TZTIM7Kx&5e539FSNvC!|M@%^Xt{vP-JSO;3
zR-a8i5v~5+&dBUWwBe1XEgzDYx*|CtJ~`3Q<z{ih-|IHxNv~jirV!R0X{Ww#o?1sw
ijn*Calyn(~oPOpZ3G_vpbw*;^N7n!Uy>9YPG5-S?xPS2g

diff --git a/res/gta5sync_ko.ts b/res/gta5sync_ko.ts
index 129afd4..1e20a2e 100644
--- a/res/gta5sync_ko.ts
+++ b/res/gta5sync_ko.ts
@@ -203,20 +203,20 @@ Pictures and Savegames</source>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
         <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
-        <location filename="../SnapmaticWidget.cpp" line="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <source>Snapmatic Image Editor</source>
         <translation>스냅매틱 이미지 편집기</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
         <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="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <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="721"/>
+        <location filename="../ProfileInterface.cpp" line="725"/>
         <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="740"/>
+        <location filename="../ProfileInterface.cpp" line="744"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translatorcomment>소셜클럽의 사용자 지정 그림 설명입니다. 특수 문자를 사용하지 마십시오!</translatorcomment>
@@ -630,19 +630,17 @@ Y: %2</translation>
         <translation>컨텐츠 열기/선택 모드</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="39"/>
         <source>Open with Singleclick</source>
-        <translation>한 번 클릭으로 열기</translation>
+        <translation type="vanished">한 번 클릭으로 열기</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="49"/>
+        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Open with Doubleclick</source>
         <translation>두 번 클릭으로 열기</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Select with Singleclick</source>
-        <translation>한 번 클릭으로 선택</translation>
+        <translation type="vanished">한 번 클릭으로 선택</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="66"/>
@@ -758,26 +756,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <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"/>
         <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="633"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="649"/>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="662"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
-        <location filename="../OptionsDialog.cpp" line="670"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <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"/>
         <source>Language: %1</source>
         <translation>언어: %1</translation>
     </message>
@@ -798,7 +796,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="591"/>
+        <location filename="../OptionsDialog.cpp" line="598"/>
         <source>Participate in %1 User Statistics</source>
         <translation>사용자 통계 참가 %1</translation>
     </message>
@@ -834,8 +832,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="607"/>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="614"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Participation ID: %1</source>
         <translation>참여 아이디: %1</translation>
     </message>
@@ -857,8 +855,8 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="611"/>
         <location filename="../OptionsDialog.ui" line="633"/>
-        <location filename="../OptionsDialog.cpp" line="224"/>
-        <location filename="../OptionsDialog.cpp" line="273"/>
+        <location filename="../OptionsDialog.cpp" line="226"/>
+        <location filename="../OptionsDialog.cpp" line="275"/>
         <source>Current: %1</source>
         <translation>현재: %1</translation>
     </message>
@@ -926,100 +924,100 @@ Y: %2</translation>
         <translation>취소(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>%1 (Language priority)</source>
         <comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
         <translation>%1 (우선 순위)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>System</source>
         <comment>System in context of System default</comment>
         <translation>시스템</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
         <source>%1 (Game language)</source>
         <comment>Next closest language compared to the Game settings</comment>
         <translatorcomment>게임 설정과 가장 가까운 언어</translatorcomment>
         <translation>%1 (게임 언어)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>Auto</source>
         <comment>Automatic language choice.</comment>
         <translatorcomment>언어 자동 선택</translatorcomment>
         <translation>자동</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>%1 (Closest to Interface)</source>
         <comment>Next closest language compared to the Interface</comment>
         <translatorcomment>인터페이스와 가장 가까운 언어</translatorcomment>
         <translation>%1 (인터페이스와 가까운 언어)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>%1</source>
         <comment>%1</comment>
         <translatorcomment>%1</translatorcomment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>다시 시작한 후 새 사용자 지정 폴더가 초기화됩니다. %1.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="489"/>
+        <location filename="../OptionsDialog.cpp" line="496"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translatorcomment>프로필 없음 (기본값)</translatorcomment>
         <translation>프로필 없음</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="497"/>
-        <location filename="../OptionsDialog.cpp" line="501"/>
-        <location filename="../OptionsDialog.cpp" line="503"/>
+        <location filename="../OptionsDialog.cpp" line="504"/>
+        <location filename="../OptionsDialog.cpp" line="508"/>
+        <location filename="../OptionsDialog.cpp" line="510"/>
         <source>Profile: %1</source>
         <translation>프로필: %1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="592"/>
+        <location filename="../OptionsDialog.cpp" line="599"/>
         <source>View %1 User Statistics Online</source>
         <translation>온라인 %1 사용자 통계 보기</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Not registered</source>
         <translation>등록되지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="636"/>
+        <location filename="../OptionsDialog.cpp" line="652"/>
+        <location filename="../OptionsDialog.cpp" line="665"/>
+        <location filename="../OptionsDialog.cpp" line="666"/>
         <source>Yes</source>
         <translation>예</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="637"/>
+        <location filename="../OptionsDialog.cpp" line="651"/>
         <source>No</source>
         <translation>아니요</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="673"/>
         <source>OS defined</source>
         <translation>OS 정의</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <location filename="../OptionsDialog.cpp" line="660"/>
+        <location filename="../OptionsDialog.cpp" line="681"/>
         <source>Steam defined</source>
         <translation>스팀 정의</translation>
     </message>
@@ -1064,37 +1062,37 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1658"/>
+        <location filename="../ProfileInterface.cpp" line="1690"/>
         <source>Export as &amp;Picture...</source>
         <translation>내 PC에 이미지로 내보내기(&amp;P)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1659"/>
+        <location filename="../ProfileInterface.cpp" line="1691"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>내 PC에 스냅매틱으로 내보내기(&amp;S)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>&amp;Edit Properties...</source>
         <translation>속성 편집(&amp;E)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1653"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>&amp;Overwrite Image...</source>
         <translation>이미지 덮어쓰기(&amp;O)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>지도 뷰어 열기(&amp;M)</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1656"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>JSON 편집기 열기(&amp;J)</translation>
     </message>
@@ -1349,23 +1347,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="496"/>
-        <location filename="../ProfileInterface.cpp" line="497"/>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="562"/>
-        <location filename="../ProfileInterface.cpp" line="596"/>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
-        <location filename="../ProfileInterface.cpp" line="796"/>
-        <location filename="../ProfileInterface.cpp" line="943"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../ProfileInterface.cpp" line="986"/>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <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"/>
         <source>Import...</source>
         <translation>가져오기</translation>
     </message>
@@ -1382,29 +1380,29 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="520"/>
         <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="517"/>
-        <location filename="../UserInterface.cpp" line="477"/>
+        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>모든 파일 (**)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
+        <location filename="../ProfileInterface.cpp" line="790"/>
         <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="796"/>
+        <location filename="../ProfileInterface.cpp" line="800"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation>파일을 구문 분석할 수 없으므로 %1을 가져올 수 없습니다.</translation>
     </message>
@@ -1419,53 +1417,53 @@ Press 1 for Default View</source>
         <translation>불러오는 중...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <source>Snapmatic Loader</source>
         <translation>스냅매틱 불러오기</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <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="512"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <source>Importable files (%1)</source>
         <translation>가져올 수 있는 파일 (%1)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="513"/>
-        <location filename="../UserInterface.cpp" line="474"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V로 내보내기 (*.g5e)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="514"/>
-        <location filename="../UserInterface.cpp" line="475"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>세이브 파일 (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="515"/>
-        <location filename="../UserInterface.cpp" line="476"/>
+        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>스냅매틱 이미지 (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../ProfileInterface.cpp" line="545"/>
+        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>올바른 파일이 선택되지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="563"/>
-        <location filename="../ProfileInterface.cpp" line="580"/>
+        <location filename="../ProfileInterface.cpp" line="567"/>
+        <location filename="../ProfileInterface.cpp" line="584"/>
         <source>Import file %1 of %2 files</source>
         <translation>%2 파일 중 %1 파일을 가져옵니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="596"/>
+        <location filename="../ProfileInterface.cpp" line="600"/>
         <source>Import failed with...
 
 %1</source>
@@ -1474,91 +1472,91 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../UserInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>스냅매틱 이미지를 읽지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../UserInterface.cpp" line="533"/>
+        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>세이브 파일을 읽지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="943"/>
+        <location filename="../ProfileInterface.cpp" line="947"/>
         <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="1002"/>
+        <location filename="../ProfileInterface.cpp" line="1006"/>
         <source>Prepare Content for Import...</source>
         <translation>가져올 컨텐츠를 준비합니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
+        <location filename="../ProfileInterface.cpp" line="1120"/>
         <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="1124"/>
+        <location filename="../ProfileInterface.cpp" line="1128"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation>uid %1이(가) 있는 스냅매틱 이미지가 이미 있습니다. 가져오기를 새 uid 및 타임스탬프를 할당하시겠습니까?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
+        <location filename="../ProfileInterface.cpp" line="1224"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>스냅매틱 이미지를 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
+        <location filename="../ProfileInterface.cpp" line="1261"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>게임 저장 파일을 가져오지 못했습니다. 파일을 프로필에 복사할 수 없습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <location filename="../ProfileInterface.cpp" line="1267"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>게임 저장 파일을 가져오지 못했습니다. 게임 저장 슬롯이 남아 있지 않습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1327"/>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
-        <location filename="../ProfileInterface.cpp" line="1410"/>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
+        <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"/>
         <source>Export selected...</source>
         <translation>내보내기를 선택했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1350"/>
-        <location filename="../ProfileInterface.cpp" line="1368"/>
+        <location filename="../ProfileInterface.cpp" line="1354"/>
+        <location filename="../ProfileInterface.cpp" line="1372"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>JPG 이미지 및 GTA 스냅매틱</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1351"/>
-        <location filename="../ProfileInterface.cpp" line="1373"/>
+        <location filename="../ProfileInterface.cpp" line="1355"/>
+        <location filename="../ProfileInterface.cpp" line="1377"/>
         <source>JPG pictures only</source>
         <translation>JPG 이미지만</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1352"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1356"/>
+        <location filename="../ProfileInterface.cpp" line="1381"/>
         <source>GTA Snapmatic only</source>
         <translation>GTA 스냅매틱만</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <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="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1415"/>
         <source>Initialising export...</source>
         <translation>내보내기를 초기화하는 중...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
+        <location filename="../ProfileInterface.cpp" line="1449"/>
         <source>Export failed with...
 
 %1</source>
@@ -1567,45 +1565,45 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>스냅매틱 이미지 또는 세이브 파일이 선택되지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>Remove selected</source>
         <translation>선택한 항목 삭제</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>선택한 스냅매틱 이미지 및 세이브 파일을 삭제하시겠습니까?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>선택한 모든 스냅매틱 이미지 및 세이브 파일을 삭제하지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
         <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
+        <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"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>스냅매틱 이미지가 선택되지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <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"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1616,91 +1614,91 @@ Press 1 for Default View</source>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2113"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify as Avatar</source>
         <translation>아바타 자격 부여</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2029"/>
-        <location filename="../ProfileInterface.cpp" line="2132"/>
-        <location filename="../ProfileInterface.cpp" line="2263"/>
-        <location filename="../ProfileInterface.cpp" line="2369"/>
+        <location filename="../ProfileInterface.cpp" line="2124"/>
+        <location filename="../ProfileInterface.cpp" line="2227"/>
+        <location filename="../ProfileInterface.cpp" line="2358"/>
+        <location filename="../ProfileInterface.cpp" line="2464"/>
         <source>Patch selected...</source>
         <translation>패치가 선택됨...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2030"/>
-        <location filename="../ProfileInterface.cpp" line="2049"/>
-        <location filename="../ProfileInterface.cpp" line="2133"/>
-        <location filename="../ProfileInterface.cpp" line="2152"/>
-        <location filename="../ProfileInterface.cpp" line="2264"/>
-        <location filename="../ProfileInterface.cpp" line="2283"/>
-        <location filename="../ProfileInterface.cpp" line="2370"/>
-        <location filename="../ProfileInterface.cpp" line="2389"/>
+        <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"/>
         <source>Patch file %1 of %2 files</source>
         <translation>%2 파일의 %1 패치 파일입니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
         <translation>자격 부여</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2199"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players...</source>
         <translation>플레이어 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
         <translation>플레이어 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2298"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew...</source>
         <translation>조직 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>올바른 스냅매틱 조직 아이디를 입력하지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
         <translation>조직 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title...</source>
         <translation>제목 변경</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>올바른 스냅매틱 제목을 입력하지 않았습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translatorcomment>%1이(가) 실패한 경우...</translatorcomment>
         <translation>제목 변경</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="473"/>
+        <location filename="../UserInterface.cpp" line="466"/>
         <source>All profile files (*.g5e SGTA* PGTA*)</source>
         <translation>모든 프로필 파일 (*.g5e SGTA* PGTA*)</translation>
     </message>
@@ -1794,37 +1792,45 @@ Press 1 for Default View</source>
         <translation>삭제</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1694"/>
+        <location filename="../ProfileInterface.cpp" line="1757"/>
         <source>&amp;View</source>
         <translation>보기(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1723"/>
+        <location filename="../ProfileInterface.cpp" line="1758"/>
+        <location filename="../ProfileInterface.cpp" line="1788"/>
         <source>&amp;Export</source>
         <translation>내보내기(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1696"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Remove</source>
         <translation>삭제(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1792"/>
         <source>&amp;Select</source>
         <translation>선택(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1699"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>&amp;Deselect</source>
         <translation>선택 해제(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1702"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>Select &amp;All</source>
         <translation>모두 선택(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1771"/>
+        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation>모두 선택 해제(&amp;D)</translation>
     </message>
@@ -1926,7 +1932,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Snapmatic Properties</source>
         <translation>스냅매틱 속성</translation>
     </message>
@@ -2019,7 +2025,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>I/O 오류로 인해 스냅매틱 속성을 패치하지 못했습니다.</translation>
     </message>
@@ -2029,25 +2035,25 @@ Press 1 for Default View</source>
         <translation>JSON 오류로 인해 스냅매틱 속성을 패치하지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>조직 스냅매틱</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>새로운 조직 스냅매틱:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>스냅매틱 제목</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>새로운 스냅매틱 제목:</translation>
@@ -2227,52 +2233,62 @@ Press 1 for Default View</source>
         <translation>삭제</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1643"/>
+        <location filename="../ProfileInterface.cpp" line="1677"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Edi&amp;t</source>
         <translation>편집(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1646"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>Show &amp;In-game</source>
         <translation>인게임에서 보이기(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1650"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>Hide &amp;In-game</source>
         <translation>인게임에서 숨기기(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1657"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;Export</source>
         <translation>내보내기(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1660"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;View</source>
         <translation>보기(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1663"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
         <source>&amp;Remove</source>
         <translation>삭제(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1665"/>
+        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1727"/>
         <source>&amp;Select</source>
         <translation>선택(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1666"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>&amp;Deselect</source>
         <translation>선택 해제(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1669"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>Select &amp;All</source>
         <translation>모두 선택(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1673"/>
+        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation>모두 선택 해제(&amp;D)</translation>
     </message>
@@ -2287,12 +2303,12 @@ Press 1 for Default View</source>
         <translation>스냅매틱 이미지에서 %1을 삭제하지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>인게임 스냅매틱 이미지에서 %1 을 숨기지 못했습니다.</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>인게임 스냅매틱 이미지에서 %1 을 표시하지 못했습니다.</translation>
     </message>
@@ -2357,7 +2373,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="153"/>
-        <location filename="../UserInterface.cpp" line="679"/>
+        <location filename="../UserInterface.cpp" line="673"/>
         <source>&amp;Close</source>
         <translation>닫기(&amp;C)</translation>
     </message>
@@ -2394,7 +2410,7 @@ Press 1 for Default View</source>
     <message>
         <location filename="../UserInterface.ui" line="236"/>
         <location filename="../UserInterface.cpp" line="66"/>
-        <location filename="../UserInterface.cpp" line="768"/>
+        <location filename="../UserInterface.cpp" line="762"/>
         <source>&amp;About %1</source>
         <translation>%1 정보(&amp;A)</translation>
     </message>
@@ -2450,15 +2466,15 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="319"/>
-        <location filename="../UserInterface.cpp" line="257"/>
+        <location filename="../UserInterface.cpp" line="250"/>
         <source>Select &amp;GTA V Folder...</source>
         <translation>GTA V 폴더 선택(&amp;G)</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="738"/>
-        <location filename="../UserInterface.cpp" line="197"/>
-        <location filename="../UserInterface.cpp" line="735"/>
+        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../UserInterface.cpp" line="194"/>
+        <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
         <translation>GTA V 폴더 선택</translation>
     </message>
@@ -2474,65 +2490,73 @@ 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"/>
         <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"/>
         <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"/>
         <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"/>
         <source>Change &amp;Players...</source>
         <translation>플레이어 변경(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../ProfileInterface.cpp" line="1607"/>
+        <location filename="../ProfileInterface.cpp" line="1621"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Show In-game</source>
         <translation>인게임 보이기</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../ProfileInterface.cpp" line="1641"/>
+        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Hide In-game</source>
         <translation>인게임 숨기기</translation>
     </message>
     <message>
         <location filename="../UserInterface.cpp" line="70"/>
-        <location filename="../UserInterface.cpp" line="323"/>
-        <location filename="../UserInterface.cpp" line="782"/>
+        <location filename="../UserInterface.cpp" line="316"/>
+        <location filename="../UserInterface.cpp" line="776"/>
         <source>Select Profile</source>
         <translation>프로필 선택</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="470"/>
+        <location filename="../UserInterface.cpp" line="463"/>
         <source>Open File...</source>
         <translation>파일 열기...</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="517"/>
-        <location filename="../UserInterface.cpp" line="533"/>
-        <location filename="../UserInterface.cpp" line="560"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../UserInterface.cpp" line="510"/>
+        <location filename="../UserInterface.cpp" line="526"/>
+        <location filename="../UserInterface.cpp" line="553"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>Open File</source>
         <translation>파일 열기</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="560"/>
+        <location filename="../UserInterface.cpp" line="553"/>
         <source>Can&apos;t open %1 because of not valid file format</source>
         <translation>올바른 파일 형식이 아니므로 %1을 열 수 없습니다.</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="648"/>
+        <location filename="../UserInterface.cpp" line="642"/>
         <source>%1 - Messages</source>
         <translation>%1 - 뉴스</translation>
     </message>
diff --git a/res/gta5sync_ru.qm b/res/gta5sync_ru.qm
index 3df679b20bcf84489a17764abb80d23583bfc9c9..7b3fe8e727a40db056304ca257803ea7b305714c 100644
GIT binary patch
delta 2905
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
Ba?bz&

delta 3051
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
Am;e9(

diff --git a/res/gta5sync_ru.ts b/res/gta5sync_ru.ts
index 386ada7..e34070f 100644
--- a/res/gta5sync_ru.ts
+++ b/res/gta5sync_ru.ts
@@ -182,8 +182,8 @@ Pictures and Savegames</source>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
         <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
-        <location filename="../SnapmaticWidget.cpp" line="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <source>Snapmatic Image Editor</source>
         <translation>Редактор картинок Snapmatic</translation>
     </message>
@@ -214,13 +214,13 @@ Pictures and Savegames</source>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
         <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="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <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="721"/>
+        <location filename="../ProfileInterface.cpp" line="725"/>
         <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="740"/>
+        <location filename="../ProfileInterface.cpp" line="744"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>Своя Картинка</translation>
@@ -620,19 +620,17 @@ Y: %2</translation>
         <translation>Открывать/выбирать содержимое</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="39"/>
         <source>Open with Singleclick</source>
-        <translation>Открывать одним щелчком</translation>
+        <translation type="vanished">Открывать одним щелчком</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="49"/>
+        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Open with Doubleclick</source>
         <translation>Открывать двойным щелчком</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Select with Singleclick</source>
-        <translation>Выбирать одним щелчком</translation>
+        <translation type="vanished">Выбирать одним щелчком</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="66"/>
@@ -758,26 +756,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <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"/>
         <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="633"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="649"/>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="662"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
-        <location filename="../OptionsDialog.cpp" line="670"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <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"/>
         <source>Language: %1</source>
         <translation>Язык: %1</translation>
     </message>
@@ -798,7 +796,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="591"/>
+        <location filename="../OptionsDialog.cpp" line="598"/>
         <source>Participate in %1 User Statistics</source>
         <translation>Участвовать в пользовательской статистике %1</translation>
     </message>
@@ -831,8 +829,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="607"/>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="614"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Participation ID: %1</source>
         <translation>Номер участника: %1</translation>
     </message>
@@ -885,8 +883,8 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="611"/>
         <location filename="../OptionsDialog.ui" line="633"/>
-        <location filename="../OptionsDialog.cpp" line="224"/>
-        <location filename="../OptionsDialog.cpp" line="273"/>
+        <location filename="../OptionsDialog.cpp" line="226"/>
+        <location filename="../OptionsDialog.cpp" line="275"/>
         <source>Current: %1</source>
         <translation>Сейчас: %1</translation>
     </message>
@@ -928,95 +926,95 @@ Y: %2</translation>
         <translation>От&amp;мена</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>System</source>
         <comment>System in context of System default</comment>
         <translation>Система</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
         <source>%1 (Game language)</source>
         <comment>Next closest language compared to the Game settings</comment>
         <translation>%1 (Язык игры)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>%1 (Closest to Interface)</source>
         <comment>Next closest language compared to the Interface</comment>
         <translation>%1 (Совпадает с интерфейсом)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>Auto</source>
         <comment>Automatic language choice.</comment>
         <translation>Автоматически</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>%1 (Language priority)</source>
         <comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
         <translation>%1 (Приоритетный язык)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>Другая папка будет загружена после перезапуска %1.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="592"/>
+        <location filename="../OptionsDialog.cpp" line="599"/>
         <source>View %1 User Statistics Online</source>
         <translation>Посмотреть пользовательскую статистику %1 онлайн</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Not registered</source>
         <translation>Не зарегистрирован</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="636"/>
+        <location filename="../OptionsDialog.cpp" line="652"/>
+        <location filename="../OptionsDialog.cpp" line="665"/>
+        <location filename="../OptionsDialog.cpp" line="666"/>
         <source>Yes</source>
         <translation>Да</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="637"/>
+        <location filename="../OptionsDialog.cpp" line="651"/>
         <source>No</source>
         <translation>Нет</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="673"/>
         <source>OS defined</source>
         <translation>Настройка от ОС</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <location filename="../OptionsDialog.cpp" line="660"/>
+        <location filename="../OptionsDialog.cpp" line="681"/>
         <source>Steam defined</source>
         <translation>Настройка от Steam</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="489"/>
+        <location filename="../OptionsDialog.cpp" line="496"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>Нет профиля</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="497"/>
-        <location filename="../OptionsDialog.cpp" line="501"/>
-        <location filename="../OptionsDialog.cpp" line="503"/>
+        <location filename="../OptionsDialog.cpp" line="504"/>
+        <location filename="../OptionsDialog.cpp" line="508"/>
+        <location filename="../OptionsDialog.cpp" line="510"/>
         <source>Profile: %1</source>
         <translation>Профиль: %1</translation>
     </message>
@@ -1067,31 +1065,31 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1658"/>
+        <location filename="../ProfileInterface.cpp" line="1690"/>
         <source>Export as &amp;Picture...</source>
         <translation>Экспортировать как &amp;картинку...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1659"/>
+        <location filename="../ProfileInterface.cpp" line="1691"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>Экспортировать как &amp;Snapmatic...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1653"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>&amp;Overwrite Image...</source>
         <translation>&amp;Перезаписать картинку...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>&amp;Edit Properties...</source>
         <translation>&amp;Изменить свойства...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>Открыть &amp;карту...</translation>
     </message>
@@ -1240,7 +1238,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1656"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>Открыть &amp;редактор JSON...</translation>
     </message>
@@ -1342,12 +1340,12 @@ Press 1 for Default View</source>
         <translation>Загрузка...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <source>Snapmatic Loader</source>
         <translation>Загрузчик Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <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>
@@ -1356,23 +1354,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="496"/>
-        <location filename="../ProfileInterface.cpp" line="497"/>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="562"/>
-        <location filename="../ProfileInterface.cpp" line="596"/>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
-        <location filename="../ProfileInterface.cpp" line="796"/>
-        <location filename="../ProfileInterface.cpp" line="943"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../ProfileInterface.cpp" line="986"/>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <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"/>
         <source>Import...</source>
         <translation>Импортировать...</translation>
     </message>
@@ -1387,33 +1385,33 @@ Press 1 for Default View</source>
         <translation>Импортировать</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="514"/>
-        <location filename="../UserInterface.cpp" line="475"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>Файлы сохранения (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="515"/>
-        <location filename="../UserInterface.cpp" line="476"/>
+        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Картинка Snapmatic (PGTA*)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="489"/>
         <location filename="../ImportDialog.cpp" line="816"/>
-        <location filename="../ProfileInterface.cpp" line="517"/>
-        <location filename="../UserInterface.cpp" line="477"/>
+        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>Все файлы (**)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="563"/>
-        <location filename="../ProfileInterface.cpp" line="580"/>
+        <location filename="../ProfileInterface.cpp" line="567"/>
+        <location filename="../ProfileInterface.cpp" line="584"/>
         <source>Import file %1 of %2 files</source>
         <translation>Импортируются файлы %1 из %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="596"/>
+        <location filename="../ProfileInterface.cpp" line="600"/>
         <source>Import failed with...
 
 %1</source>
@@ -1422,21 +1420,21 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../UserInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>Не удалось загрузить картинку Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../UserInterface.cpp" line="533"/>
+        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>Не удалось загрузить файл сохранения</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../ProfileInterface.cpp" line="545"/>
+        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>Выбранный файл неверен</translation>
     </message>
@@ -1446,145 +1444,145 @@ Press 1 for Default View</source>
         <translation>Включенные картинки: %1 из %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="512"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <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="516"/>
+        <location filename="../ProfileInterface.cpp" line="520"/>
         <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="786"/>
+        <location filename="../ProfileInterface.cpp" line="790"/>
         <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="796"/>
+        <location filename="../ProfileInterface.cpp" line="800"/>
         <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="943"/>
+        <location filename="../ProfileInterface.cpp" line="947"/>
         <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="1116"/>
+        <location filename="../ProfileInterface.cpp" line="1120"/>
         <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="1220"/>
+        <location filename="../ProfileInterface.cpp" line="1224"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
+        <location filename="../ProfileInterface.cpp" line="1261"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <location filename="../ProfileInterface.cpp" line="1267"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1350"/>
-        <location filename="../ProfileInterface.cpp" line="1368"/>
+        <location filename="../ProfileInterface.cpp" line="1354"/>
+        <location filename="../ProfileInterface.cpp" line="1372"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>Картинки JPG и GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1351"/>
-        <location filename="../ProfileInterface.cpp" line="1373"/>
+        <location filename="../ProfileInterface.cpp" line="1355"/>
+        <location filename="../ProfileInterface.cpp" line="1377"/>
         <source>JPG pictures only</source>
         <translation>Только картинки JPG</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1352"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1356"/>
+        <location filename="../ProfileInterface.cpp" line="1381"/>
         <source>GTA Snapmatic only</source>
         <translation>Только GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1415"/>
         <source>Initialising export...</source>
         <translation>Подготовка к экспорту...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>Не выделены ни один Snapmatic или сохранение</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>Remove selected</source>
         <translation>Снять выделение</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1002"/>
+        <location filename="../ProfileInterface.cpp" line="1006"/>
         <source>Prepare Content for Import...</source>
         <translation>Подготовка данных к импорту...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2113"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify as Avatar</source>
         <translation>Пометить как Аватар</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
         <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
+        <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"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>Не выделена ни одна картинка Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2029"/>
-        <location filename="../ProfileInterface.cpp" line="2132"/>
-        <location filename="../ProfileInterface.cpp" line="2263"/>
-        <location filename="../ProfileInterface.cpp" line="2369"/>
+        <location filename="../ProfileInterface.cpp" line="2124"/>
+        <location filename="../ProfileInterface.cpp" line="2227"/>
+        <location filename="../ProfileInterface.cpp" line="2358"/>
+        <location filename="../ProfileInterface.cpp" line="2464"/>
         <source>Patch selected...</source>
         <translation>Пропатчить выделенные...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2030"/>
-        <location filename="../ProfileInterface.cpp" line="2049"/>
-        <location filename="../ProfileInterface.cpp" line="2133"/>
-        <location filename="../ProfileInterface.cpp" line="2152"/>
-        <location filename="../ProfileInterface.cpp" line="2264"/>
-        <location filename="../ProfileInterface.cpp" line="2283"/>
-        <location filename="../ProfileInterface.cpp" line="2370"/>
-        <location filename="../ProfileInterface.cpp" line="2389"/>
+        <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"/>
         <source>Patch file %1 of %2 files</source>
         <translation>Изменяется файл %1 из %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <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"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1594,86 +1592,86 @@ Press 1 for Default View</source>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
+        <location filename="../ProfileInterface.cpp" line="1128"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translatorcomment>Можно использовать слово &quot;приписать&quot;</translatorcomment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>Помечание</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2199"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players...</source>
         <translation>Изменить игроков...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>Измение игроков</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2298"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew...</source>
         <translation>Изменить банду...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>Введённый идентификатор банды не верен</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>Изменение банды</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title...</source>
         <translation>Изменить заголовок...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>Введённый заголовок не верен</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>Изменение заголовка</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <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="1327"/>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
-        <location filename="../ProfileInterface.cpp" line="1410"/>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
+        <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"/>
         <source>Export selected...</source>
         <translation>Экпортировать выделенное...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
+        <location filename="../ProfileInterface.cpp" line="1449"/>
         <source>Export failed with...
 
 %1</source>
@@ -1689,13 +1687,13 @@ Press 1 for Default View</source>
         <translation>Экспортируется файл %1 из %2</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="473"/>
+        <location filename="../UserInterface.cpp" line="466"/>
         <source>All profile files (*.g5e SGTA* PGTA*)</source>
         <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="513"/>
-        <location filename="../UserInterface.cpp" line="474"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
+        <location filename="../UserInterface.cpp" line="467"/>
         <source>GTA V Export (*.g5e)</source>
         <translation>GTA V Export (*.g5e)</translation>
     </message>
@@ -1824,32 +1822,38 @@ Press 1 for Default View</source>
         <translation>Не удалось удалить сохранение %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1694"/>
+        <location filename="../ProfileInterface.cpp" line="1757"/>
         <source>&amp;View</source>
         <translation>&amp;Просмотр</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1696"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Remove</source>
         <translation>&amp;Удалить</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1792"/>
         <source>&amp;Select</source>
         <translation>&amp;Выбрать</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1699"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>&amp;Deselect</source>
         <translation>Сн&amp;ять выбор</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1702"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>Select &amp;All</source>
         <translation>В&amp;ыбрать все</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1771"/>
+        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation>Снять выбо&amp;р со всех</translation>
     </message>
@@ -1859,7 +1863,9 @@ Press 1 for Default View</source>
         <translation>Копировать сохранение</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1723"/>
+        <location filename="../ProfileInterface.cpp" line="1758"/>
+        <location filename="../ProfileInterface.cpp" line="1788"/>
         <source>&amp;Export</source>
         <translation>&amp;Экспортировать</translation>
     </message>
@@ -1913,7 +1919,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Snapmatic Properties</source>
         <translation>Свойства Snapmatic</translation>
     </message>
@@ -1963,7 +1969,7 @@ Press 1 for Default View</source>
         <translation>Meme</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>Заголовок Snapmatic</translation>
@@ -2064,24 +2070,24 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>Новый заголовок Snapmatic:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>Банда на Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>Новая банда на Snapmatic:</translation>
@@ -2209,62 +2215,72 @@ Press 1 for Default View</source>
         <translation>Не удалось удалить %1 из колелкции картинок Snapmatic</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>Не удалось скрыть %1 из списка картинок Snapmatic в игре</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1643"/>
+        <location filename="../ProfileInterface.cpp" line="1677"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Edi&amp;t</source>
         <translation>&amp;Правка</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1646"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>Show &amp;In-game</source>
         <translation>Показывать в &amp;игре</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1650"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>Hide &amp;In-game</source>
         <translation>Ск&amp;рыть в игре</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1657"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;Export</source>
         <translation>&amp;Экспорт</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1660"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;View</source>
         <translation>По&amp;казать</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1663"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
         <source>&amp;Remove</source>
         <translation>У&amp;далить</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1665"/>
+        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1727"/>
         <source>&amp;Select</source>
         <translation>&amp;Выделить</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1666"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>&amp;Deselect</source>
         <translation>Сн&amp;ять выделение</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1669"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>Select &amp;All</source>
         <translation>В&amp;ыбрать все</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1673"/>
+        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation>Снять выбо&amp;р со всех</translation>
     </message>
@@ -2372,7 +2388,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="319"/>
-        <location filename="../UserInterface.cpp" line="257"/>
+        <location filename="../UserInterface.cpp" line="250"/>
         <source>Select &amp;GTA V Folder...</source>
         <translation>Выбрать &amp;папку GTA V...</translation>
     </message>
@@ -2388,27 +2404,35 @@ 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"/>
         <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"/>
         <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"/>
         <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"/>
         <source>&amp;Qualify as Avatar</source>
         <translation>&amp;Пометить как Аватар</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="153"/>
-        <location filename="../UserInterface.cpp" line="679"/>
+        <location filename="../UserInterface.cpp" line="673"/>
         <source>&amp;Close</source>
         <translation>&amp;Закрыть</translation>
     </message>
@@ -2449,16 +2473,16 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.cpp" line="70"/>
-        <location filename="../UserInterface.cpp" line="323"/>
-        <location filename="../UserInterface.cpp" line="782"/>
+        <location filename="../UserInterface.cpp" line="316"/>
+        <location filename="../UserInterface.cpp" line="776"/>
         <source>Select Profile</source>
         <translation>Выбор профиля</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="738"/>
-        <location filename="../UserInterface.cpp" line="197"/>
-        <location filename="../UserInterface.cpp" line="735"/>
+        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../UserInterface.cpp" line="194"/>
+        <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
         <translation>Выбрать папку GTA V...</translation>
     </message>
@@ -2471,30 +2495,30 @@ Press 1 for Default View</source>
     <message>
         <location filename="../UserInterface.ui" line="236"/>
         <location filename="../UserInterface.cpp" line="66"/>
-        <location filename="../UserInterface.cpp" line="768"/>
+        <location filename="../UserInterface.cpp" line="762"/>
         <source>&amp;About %1</source>
         <translation>&amp;О программе %1</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="470"/>
+        <location filename="../UserInterface.cpp" line="463"/>
         <source>Open File...</source>
         <translation>Открыть файл...</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="517"/>
-        <location filename="../UserInterface.cpp" line="533"/>
-        <location filename="../UserInterface.cpp" line="560"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../UserInterface.cpp" line="510"/>
+        <location filename="../UserInterface.cpp" line="526"/>
+        <location filename="../UserInterface.cpp" line="553"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>Open File</source>
         <translation>Открыть файл</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="560"/>
+        <location filename="../UserInterface.cpp" line="553"/>
         <source>Can&apos;t open %1 because of not valid file format</source>
         <translation>Не удалось открыть %1 из-за неверного формата файла</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="648"/>
+        <location filename="../UserInterface.cpp" line="642"/>
         <source>%1 - Messages</source>
         <translation>%1 - Новости</translation>
     </message>
@@ -2504,16 +2528,16 @@ Press 1 for Default View</source>
         <translation>Пере&amp;загрузить</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../ProfileInterface.cpp" line="1607"/>
+        <location filename="../ProfileInterface.cpp" line="1621"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Show In-game</source>
         <translation>Показывать в игре</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../ProfileInterface.cpp" line="1641"/>
+        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Hide In-game</source>
         <translation>Скрыть в игре</translation>
     </message>
diff --git a/res/gta5sync_uk.qm b/res/gta5sync_uk.qm
index 9c1459fd761aed08429eb6f12b83e10284486041..46e4e874cf151a10a390b979895865c90062ab4c 100644
GIT binary patch
delta 2874
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

delta 2955
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

diff --git a/res/gta5sync_uk.ts b/res/gta5sync_uk.ts
index 54f8a86..7043992 100644
--- a/res/gta5sync_uk.ts
+++ b/res/gta5sync_uk.ts
@@ -206,20 +206,20 @@ Pictures and Savegames</source>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
         <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
-        <location filename="../SnapmaticWidget.cpp" line="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <source>Snapmatic Image Editor</source>
         <translation>Редактор Snapmatic зображень</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
         <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="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <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="721"/>
+        <location filename="../ProfileInterface.cpp" line="725"/>
         <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="740"/>
+        <location filename="../ProfileInterface.cpp" line="744"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>Користувацьке Зображення</translation>
@@ -626,19 +626,17 @@ Y: %2</translation>
         <translation>Відкривати/обирати вміст</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="39"/>
         <source>Open with Singleclick</source>
-        <translation>Відкривати одиночним кліком</translation>
+        <translation type="vanished">Відкривати одиночним кліком</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="49"/>
+        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Open with Doubleclick</source>
         <translation>Відкривати подвійним кліком</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Select with Singleclick</source>
-        <translation>Обирати одиночним кліком</translation>
+        <translation type="vanished">Обирати одиночним кліком</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="66"/>
@@ -754,26 +752,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <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"/>
         <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="633"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="649"/>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="662"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
-        <location filename="../OptionsDialog.cpp" line="670"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <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"/>
         <source>Language: %1</source>
         <translation>Мова: %1</translation>
     </message>
@@ -795,7 +793,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="591"/>
+        <location filename="../OptionsDialog.cpp" line="598"/>
         <source>Participate in %1 User Statistics</source>
         <translation>Опитування %1 про устаткування ПК</translation>
     </message>
@@ -831,8 +829,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="607"/>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="614"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Participation ID: %1</source>
         <translation>ID учасника : %1</translation>
     </message>
@@ -854,8 +852,8 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="611"/>
         <location filename="../OptionsDialog.ui" line="633"/>
-        <location filename="../OptionsDialog.cpp" line="224"/>
-        <location filename="../OptionsDialog.cpp" line="273"/>
+        <location filename="../OptionsDialog.cpp" line="226"/>
+        <location filename="../OptionsDialog.cpp" line="275"/>
         <source>Current: %1</source>
         <translation>Зараз: %1</translation>
     </message>
@@ -921,95 +919,95 @@ Y: %2</translation>
         <translation>&amp;Скасувати</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>System</source>
         <comment>System in context of System default</comment>
         <translation>Як у системи</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
         <source>%1 (Game language)</source>
         <comment>Next closest language compared to the Game settings</comment>
         <translation>%1 (Мова гри)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>%1 (Closest to Interface)</source>
         <comment>Next closest language compared to the Interface</comment>
         <translation>%1 (Співпадає з інтерфейсом)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>Auto</source>
         <comment>Automatic language choice.</comment>
         <translation>Автоматично</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>%1 (Language priority)</source>
         <comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
         <translation>%1 (пріоритет мови)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>Нова користувацька папка буде ініціалізована після перезапуску %1.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="489"/>
+        <location filename="../OptionsDialog.cpp" line="496"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>Жодного</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="497"/>
-        <location filename="../OptionsDialog.cpp" line="501"/>
-        <location filename="../OptionsDialog.cpp" line="503"/>
+        <location filename="../OptionsDialog.cpp" line="504"/>
+        <location filename="../OptionsDialog.cpp" line="508"/>
+        <location filename="../OptionsDialog.cpp" line="510"/>
         <source>Profile: %1</source>
         <translation>Профіль: %1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="592"/>
+        <location filename="../OptionsDialog.cpp" line="599"/>
         <source>View %1 User Statistics Online</source>
         <translation>Переглянути користувацьку статистику %1 онлайн</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Not registered</source>
         <translation>Не зареєстрований</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="636"/>
+        <location filename="../OptionsDialog.cpp" line="652"/>
+        <location filename="../OptionsDialog.cpp" line="665"/>
+        <location filename="../OptionsDialog.cpp" line="666"/>
         <source>Yes</source>
         <translation>Так</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="637"/>
+        <location filename="../OptionsDialog.cpp" line="651"/>
         <source>No</source>
         <translation>Ні</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="673"/>
         <source>OS defined</source>
         <translation>Визначається ОС</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <location filename="../OptionsDialog.cpp" line="660"/>
+        <location filename="../OptionsDialog.cpp" line="681"/>
         <source>Steam defined</source>
         <translation>Визначається Steam</translation>
     </message>
@@ -1054,37 +1052,37 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1658"/>
+        <location filename="../ProfileInterface.cpp" line="1690"/>
         <source>Export as &amp;Picture...</source>
         <translation>Експортувати як &amp;зображення...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1659"/>
+        <location filename="../ProfileInterface.cpp" line="1691"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>Експортувати як &amp;Snapmatic...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>&amp;Edit Properties...</source>
         <translation>&amp;Змінити властивості...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1653"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>&amp;Overwrite Image...</source>
         <translation>&amp;Перезаписати зображення...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>Відкрити &amp;карту...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1656"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>Відкрити редактор &amp;JSON...</translation>
     </message>
@@ -1339,23 +1337,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="496"/>
-        <location filename="../ProfileInterface.cpp" line="497"/>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="562"/>
-        <location filename="../ProfileInterface.cpp" line="596"/>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
-        <location filename="../ProfileInterface.cpp" line="796"/>
-        <location filename="../ProfileInterface.cpp" line="943"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../ProfileInterface.cpp" line="986"/>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <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"/>
         <source>Import...</source>
         <translation>Імпортування...</translation>
     </message>
@@ -1372,29 +1370,29 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="520"/>
         <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="517"/>
-        <location filename="../UserInterface.cpp" line="477"/>
+        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>Усі файли (**)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
+        <location filename="../ProfileInterface.cpp" line="790"/>
         <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="796"/>
+        <location filename="../ProfileInterface.cpp" line="800"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
     </message>
@@ -1409,53 +1407,53 @@ Press 1 for Default View</source>
         <translation>Завантаження...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <source>Snapmatic Loader</source>
         <translation>Snapmatic Loader</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <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="512"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <source>Importable files (%1)</source>
         <translation>Імпортуються файли (%1)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="513"/>
-        <location filename="../UserInterface.cpp" line="474"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
+        <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="514"/>
-        <location filename="../UserInterface.cpp" line="475"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>Файли збереження гри (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="515"/>
-        <location filename="../UserInterface.cpp" line="476"/>
+        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic зображення (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../ProfileInterface.cpp" line="545"/>
+        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>Вибрані недійсні файли</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="563"/>
-        <location filename="../ProfileInterface.cpp" line="580"/>
+        <location filename="../ProfileInterface.cpp" line="567"/>
+        <location filename="../ProfileInterface.cpp" line="584"/>
         <source>Import file %1 of %2 files</source>
         <translation>Імпортується файл %1 з %2 файлів</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="596"/>
+        <location filename="../ProfileInterface.cpp" line="600"/>
         <source>Import failed with...
 
 %1</source>
@@ -1464,81 +1462,81 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../UserInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>Не вдалося прочитати Snapmatic картинку</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../UserInterface.cpp" line="533"/>
+        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>Не вдалося прочитати файл збереження гри</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="943"/>
+        <location filename="../ProfileInterface.cpp" line="947"/>
         <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="1116"/>
+        <location filename="../ProfileInterface.cpp" line="1120"/>
         <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="1220"/>
+        <location filename="../ProfileInterface.cpp" line="1224"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
+        <location filename="../ProfileInterface.cpp" line="1261"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <location filename="../ProfileInterface.cpp" line="1267"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1327"/>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
-        <location filename="../ProfileInterface.cpp" line="1410"/>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
+        <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"/>
         <source>Export selected...</source>
         <translation>Експорт обраних...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1350"/>
-        <location filename="../ProfileInterface.cpp" line="1368"/>
+        <location filename="../ProfileInterface.cpp" line="1354"/>
+        <location filename="../ProfileInterface.cpp" line="1372"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>JPG картинки і GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1351"/>
-        <location filename="../ProfileInterface.cpp" line="1373"/>
+        <location filename="../ProfileInterface.cpp" line="1355"/>
+        <location filename="../ProfileInterface.cpp" line="1377"/>
         <source>JPG pictures only</source>
         <translation>Тільки JPG картинки</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1352"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1356"/>
+        <location filename="../ProfileInterface.cpp" line="1381"/>
         <source>GTA Snapmatic only</source>
         <translation>Тільки GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <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="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1415"/>
         <source>Initialising export...</source>
         <translation>Ініціалізація експорту...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
+        <location filename="../ProfileInterface.cpp" line="1449"/>
         <source>Export failed with...
 
 %1</source>
@@ -1547,45 +1545,45 @@ Press 1 for Default View</source>
 %1</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>Remove selected</source>
         <translation>Видалити вибрані</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
         <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
+        <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"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>Не вибрано жодного Snapmatic зображення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <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"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1595,97 +1593,97 @@ Press 1 for Default View</source>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1002"/>
+        <location filename="../ProfileInterface.cpp" line="1006"/>
         <source>Prepare Content for Import...</source>
         <translation>Підготувати контент для імпорту ...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
+        <location filename="../ProfileInterface.cpp" line="1128"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2113"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify as Avatar</source>
         <translation>Позначити як Аватар</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2029"/>
-        <location filename="../ProfileInterface.cpp" line="2132"/>
-        <location filename="../ProfileInterface.cpp" line="2263"/>
-        <location filename="../ProfileInterface.cpp" line="2369"/>
+        <location filename="../ProfileInterface.cpp" line="2124"/>
+        <location filename="../ProfileInterface.cpp" line="2227"/>
+        <location filename="../ProfileInterface.cpp" line="2358"/>
+        <location filename="../ProfileInterface.cpp" line="2464"/>
         <source>Patch selected...</source>
         <translation>Вибір патчу...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2030"/>
-        <location filename="../ProfileInterface.cpp" line="2049"/>
-        <location filename="../ProfileInterface.cpp" line="2133"/>
-        <location filename="../ProfileInterface.cpp" line="2152"/>
-        <location filename="../ProfileInterface.cpp" line="2264"/>
-        <location filename="../ProfileInterface.cpp" line="2283"/>
-        <location filename="../ProfileInterface.cpp" line="2370"/>
-        <location filename="../ProfileInterface.cpp" line="2389"/>
+        <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"/>
         <source>Patch file %1 of %2 files</source>
         <translation>Патч файлу %1 з %2 файлів</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>Якість</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2199"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players...</source>
         <translation>Зміна гравців...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>Змінити гравців</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2298"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew...</source>
         <translation>Зміна банди...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>Змінити банду</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title...</source>
         <translation>Зміна назви...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>Змінити назву</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="473"/>
+        <location filename="../UserInterface.cpp" line="466"/>
         <source>All profile files (*.g5e SGTA* PGTA*)</source>
         <translation>Усі файли зображень (*.g5e SGTA* PGTA*)</translation>
     </message>
@@ -1779,37 +1777,45 @@ Press 1 for Default View</source>
         <translation>Видалити</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1694"/>
+        <location filename="../ProfileInterface.cpp" line="1757"/>
         <source>&amp;View</source>
         <translation>&amp;Перегляд</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1723"/>
+        <location filename="../ProfileInterface.cpp" line="1758"/>
+        <location filename="../ProfileInterface.cpp" line="1788"/>
         <source>&amp;Export</source>
         <translation>&amp;Експорт</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1696"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Remove</source>
         <translation>&amp;Видалення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1792"/>
         <source>&amp;Select</source>
         <translation>&amp;Виділення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1699"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>&amp;Deselect</source>
         <translation>&amp;Зняти виділення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1702"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>Select &amp;All</source>
         <translation>Вибрати &amp;усі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1771"/>
+        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation>&amp;Зняти виділення усіх</translation>
     </message>
@@ -1911,7 +1917,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Snapmatic Properties</source>
         <translation>Властивості Snapmatic</translation>
     </message>
@@ -2004,7 +2010,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
     </message>
@@ -2014,25 +2020,25 @@ Press 1 for Default View</source>
         <translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>Snapmatic банда</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>Нова Snapmatic банда:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>Snapmatic назва</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>Новий Snapmatic заголовок:</translation>
@@ -2207,52 +2213,62 @@ Press 1 for Default View</source>
         <translation>Видалити</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1643"/>
+        <location filename="../ProfileInterface.cpp" line="1677"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Edi&amp;t</source>
         <translation>Редагува&amp;ти</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1646"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>Show &amp;In-game</source>
         <translation>Показати &amp;у грі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1650"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>Hide &amp;In-game</source>
         <translation>Сховати &amp;у грі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1657"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;Export</source>
         <translation>&amp;Експортувати</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1660"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;View</source>
         <translation>&amp;Переглянути</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1663"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
         <source>&amp;Remove</source>
         <translation>&amp;Видалити</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1665"/>
+        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1727"/>
         <source>&amp;Select</source>
         <translation>&amp;Виділення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1666"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>&amp;Deselect</source>
         <translation>&amp;Зняти виділення</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1669"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>Select &amp;All</source>
         <translation>Вибрати &amp;усі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1673"/>
+        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation>&amp;Зняти виділення усіх</translation>
     </message>
@@ -2267,12 +2283,12 @@ Press 1 for Default View</source>
         <translation>Не вдалося видалити%1 з ваших Snapmatic фотографій</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>Не вдалося сховати %1 Snapmatic у грі</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>Не вдалося показати %1 Snapmatic у грі</translation>
     </message>
@@ -2337,7 +2353,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="153"/>
-        <location filename="../UserInterface.cpp" line="679"/>
+        <location filename="../UserInterface.cpp" line="673"/>
         <source>&amp;Close</source>
         <translation>&amp;Закрити</translation>
     </message>
@@ -2374,7 +2390,7 @@ Press 1 for Default View</source>
     <message>
         <location filename="../UserInterface.ui" line="236"/>
         <location filename="../UserInterface.cpp" line="66"/>
-        <location filename="../UserInterface.cpp" line="768"/>
+        <location filename="../UserInterface.cpp" line="762"/>
         <source>&amp;About %1</source>
         <translation>&amp;Про %1</translation>
     </message>
@@ -2430,15 +2446,15 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="319"/>
-        <location filename="../UserInterface.cpp" line="257"/>
+        <location filename="../UserInterface.cpp" line="250"/>
         <source>Select &amp;GTA V Folder...</source>
         <translation>Вибрати &amp;GTA V теку...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="738"/>
-        <location filename="../UserInterface.cpp" line="197"/>
-        <location filename="../UserInterface.cpp" line="735"/>
+        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../UserInterface.cpp" line="194"/>
+        <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
         <translation>Вибрати GTA V теку...</translation>
     </message>
@@ -2454,65 +2470,73 @@ 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"/>
         <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"/>
         <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"/>
         <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"/>
         <source>Change &amp;Players...</source>
         <translation>Змінити &amp;гравців...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../ProfileInterface.cpp" line="1607"/>
+        <location filename="../ProfileInterface.cpp" line="1621"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Show In-game</source>
         <translation>Показати у грі</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../ProfileInterface.cpp" line="1641"/>
+        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Hide In-game</source>
         <translation>Сховати у грі</translation>
     </message>
     <message>
         <location filename="../UserInterface.cpp" line="70"/>
-        <location filename="../UserInterface.cpp" line="323"/>
-        <location filename="../UserInterface.cpp" line="782"/>
+        <location filename="../UserInterface.cpp" line="316"/>
+        <location filename="../UserInterface.cpp" line="776"/>
         <source>Select Profile</source>
         <translation>Вибрати профіль</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="470"/>
+        <location filename="../UserInterface.cpp" line="463"/>
         <source>Open File...</source>
         <translation>Відкрити файл...</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="517"/>
-        <location filename="../UserInterface.cpp" line="533"/>
-        <location filename="../UserInterface.cpp" line="560"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../UserInterface.cpp" line="510"/>
+        <location filename="../UserInterface.cpp" line="526"/>
+        <location filename="../UserInterface.cpp" line="553"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>Open File</source>
         <translation>Відкрити файл</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="560"/>
+        <location filename="../UserInterface.cpp" line="553"/>
         <source>Can&apos;t open %1 because of not valid file format</source>
         <translation>Неможливо відкрити %1 через невідомий формат файлу</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="648"/>
+        <location filename="../UserInterface.cpp" line="642"/>
         <source>%1 - Messages</source>
         <translation>%1 - Новини</translation>
     </message>
diff --git a/res/gta5sync_zh_TW.qm b/res/gta5sync_zh_TW.qm
index 216a38f2fe4cd0bbf5fa5bfb593ca0724e5b8538..44624a86637c536f03a7b8e5c3f3fd7adca3be99 100644
GIT binary patch
delta 2897
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

delta 3002
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
X(nRZWobu9g7CZglu9JIwUqt^G<A`f}

diff --git a/res/gta5sync_zh_TW.ts b/res/gta5sync_zh_TW.ts
index 92a1c73..5ea86ac 100644
--- a/res/gta5sync_zh_TW.ts
+++ b/res/gta5sync_zh_TW.ts
@@ -202,20 +202,20 @@ Pictures and Savegames</source>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
         <location filename="../PictureDialog.cpp" line="958"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
-        <location filename="../SnapmaticWidget.cpp" line="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <source>Snapmatic Image Editor</source>
         <translation>Snapmatic 圖片編輯器</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="934"/>
-        <location filename="../SnapmaticWidget.cpp" line="375"/>
+        <location filename="../SnapmaticWidget.cpp" line="377"/>
         <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="399"/>
+        <location filename="../SnapmaticWidget.cpp" line="401"/>
         <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="721"/>
+        <location filename="../ProfileInterface.cpp" line="725"/>
         <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="740"/>
+        <location filename="../ProfileInterface.cpp" line="744"/>
         <source>Custom Picture</source>
         <comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
         <translation>自訂圖片</translation>
@@ -621,19 +621,17 @@ Y: %2</translation>
         <translation>開啟/選擇模式</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="39"/>
         <source>Open with Singleclick</source>
-        <translation>點一次開啟</translation>
+        <translation type="vanished">點一次開啟</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="49"/>
+        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Open with Doubleclick</source>
         <translation>點兩次開啟</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.ui" line="56"/>
         <source>Select with Singleclick</source>
-        <translation>點一次選取</translation>
+        <translation type="vanished">點一次選取</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="66"/>
@@ -749,26 +747,26 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="399"/>
         <location filename="../OptionsDialog.ui" line="422"/>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <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"/>
         <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="633"/>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="649"/>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="662"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
-        <location filename="../OptionsDialog.cpp" line="670"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <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"/>
         <source>Language: %1</source>
         <translation>語言: %1</translation>
     </message>
@@ -789,7 +787,7 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="465"/>
-        <location filename="../OptionsDialog.cpp" line="591"/>
+        <location filename="../OptionsDialog.cpp" line="598"/>
         <source>Participate in %1 User Statistics</source>
         <translation>參與 %1 使用者統計</translation>
     </message>
@@ -825,8 +823,8 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../OptionsDialog.ui" line="554"/>
-        <location filename="../OptionsDialog.cpp" line="607"/>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="614"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Participation ID: %1</source>
         <translation>參與 ID: %1</translation>
     </message>
@@ -848,8 +846,8 @@ Y: %2</translation>
     <message>
         <location filename="../OptionsDialog.ui" line="611"/>
         <location filename="../OptionsDialog.ui" line="633"/>
-        <location filename="../OptionsDialog.cpp" line="224"/>
-        <location filename="../OptionsDialog.cpp" line="273"/>
+        <location filename="../OptionsDialog.cpp" line="226"/>
+        <location filename="../OptionsDialog.cpp" line="275"/>
         <source>Current: %1</source>
         <translation>目前: %1</translation>
     </message>
@@ -915,95 +913,95 @@ Y: %2</translation>
         <translation>取消(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>System</source>
         <comment>System in context of System default</comment>
         <translation>系統</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>%1 (Closest to Interface)</source>
         <comment>Next closest language compared to the Interface</comment>
         <translation>%1 (與介面接近的語言)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
-        <location filename="../OptionsDialog.cpp" line="186"/>
-        <location filename="../OptionsDialog.cpp" line="189"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
+        <location filename="../OptionsDialog.cpp" line="188"/>
+        <location filename="../OptionsDialog.cpp" line="191"/>
         <source>Auto</source>
         <comment>Automatic language choice.</comment>
         <translation>自動</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="176"/>
+        <location filename="../OptionsDialog.cpp" line="178"/>
         <source>%1 (Language priority)</source>
         <comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
         <translation>%1 (語言優先)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="182"/>
+        <location filename="../OptionsDialog.cpp" line="184"/>
         <source>%1 (Game language)</source>
         <comment>Next closest language compared to the Game settings</comment>
         <translation>%1 (遊戲語言)</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>%1</source>
         <comment>%1</comment>
         <translation>%1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="479"/>
+        <location filename="../OptionsDialog.cpp" line="486"/>
         <source>The new Custom Folder will initialise after you restart %1.</source>
         <translation>自訂資料夾將在 %1 重新啟動後初始化.</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="489"/>
+        <location filename="../OptionsDialog.cpp" line="496"/>
         <source>No Profile</source>
         <comment>No Profile, as default</comment>
         <translation>無</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="497"/>
-        <location filename="../OptionsDialog.cpp" line="501"/>
-        <location filename="../OptionsDialog.cpp" line="503"/>
+        <location filename="../OptionsDialog.cpp" line="504"/>
+        <location filename="../OptionsDialog.cpp" line="508"/>
+        <location filename="../OptionsDialog.cpp" line="510"/>
         <source>Profile: %1</source>
         <translation>設定檔: %1</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="592"/>
+        <location filename="../OptionsDialog.cpp" line="599"/>
         <source>View %1 User Statistics Online</source>
         <translation>檢視 %1 使用者統計資訊</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="611"/>
+        <location filename="../OptionsDialog.cpp" line="618"/>
         <source>Not registered</source>
         <translation>未註冊參與</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="629"/>
-        <location filename="../OptionsDialog.cpp" line="645"/>
-        <location filename="../OptionsDialog.cpp" line="658"/>
-        <location filename="../OptionsDialog.cpp" line="659"/>
+        <location filename="../OptionsDialog.cpp" line="636"/>
+        <location filename="../OptionsDialog.cpp" line="652"/>
+        <location filename="../OptionsDialog.cpp" line="665"/>
+        <location filename="../OptionsDialog.cpp" line="666"/>
         <source>Yes</source>
         <translation>是</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="630"/>
-        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="637"/>
+        <location filename="../OptionsDialog.cpp" line="651"/>
         <source>No</source>
         <translation>否</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="637"/>
-        <location filename="../OptionsDialog.cpp" line="666"/>
+        <location filename="../OptionsDialog.cpp" line="644"/>
+        <location filename="../OptionsDialog.cpp" line="673"/>
         <source>OS defined</source>
         <translation>系統定義</translation>
     </message>
     <message>
-        <location filename="../OptionsDialog.cpp" line="653"/>
-        <location filename="../OptionsDialog.cpp" line="674"/>
+        <location filename="../OptionsDialog.cpp" line="660"/>
+        <location filename="../OptionsDialog.cpp" line="681"/>
         <source>Steam defined</source>
         <translation>Steam 定義</translation>
     </message>
@@ -1048,37 +1046,37 @@ Y: %2</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="174"/>
-        <location filename="../ProfileInterface.cpp" line="1658"/>
+        <location filename="../ProfileInterface.cpp" line="1690"/>
         <source>Export as &amp;Picture...</source>
         <translation>匯出成圖片(&amp;P)...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="175"/>
-        <location filename="../ProfileInterface.cpp" line="1659"/>
+        <location filename="../ProfileInterface.cpp" line="1691"/>
         <source>Export as &amp;Snapmatic...</source>
         <translation>匯出成 Snapmatic(&amp;S)...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="177"/>
-        <location filename="../ProfileInterface.cpp" line="1652"/>
+        <location filename="../ProfileInterface.cpp" line="1684"/>
         <source>&amp;Edit Properties...</source>
         <translation>編輯屬性(&amp;E) ...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="178"/>
-        <location filename="../ProfileInterface.cpp" line="1653"/>
+        <location filename="../ProfileInterface.cpp" line="1685"/>
         <source>&amp;Overwrite Image...</source>
         <translation>修改圖片(&amp;O)...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="180"/>
-        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../ProfileInterface.cpp" line="1687"/>
         <source>Open &amp;Map Viewer...</source>
         <translation>開啟地圖檢視器(&amp;M)...</translation>
     </message>
     <message>
         <location filename="../PictureDialog.cpp" line="182"/>
-        <location filename="../ProfileInterface.cpp" line="1656"/>
+        <location filename="../ProfileInterface.cpp" line="1688"/>
         <source>Open &amp;JSON Editor...</source>
         <translation>開啟 JSON 編輯器(&amp;J)...</translation>
     </message>
@@ -1333,23 +1331,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="496"/>
-        <location filename="../ProfileInterface.cpp" line="497"/>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="562"/>
-        <location filename="../ProfileInterface.cpp" line="596"/>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
-        <location filename="../ProfileInterface.cpp" line="796"/>
-        <location filename="../ProfileInterface.cpp" line="943"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../ProfileInterface.cpp" line="986"/>
-        <location filename="../ProfileInterface.cpp" line="1116"/>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
-        <location filename="../ProfileInterface.cpp" line="1220"/>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <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"/>
         <source>Import...</source>
         <translation>匯入...</translation>
     </message>
@@ -1366,29 +1364,29 @@ Press 1 for Default View</source>
     <message>
         <location filename="../ImportDialog.cpp" line="488"/>
         <location filename="../ImportDialog.cpp" line="815"/>
-        <location filename="../ProfileInterface.cpp" line="516"/>
+        <location filename="../ProfileInterface.cpp" line="520"/>
         <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="517"/>
-        <location filename="../UserInterface.cpp" line="477"/>
+        <location filename="../ProfileInterface.cpp" line="521"/>
+        <location filename="../UserInterface.cpp" line="470"/>
         <source>All files (**)</source>
         <translation>所有檔案 (**)</translation>
     </message>
     <message>
         <location filename="../ImportDialog.cpp" line="509"/>
         <location filename="../ImportDialog.cpp" line="836"/>
-        <location filename="../ProfileInterface.cpp" line="786"/>
+        <location filename="../ProfileInterface.cpp" line="790"/>
         <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="796"/>
+        <location filename="../ProfileInterface.cpp" line="800"/>
         <source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
         <translation>無法匯入 %1,因為檔案無法正確解析</translation>
     </message>
@@ -1403,179 +1401,179 @@ Press 1 for Default View</source>
         <translation>載入中...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <source>Snapmatic Loader</source>
         <translation>Snapmatic 載入器</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="423"/>
+        <location filename="../ProfileInterface.cpp" line="427"/>
         <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="512"/>
+        <location filename="../ProfileInterface.cpp" line="516"/>
         <source>Importable files (%1)</source>
         <translation>可匯入的檔案 (%1)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="513"/>
-        <location filename="../UserInterface.cpp" line="474"/>
+        <location filename="../ProfileInterface.cpp" line="517"/>
+        <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="514"/>
-        <location filename="../UserInterface.cpp" line="475"/>
+        <location filename="../ProfileInterface.cpp" line="518"/>
+        <location filename="../UserInterface.cpp" line="468"/>
         <source>Savegames files (SGTA*)</source>
         <translation>遊戲存檔 (SGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="515"/>
-        <location filename="../UserInterface.cpp" line="476"/>
+        <location filename="../ProfileInterface.cpp" line="519"/>
+        <location filename="../UserInterface.cpp" line="469"/>
         <source>Snapmatic pictures (PGTA*)</source>
         <translation>Snapmatic 圖片 (PGTA*)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="541"/>
-        <location filename="../ProfileInterface.cpp" line="948"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../ProfileInterface.cpp" line="545"/>
+        <location filename="../ProfileInterface.cpp" line="952"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>No valid file is selected</source>
         <translation>沒有選擇有效的檔案</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="563"/>
-        <location filename="../ProfileInterface.cpp" line="580"/>
+        <location filename="../ProfileInterface.cpp" line="567"/>
+        <location filename="../ProfileInterface.cpp" line="584"/>
         <source>Import file %1 of %2 files</source>
         <translation>匯入檔案 %1 共 %2 個</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="596"/>
+        <location filename="../ProfileInterface.cpp" line="600"/>
         <source>Import failed with...
 
 %1</source>
         <translation>%1 匯入失敗</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="638"/>
-        <location filename="../UserInterface.cpp" line="517"/>
+        <location filename="../ProfileInterface.cpp" line="642"/>
+        <location filename="../UserInterface.cpp" line="510"/>
         <source>Failed to read Snapmatic picture</source>
         <translation>無法讀取 Snapmatic 圖片</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="673"/>
-        <location filename="../UserInterface.cpp" line="533"/>
+        <location filename="../ProfileInterface.cpp" line="677"/>
+        <location filename="../UserInterface.cpp" line="526"/>
         <source>Failed to read Savegame file</source>
         <translation>無法讀取遊戲存檔</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="943"/>
+        <location filename="../ProfileInterface.cpp" line="947"/>
         <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="1116"/>
+        <location filename="../ProfileInterface.cpp" line="1120"/>
         <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="1220"/>
+        <location filename="../ProfileInterface.cpp" line="1224"/>
         <source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
         <translation>匯入 Snapmatic 圖片失敗,無法將該檔案複製到設定檔中</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1257"/>
+        <location filename="../ProfileInterface.cpp" line="1261"/>
         <source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
         <translation>匯入遊戲存檔失敗,無法將該檔案複製到設定檔中</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1263"/>
+        <location filename="../ProfileInterface.cpp" line="1267"/>
         <source>Failed to import the Savegame, no Savegame slot is left</source>
         <translation>匯入遊戲存檔失敗,沒有遊戲存檔欄位</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1327"/>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
-        <location filename="../ProfileInterface.cpp" line="1410"/>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
+        <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"/>
         <source>Export selected...</source>
         <translation>匯出所選...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1350"/>
-        <location filename="../ProfileInterface.cpp" line="1368"/>
+        <location filename="../ProfileInterface.cpp" line="1354"/>
+        <location filename="../ProfileInterface.cpp" line="1372"/>
         <source>JPG pictures and GTA Snapmatic</source>
         <translation>JPG 圖片和 GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1351"/>
-        <location filename="../ProfileInterface.cpp" line="1373"/>
+        <location filename="../ProfileInterface.cpp" line="1355"/>
+        <location filename="../ProfileInterface.cpp" line="1377"/>
         <source>JPG pictures only</source>
         <translation>只有 JPG 圖片</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1352"/>
-        <location filename="../ProfileInterface.cpp" line="1377"/>
+        <location filename="../ProfileInterface.cpp" line="1356"/>
+        <location filename="../ProfileInterface.cpp" line="1381"/>
         <source>GTA Snapmatic only</source>
         <translation>只有 GTA Snapmatic</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1365"/>
+        <location filename="../ProfileInterface.cpp" line="1369"/>
         <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="1411"/>
+        <location filename="../ProfileInterface.cpp" line="1415"/>
         <source>Initialising export...</source>
         <translation>初始化...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1445"/>
+        <location filename="../ProfileInterface.cpp" line="1449"/>
         <source>Export failed with...
 
 %1</source>
         <translation>%1 匯出失敗</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1465"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1469"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>No Snapmatic pictures or Savegames files are selected</source>
         <translation>未選擇 Snapmatic 圖片或遊戲存檔</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
-        <location filename="../ProfileInterface.cpp" line="1507"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
+        <location filename="../ProfileInterface.cpp" line="1511"/>
         <source>Remove selected</source>
         <translation>移除所選</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1473"/>
+        <location filename="../ProfileInterface.cpp" line="1477"/>
         <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
         <translation>你想移除所選的 Snapmatic 圖片/存檔嗎?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1501"/>
+        <location filename="../ProfileInterface.cpp" line="1505"/>
         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
         <translation>無法移除所選擇的 Snapmatic 圖片/遊戲存檔</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
         <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
+        <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"/>
         <source>No Snapmatic pictures are selected</source>
         <translation>未選擇 Snapmatic 圖片</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
         <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <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"/>
         <source>%1 failed with...
 
 %2</source>
@@ -1585,97 +1583,97 @@ Press 1 for Default View</source>
 %2</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1002"/>
+        <location filename="../ProfileInterface.cpp" line="1006"/>
         <source>Prepare Content for Import...</source>
         <translation>準備匯入內容...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1124"/>
+        <location filename="../ProfileInterface.cpp" line="1128"/>
         <source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
         <translation>已有與 uid %1 相同的 Snapmatic 圖片,你想要匯入新的 uid 和時間戳嗎?</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2018"/>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2113"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify as Avatar</source>
         <translation>合格大頭貼</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2029"/>
-        <location filename="../ProfileInterface.cpp" line="2132"/>
-        <location filename="../ProfileInterface.cpp" line="2263"/>
-        <location filename="../ProfileInterface.cpp" line="2369"/>
+        <location filename="../ProfileInterface.cpp" line="2124"/>
+        <location filename="../ProfileInterface.cpp" line="2227"/>
+        <location filename="../ProfileInterface.cpp" line="2358"/>
+        <location filename="../ProfileInterface.cpp" line="2464"/>
         <source>Patch selected...</source>
         <translation>修改所選...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2030"/>
-        <location filename="../ProfileInterface.cpp" line="2049"/>
-        <location filename="../ProfileInterface.cpp" line="2133"/>
-        <location filename="../ProfileInterface.cpp" line="2152"/>
-        <location filename="../ProfileInterface.cpp" line="2264"/>
-        <location filename="../ProfileInterface.cpp" line="2283"/>
-        <location filename="../ProfileInterface.cpp" line="2370"/>
-        <location filename="../ProfileInterface.cpp" line="2389"/>
+        <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"/>
         <source>Patch file %1 of %2 files</source>
         <translation>修改檔案 %1 共 %2 個檔案</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2083"/>
+        <location filename="../ProfileInterface.cpp" line="2178"/>
         <source>Qualify</source>
         <comment>%1 failed with...</comment>
         <translation>合格</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2104"/>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2199"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players...</source>
         <translation>更改玩家...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2182"/>
+        <location filename="../ProfileInterface.cpp" line="2277"/>
         <source>Change Players</source>
         <comment>%1 failed with...</comment>
         <translation>更改玩家</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2203"/>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2298"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew...</source>
         <translation>更改幫會...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2240"/>
+        <location filename="../ProfileInterface.cpp" line="2335"/>
         <source>Failed to enter a valid Snapmatic Crew ID</source>
         <translation>輸入了無效的幫會 ID</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2313"/>
+        <location filename="../ProfileInterface.cpp" line="2408"/>
         <source>Change Crew</source>
         <comment>%1 failed with...</comment>
         <translation>更改幫會</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2334"/>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2429"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title...</source>
         <translation>更改標題...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2351"/>
+        <location filename="../ProfileInterface.cpp" line="2446"/>
         <source>Failed to enter a valid Snapmatic title</source>
         <translation>輸入了無效的標題</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2416"/>
+        <location filename="../ProfileInterface.cpp" line="2511"/>
         <source>Change Title</source>
         <comment>%1 failed with...</comment>
         <translation>更改標題</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="473"/>
+        <location filename="../UserInterface.cpp" line="466"/>
         <source>All profile files (*.g5e SGTA* PGTA*)</source>
         <translation>所有設定檔檔案 (*.g5e SGTA* PGTA*)</translation>
     </message>
@@ -1761,37 +1759,45 @@ Press 1 for Default View</source>
         <translation>刪除</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1694"/>
+        <location filename="../ProfileInterface.cpp" line="1757"/>
         <source>&amp;View</source>
         <translation>檢視(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1695"/>
+        <location filename="../ProfileInterface.cpp" line="1723"/>
+        <location filename="../ProfileInterface.cpp" line="1758"/>
+        <location filename="../ProfileInterface.cpp" line="1788"/>
         <source>&amp;Export</source>
         <translation>匯出(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1696"/>
+        <location filename="../ProfileInterface.cpp" line="1724"/>
+        <location filename="../ProfileInterface.cpp" line="1759"/>
+        <location filename="../ProfileInterface.cpp" line="1789"/>
         <source>&amp;Remove</source>
         <translation>移除(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1762"/>
+        <location filename="../ProfileInterface.cpp" line="1792"/>
         <source>&amp;Select</source>
         <translation>選擇(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1699"/>
+        <location filename="../ProfileInterface.cpp" line="1765"/>
+        <location filename="../ProfileInterface.cpp" line="1794"/>
         <source>&amp;Deselect</source>
         <translation>取消選擇(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1702"/>
+        <location filename="../ProfileInterface.cpp" line="1768"/>
+        <location filename="../ProfileInterface.cpp" line="1797"/>
         <source>Select &amp;All</source>
         <translation>選擇全部(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1771"/>
+        <location filename="../ProfileInterface.cpp" line="1800"/>
         <source>&amp;Deselect All</source>
         <translation>取消選擇全部(&amp;D)</translation>
     </message>
@@ -1893,7 +1899,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="226"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Snapmatic Properties</source>
         <translation>Snapmatic 屬性</translation>
     </message>
@@ -1986,7 +1992,7 @@ Press 1 for Default View</source>
         <location filename="../JsonEditorDialog.cpp" line="197"/>
         <location filename="../PictureDialog.cpp" line="849"/>
         <location filename="../SnapmaticEditor.cpp" line="333"/>
-        <location filename="../SnapmaticWidget.cpp" line="433"/>
+        <location filename="../SnapmaticWidget.cpp" line="435"/>
         <source>Patching of Snapmatic Properties failed because of I/O Error</source>
         <translation>讀寫錯誤,未能更新 Snapmatic 屬性</translation>
     </message>
@@ -1996,25 +2002,25 @@ Press 1 for Default View</source>
         <translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>Snapmatic Crew</source>
         <translation>幫會</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2231"/>
+        <location filename="../ProfileInterface.cpp" line="2326"/>
         <location filename="../SnapmaticEditor.cpp" line="442"/>
         <source>New Snapmatic crew:</source>
         <translation>輸入新的幫會:</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>Snapmatic Title</source>
         <translation>標題</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="2346"/>
+        <location filename="../ProfileInterface.cpp" line="2441"/>
         <location filename="../SnapmaticEditor.cpp" line="413"/>
         <source>New Snapmatic title:</source>
         <translation>輸入新的標題:</translation>
@@ -2189,52 +2195,62 @@ Press 1 for Default View</source>
         <translation>刪除</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1643"/>
+        <location filename="../ProfileInterface.cpp" line="1677"/>
+        <location filename="../ProfileInterface.cpp" line="1714"/>
+        <location filename="../ProfileInterface.cpp" line="1779"/>
         <source>Edi&amp;t</source>
         <translation>編輯(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1646"/>
+        <location filename="../ProfileInterface.cpp" line="1679"/>
+        <location filename="../ProfileInterface.cpp" line="1720"/>
+        <location filename="../ProfileInterface.cpp" line="1785"/>
         <source>Show &amp;In-game</source>
         <translation>在遊戲中顯示(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1650"/>
+        <location filename="../ProfileInterface.cpp" line="1682"/>
+        <location filename="../ProfileInterface.cpp" line="1721"/>
+        <location filename="../ProfileInterface.cpp" line="1786"/>
         <source>Hide &amp;In-game</source>
         <translation>在遊戲中隱藏(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1657"/>
+        <location filename="../ProfileInterface.cpp" line="1689"/>
         <source>&amp;Export</source>
         <translation>匯出(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1660"/>
+        <location filename="../ProfileInterface.cpp" line="1692"/>
         <source>&amp;View</source>
         <translation>檢視(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1663"/>
+        <location filename="../ProfileInterface.cpp" line="1695"/>
         <source>&amp;Remove</source>
         <translation>移除(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1665"/>
+        <location filename="../ProfileInterface.cpp" line="1698"/>
+        <location filename="../ProfileInterface.cpp" line="1727"/>
         <source>&amp;Select</source>
         <translation>選擇(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1666"/>
+        <location filename="../ProfileInterface.cpp" line="1700"/>
+        <location filename="../ProfileInterface.cpp" line="1729"/>
         <source>&amp;Deselect</source>
         <translation>取消選擇(&amp;D)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1669"/>
+        <location filename="../ProfileInterface.cpp" line="1703"/>
+        <location filename="../ProfileInterface.cpp" line="1732"/>
         <source>Select &amp;All</source>
         <translation>選擇全部(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1673"/>
+        <location filename="../ProfileInterface.cpp" line="1706"/>
+        <location filename="../ProfileInterface.cpp" line="1735"/>
         <source>&amp;Deselect All</source>
         <translation>取消選擇全部(&amp;D)</translation>
     </message>
@@ -2249,12 +2265,12 @@ Press 1 for Default View</source>
         <translation>刪除 Snapmatic 圖片 %1 失敗</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Failed to hide %1 In-game from your Snapmatic pictures</source>
         <translation>在遊戲中隱藏圖片 %1 失敗</translation>
     </message>
     <message>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Failed to show %1 In-game from your Snapmatic pictures</source>
         <translation>在遊戲中顯示圖片 %1 失敗</translation>
     </message>
@@ -2318,7 +2334,7 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="153"/>
-        <location filename="../UserInterface.cpp" line="679"/>
+        <location filename="../UserInterface.cpp" line="673"/>
         <source>&amp;Close</source>
         <translation>關閉(&amp;C)</translation>
     </message>
@@ -2355,7 +2371,7 @@ Press 1 for Default View</source>
     <message>
         <location filename="../UserInterface.ui" line="236"/>
         <location filename="../UserInterface.cpp" line="66"/>
-        <location filename="../UserInterface.cpp" line="768"/>
+        <location filename="../UserInterface.cpp" line="762"/>
         <source>&amp;About %1</source>
         <translation>關於 %1(&amp;A)</translation>
     </message>
@@ -2411,15 +2427,15 @@ Press 1 for Default View</source>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="319"/>
-        <location filename="../UserInterface.cpp" line="257"/>
+        <location filename="../UserInterface.cpp" line="250"/>
         <source>Select &amp;GTA V Folder...</source>
         <translation>選擇 GTA V 資料夾(&amp;G)...</translation>
     </message>
     <message>
         <location filename="../UserInterface.ui" line="322"/>
-        <location filename="../OptionsDialog.cpp" line="738"/>
-        <location filename="../UserInterface.cpp" line="197"/>
-        <location filename="../UserInterface.cpp" line="735"/>
+        <location filename="../OptionsDialog.cpp" line="745"/>
+        <location filename="../UserInterface.cpp" line="194"/>
+        <location filename="../UserInterface.cpp" line="729"/>
         <source>Select GTA V Folder...</source>
         <translation>選擇 GTA V 資料夾...</translation>
     </message>
@@ -2435,65 +2451,73 @@ 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"/>
         <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"/>
         <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"/>
         <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"/>
         <source>Change &amp;Players...</source>
         <translation>更改玩家(&amp;P)...</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1573"/>
-        <location filename="../ProfileInterface.cpp" line="1587"/>
-        <location filename="../SnapmaticWidget.cpp" line="328"/>
+        <location filename="../ProfileInterface.cpp" line="1607"/>
+        <location filename="../ProfileInterface.cpp" line="1621"/>
+        <location filename="../SnapmaticWidget.cpp" line="330"/>
         <source>Show In-game</source>
         <translation>在遊戲中顯示</translation>
     </message>
     <message>
-        <location filename="../ProfileInterface.cpp" line="1607"/>
-        <location filename="../ProfileInterface.cpp" line="1621"/>
-        <location filename="../SnapmaticWidget.cpp" line="320"/>
+        <location filename="../ProfileInterface.cpp" line="1641"/>
+        <location filename="../ProfileInterface.cpp" line="1655"/>
+        <location filename="../SnapmaticWidget.cpp" line="322"/>
         <source>Hide In-game</source>
         <translation>在遊戲中隱藏</translation>
     </message>
     <message>
         <location filename="../UserInterface.cpp" line="70"/>
-        <location filename="../UserInterface.cpp" line="323"/>
-        <location filename="../UserInterface.cpp" line="782"/>
+        <location filename="../UserInterface.cpp" line="316"/>
+        <location filename="../UserInterface.cpp" line="776"/>
         <source>Select Profile</source>
         <translation>選擇設定檔</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="470"/>
+        <location filename="../UserInterface.cpp" line="463"/>
         <source>Open File...</source>
         <translation>開啟檔案...</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="517"/>
-        <location filename="../UserInterface.cpp" line="533"/>
-        <location filename="../UserInterface.cpp" line="560"/>
-        <location filename="../UserInterface.cpp" line="565"/>
+        <location filename="../UserInterface.cpp" line="510"/>
+        <location filename="../UserInterface.cpp" line="526"/>
+        <location filename="../UserInterface.cpp" line="553"/>
+        <location filename="../UserInterface.cpp" line="558"/>
         <source>Open File</source>
         <translation>開啟檔案</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="560"/>
+        <location filename="../UserInterface.cpp" line="553"/>
         <source>Can&apos;t open %1 because of not valid file format</source>
         <translation>格式無效,無法開啟 %1</translation>
     </message>
     <message>
-        <location filename="../UserInterface.cpp" line="648"/>
+        <location filename="../UserInterface.cpp" line="642"/>
         <source>%1 - Messages</source>
         <translation>%1 - 新聞</translation>
     </message>