string update
This commit is contained in:
		
							parent
							
								
									cff6af34ce
								
							
						
					
					
						commit
						023aa0223e
					
				
					 16 changed files with 913 additions and 897 deletions
				
			
		| 
						 | 
					@ -631,8 +631,7 @@ void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk,
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            picAreaStr = picArea;
 | 
					            picAreaStr = picArea;
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					        setWindowTitle(windowTitleStr.arg(picTitl));
 | 
				
			||||||
        this->setWindowTitle(windowTitleStr.arg(picture->getPictureStr()));
 | 
					 | 
				
			||||||
        ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, generatePlayersString(), generateCrewString(), picTitl, picAreaStr, created));
 | 
					        ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, generatePlayersString(), generateCrewString(), picTitl, picAreaStr, created));
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    else
 | 
					    else
 | 
				
			||||||
| 
						 | 
					@ -818,7 +817,7 @@ void PictureDialog::on_labPicture_mouseDoubleClicked(Qt::MouseButton button)
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
        pictureWidget->setWindowFlags(pictureWidget->windowFlags()^Qt::FramelessWindowHint^Qt::WindowStaysOnTopHint);
 | 
					        pictureWidget->setWindowFlags(pictureWidget->windowFlags()^Qt::FramelessWindowHint^Qt::WindowStaysOnTopHint);
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
        pictureWidget->setWindowTitle(this->windowTitle());
 | 
					        pictureWidget->setWindowTitle(windowTitle());
 | 
				
			||||||
        pictureWidget->setStyleSheet("QLabel#pictureLabel{background-color: black;}");
 | 
					        pictureWidget->setStyleSheet("QLabel#pictureLabel{background-color: black;}");
 | 
				
			||||||
        pictureWidget->setImage(snapmaticPicture, desktopRect);
 | 
					        pictureWidget->setImage(snapmaticPicture, desktopRect);
 | 
				
			||||||
        pictureWidget->setModal(true);
 | 
					        pictureWidget->setModal(true);
 | 
				
			||||||
| 
						 | 
					@ -993,6 +992,7 @@ void PictureDialog::updated()
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        picAreaStr = picArea;
 | 
					        picAreaStr = picArea;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    setWindowTitle(windowTitleStr.arg(picTitl));
 | 
				
			||||||
    ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, generatePlayersString(), generateCrewString(), picTitl, picAreaStr, created));
 | 
					    ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, generatePlayersString(), generateCrewString(), picTitl, picAreaStr, created));
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -11,7 +11,7 @@
 | 
				
			||||||
   </rect>
 | 
					   </rect>
 | 
				
			||||||
  </property>
 | 
					  </property>
 | 
				
			||||||
  <property name="windowTitle">
 | 
					  <property name="windowTitle">
 | 
				
			||||||
   <string>%1 - Snapmatic Picture Viewer</string>
 | 
					   <string>Snapmatic Picture Viewer - %1</string>
 | 
				
			||||||
  </property>
 | 
					  </property>
 | 
				
			||||||
  <layout class="QVBoxLayout" name="vlPictureLayout">
 | 
					  <layout class="QVBoxLayout" name="vlPictureLayout">
 | 
				
			||||||
   <property name="spacing">
 | 
					   <property name="spacing">
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -154,7 +154,7 @@ void SnapmaticWidget::on_cmdDelete_clicked()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool SnapmaticWidget::deletePicture()
 | 
					bool SnapmaticWidget::deletePicture()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    int uchoice = QMessageBox::question(this, tr("Delete picture"), tr("Are you sure to delete %1 from your Snapmatic pictures?").arg("\""+smpic->getPictureStr()+"\""), QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
 | 
					    int uchoice = QMessageBox::question(this, tr("Delete picture"), tr("Are you sure to delete %1 from your Snapmatic pictures?").arg("\""+smpic->getPictureTitle()+"\""), QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
 | 
				
			||||||
    if (uchoice == QMessageBox::Yes)
 | 
					    if (uchoice == QMessageBox::Yes)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        if (smpic->deletePicFile())
 | 
					        if (smpic->deletePicFile())
 | 
				
			||||||
| 
						 | 
					@ -163,7 +163,7 @@ bool SnapmaticWidget::deletePicture()
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        else
 | 
					        else
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            QMessageBox::warning(this, tr("Delete picture"), tr("Failed at deleting %1 from your Snapmatic pictures").arg("\""+smpic->getPictureStr()+"\""));
 | 
					            QMessageBox::warning(this, tr("Delete picture"), tr("Failed at deleting %1 from your Snapmatic pictures").arg("\""+smpic->getPictureTitle()+"\""));
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    return false;
 | 
					    return false;
 | 
				
			||||||
| 
						 | 
					@ -287,7 +287,7 @@ void SnapmaticWidget::makePictureHiddenSlot()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    if (!makePictureHidden())
 | 
					    if (!makePictureHidden())
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        QMessageBox::warning(this, QApplication::translate("UserInterface", "Hide In-game"), QApplication::translate("SnapmaticWidget", "Failed to hide %1 In-game from your Snapmatic pictures").arg("\""+smpic->getPictureStr()+"\""));
 | 
					        QMessageBox::warning(this, QApplication::translate("UserInterface", "Hide In-game"), QApplication::translate("SnapmaticWidget", "Failed to hide %1 In-game from your Snapmatic pictures").arg("\""+smpic->getPictureTitle()+"\""));
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -295,7 +295,7 @@ void SnapmaticWidget::makePictureVisibleSlot()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    if (!makePictureVisible())
 | 
					    if (!makePictureVisible())
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        QMessageBox::warning(this, QApplication::translate("UserInterface", "Show In-game"), QApplication::translate("SnapmaticWidget", "Failed to show %1 In-game from your Snapmatic pictures").arg("\""+smpic->getPictureStr()+"\""));
 | 
					        QMessageBox::warning(this, QApplication::translate("UserInterface", "Show In-game"), QApplication::translate("SnapmaticWidget", "Failed to show %1 In-game from your Snapmatic pictures").arg("\""+smpic->getPictureTitle()+"\""));
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										2
									
								
								config.h
									
										
									
									
									
								
							
							
						
						
									
										2
									
								
								config.h
									
										
									
									
									
								
							| 
						 | 
					@ -49,7 +49,7 @@
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef GTA5SYNC_APPVER
 | 
					#ifndef GTA5SYNC_APPVER
 | 
				
			||||||
#define GTA5SYNC_APPVER "1.5.0-rc3"
 | 
					#define GTA5SYNC_APPVER "1.5.0-rc4"
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifdef GTA5SYNC_BUILDTYPE_REL
 | 
					#ifdef GTA5SYNC_BUILDTYPE_REL
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -310,14 +310,14 @@ Pictures and Savegames</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="171"/>
 | 
					        <location filename="../ImportDialog.cpp" line="171"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="643"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="647"/>
 | 
				
			||||||
        <source>Custom Avatar</source>
 | 
					        <source>Custom Avatar</source>
 | 
				
			||||||
        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="197"/>
 | 
					        <location filename="../ImportDialog.cpp" line="197"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="662"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="666"/>
 | 
				
			||||||
        <source>Custom Picture</source>
 | 
					        <source>Custom Picture</source>
 | 
				
			||||||
        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
| 
						 | 
					@ -353,12 +353,12 @@ When you want to use it as Avatar the image will be detached!</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="110"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="116"/>
 | 
				
			||||||
        <source>&Save</source>
 | 
					        <source>&Save</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="117"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="129"/>
 | 
				
			||||||
        <source>&Close</source>
 | 
					        <source>&Close</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -758,7 +758,7 @@ Y: %2</source>
 | 
				
			||||||
    <name>PictureDialog</name>
 | 
					    <name>PictureDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="14"/>
 | 
					        <location filename="../PictureDialog.ui" line="14"/>
 | 
				
			||||||
        <source>%1 - Snapmatic Picture Viewer</source>
 | 
					        <source>Snapmatic Picture Viewer - %1</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
| 
						 | 
					@ -791,31 +791,31 @@ Y: %2</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="152"/>
 | 
					        <location filename="../PictureDialog.cpp" line="152"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1262"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1266"/>
 | 
				
			||||||
        <source>Export as &Picture...</source>
 | 
					        <source>Export as &Picture...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="153"/>
 | 
					        <location filename="../PictureDialog.cpp" line="153"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
				
			||||||
        <source>Export as &Snapmatic...</source>
 | 
					        <source>Export as &Snapmatic...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="156"/>
 | 
					        <location filename="../PictureDialog.cpp" line="156"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1257"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
				
			||||||
        <source>&Overwrite Image...</source>
 | 
					        <source>&Overwrite Image...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="155"/>
 | 
					        <location filename="../PictureDialog.cpp" line="155"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1256"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
				
			||||||
        <source>&Edit Properties...</source>
 | 
					        <source>&Edit Properties...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="158"/>
 | 
					        <location filename="../PictureDialog.cpp" line="158"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1259"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
				
			||||||
        <source>Open &Map Viewer...</source>
 | 
					        <source>Open &Map Viewer...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -828,36 +828,36 @@ Arrow Keys - Navigate</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Snapmatic Picture Viewer</source>
 | 
					        <source>Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="760"/>
 | 
					        <location filename="../PictureDialog.cpp" line="759"/>
 | 
				
			||||||
        <source>No Crew</source>
 | 
					        <source>No Crew</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <source>Unknown Location</source>
 | 
					        <source>Unknown Location</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="780"/>
 | 
					        <location filename="../PictureDialog.cpp" line="779"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
				
			||||||
        <source>No Players</source>
 | 
					        <source>No Players</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="726"/>
 | 
					        <location filename="../PictureDialog.cpp" line="725"/>
 | 
				
			||||||
        <source>Avatar Preview Mode
 | 
					        <source>Avatar Preview Mode
 | 
				
			||||||
Press 1 for Default View</source>
 | 
					Press 1 for Default View</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
| 
						 | 
					@ -967,7 +967,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="160"/>
 | 
					        <location filename="../PictureDialog.cpp" line="160"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
				
			||||||
        <source>Open &JSON Editor...</source>
 | 
					        <source>Open &JSON Editor...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -990,12 +990,12 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="138"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="144"/>
 | 
				
			||||||
        <source>&Apply</source>
 | 
					        <source>&Apply</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="145"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="157"/>
 | 
				
			||||||
        <source>&Cancel</source>
 | 
					        <source>&Cancel</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1076,15 +1076,15 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="155"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="159"/>
 | 
				
			||||||
        <source>Loading...</source>
 | 
					        <source>Loading...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="327"/>
 | 
					        <location filename="../ImportDialog.cpp" line="327"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="457"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="461"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="524"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="528"/>
 | 
				
			||||||
        <source>Import...</source>
 | 
					        <source>Import...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1095,252 +1095,252 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="328"/>
 | 
					        <location filename="../ImportDialog.cpp" line="328"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="458"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="462"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Import</source>
 | 
					        <source>Import</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="474"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="446"/>
 | 
					        <location filename="../UserInterface.cpp" line="454"/>
 | 
				
			||||||
        <source>GTA V Export (*.g5e)</source>
 | 
					        <source>GTA V Export (*.g5e)</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="475"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="479"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="447"/>
 | 
					        <location filename="../UserInterface.cpp" line="455"/>
 | 
				
			||||||
        <source>Savegames files (SGTA*)</source>
 | 
					        <source>Savegames files (SGTA*)</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="476"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="480"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="448"/>
 | 
					        <location filename="../UserInterface.cpp" line="456"/>
 | 
				
			||||||
        <source>Snapmatic pictures (PGTA*)</source>
 | 
					        <source>Snapmatic pictures (PGTA*)</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="473"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
				
			||||||
        <source>Importable files (%1)</source>
 | 
					        <source>Importable files (%1)</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source>Snapmatic Loader</source>
 | 
					        <source>Snapmatic Loader</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
					        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="338"/>
 | 
					        <location filename="../ImportDialog.cpp" line="338"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="481"/>
 | 
				
			||||||
        <source>All image files (%1)</source>
 | 
					        <source>All image files (%1)</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="339"/>
 | 
					        <location filename="../ImportDialog.cpp" line="339"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="482"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="449"/>
 | 
					        <location filename="../UserInterface.cpp" line="457"/>
 | 
				
			||||||
        <source>All files (**)</source>
 | 
					        <source>All files (**)</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>No valid file is selected</source>
 | 
					        <source>No valid file is selected</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="525"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="529"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="543"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="547"/>
 | 
				
			||||||
        <source>Import file %1 of %2 files</source>
 | 
					        <source>Import file %1 of %2 files</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <source>Import failed with...
 | 
					        <source>Import failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <source>Failed to read Snapmatic picture</source>
 | 
					        <source>Failed to read Snapmatic picture</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <source>Failed to read Savegame file</source>
 | 
					        <source>Failed to read Savegame file</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be open</source>
 | 
					        <source>Can't import %1 because file can't be open</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be parsed properly</source>
 | 
					        <source>Can't import %1 because file can't be parsed properly</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <source>Can't import %1 because file format can't be detected</source>
 | 
					        <source>Can't import %1 because file format can't be detected</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
					        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
					        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
					        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="954"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="958"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="972"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="976"/>
 | 
				
			||||||
        <source>JPG pictures and GTA Snapmatic</source>
 | 
					        <source>JPG pictures and GTA Snapmatic</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="955"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="959"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="977"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
				
			||||||
        <source>JPG pictures only</source>
 | 
					        <source>JPG pictures only</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="956"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="960"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="985"/>
 | 
				
			||||||
        <source>GTA Snapmatic only</source>
 | 
					        <source>GTA Snapmatic only</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
					        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="931"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="935"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1014"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1018"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <source>Export selected...</source>
 | 
					        <source>Export selected...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1015"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1019"/>
 | 
				
			||||||
        <source>Initialising export...</source>
 | 
					        <source>Initialising export...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <source>Export failed with...
 | 
					        <source>Export failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
					        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>Remove selected</source>
 | 
					        <source>Remove selected</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
					        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify as Avatar</source>
 | 
					        <source>Qualify as Avatar</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <source>No Snapmatic pictures are selected</source>
 | 
					        <source>No Snapmatic pictures are selected</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1573"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1577"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1670"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1674"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1788"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1792"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1890"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1894"/>
 | 
				
			||||||
        <source>Patch selected...</source>
 | 
					        <source>Patch selected...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1574"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1578"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1593"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1597"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1671"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1675"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1690"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1694"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1789"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1793"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1808"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1812"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1891"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1895"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1910"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1914"/>
 | 
				
			||||||
        <source>Patch file %1 of %2 files</source>
 | 
					        <source>Patch file %1 of %2 files</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>%1 failed with...
 | 
					        <source>%1 failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%2</source>
 | 
					%2</source>
 | 
				
			||||||
| 
						 | 
					@ -1348,66 +1348,66 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
					        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify</source>
 | 
					        <source>Qualify</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players...</source>
 | 
					        <source>Change Players...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players</source>
 | 
					        <source>Change Players</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew...</source>
 | 
					        <source>Change Crew...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
					        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew</source>
 | 
					        <source>Change Crew</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title...</source>
 | 
					        <source>Change Title...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic title</source>
 | 
					        <source>Failed to enter a valid Snapmatic title</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title</source>
 | 
					        <source>Change Title</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="445"/>
 | 
					        <location filename="../UserInterface.cpp" line="453"/>
 | 
				
			||||||
        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
					        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1434,7 +1434,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    <name>SavegameDialog</name>
 | 
					    <name>SavegameDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.ui" line="14"/>
 | 
					        <location filename="../SavegameDialog.ui" line="14"/>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Savegame Viewer</source>
 | 
					        <source>Savegame Viewer</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1454,7 +1454,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1503,37 +1503,37 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1298"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1299"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1300"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1304"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1307"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1314"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1631,7 +1631,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Snapmatic Properties</source>
 | 
					        <source>Snapmatic Properties</source>
 | 
				
			||||||
| 
						 | 
					@ -1766,32 +1766,32 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
					        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>Snapmatic Title</source>
 | 
					        <source>Snapmatic Title</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>New Snapmatic title:</source>
 | 
					        <source>New Snapmatic title:</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>Snapmatic Crew</source>
 | 
					        <source>Snapmatic Crew</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>New Snapmatic crew:</source>
 | 
					        <source>New Snapmatic crew:</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
| 
						 | 
					@ -1919,52 +1919,52 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1247"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1251"/>
 | 
				
			||||||
        <source>Edi&t</source>
 | 
					        <source>Edi&t</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1250"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
				
			||||||
        <source>Show &In-game</source>
 | 
					        <source>Show &In-game</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1258"/>
 | 
				
			||||||
        <source>Hide &In-game</source>
 | 
					        <source>Hide &In-game</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1265"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1268"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1271"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1269"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1270"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1274"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1281"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2079,7 +2079,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="236"/>
 | 
					        <location filename="../UserInterface.ui" line="236"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="59"/>
 | 
					        <location filename="../UserInterface.cpp" line="59"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="623"/>
 | 
					        <location filename="../UserInterface.cpp" line="631"/>
 | 
				
			||||||
        <source>&About %1</source>
 | 
					        <source>&About %1</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2135,15 +2135,15 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="319"/>
 | 
					        <location filename="../UserInterface.ui" line="319"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="233"/>
 | 
					        <location filename="../UserInterface.cpp" line="241"/>
 | 
				
			||||||
        <source>Select &GTA V Folder...</source>
 | 
					        <source>Select &GTA V Folder...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="322"/>
 | 
					        <location filename="../UserInterface.ui" line="322"/>
 | 
				
			||||||
        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
					        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="174"/>
 | 
					        <location filename="../UserInterface.cpp" line="182"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="594"/>
 | 
					        <location filename="../UserInterface.cpp" line="602"/>
 | 
				
			||||||
        <source>Select GTA V Folder...</source>
 | 
					        <source>Select GTA V Folder...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2184,39 +2184,39 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="63"/>
 | 
					        <location filename="../UserInterface.cpp" line="63"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="299"/>
 | 
					        <location filename="../UserInterface.cpp" line="307"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="631"/>
 | 
					        <location filename="../UserInterface.cpp" line="639"/>
 | 
				
			||||||
        <source>Select Profile</source>
 | 
					        <source>Select Profile</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="442"/>
 | 
					        <location filename="../UserInterface.cpp" line="450"/>
 | 
				
			||||||
        <source>Open File...</source>
 | 
					        <source>Open File...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>Open File</source>
 | 
					        <source>Open File</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <source>Can't open %1 because of not valid file format</source>
 | 
					        <source>Can't open %1 because of not valid file format</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
				
			||||||
        <source>Show In-game</source>
 | 
					        <source>Show In-game</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
				
			||||||
        <source>Hide In-game</source>
 | 
					        <source>Hide In-game</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -25,12 +25,12 @@ BEGIN
 | 
				
			||||||
        BEGIN
 | 
					        BEGIN
 | 
				
			||||||
            VALUE   "CompanyName",      "Syping"
 | 
					            VALUE   "CompanyName",      "Syping"
 | 
				
			||||||
            VALUE   "FileDescription",  "gta5view"
 | 
					            VALUE   "FileDescription",  "gta5view"
 | 
				
			||||||
            VALUE   "FileVersion",      "1.5.0-rc3"
 | 
					            VALUE   "FileVersion",      "1.5.0-rc4"
 | 
				
			||||||
            VALUE   "InternalName",     "gta5view"
 | 
					            VALUE   "InternalName",     "gta5view"
 | 
				
			||||||
            VALUE   "LegalCopyright",   "Copyright © 2016-2018 Syping"
 | 
					            VALUE   "LegalCopyright",   "Copyright © 2016-2018 Syping"
 | 
				
			||||||
            VALUE   "OriginalFilename", "gta5view.exe"
 | 
					            VALUE   "OriginalFilename", "gta5view.exe"
 | 
				
			||||||
            VALUE   "ProductName",      "gta5view"
 | 
					            VALUE   "ProductName",      "gta5view"
 | 
				
			||||||
            VALUE   "ProductVersion",   "1.5.0-rc3"
 | 
					            VALUE   "ProductVersion",   "1.5.0-rc4"
 | 
				
			||||||
        END
 | 
					        END
 | 
				
			||||||
    END
 | 
					    END
 | 
				
			||||||
END
 | 
					END
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							| 
						 | 
					@ -321,14 +321,14 @@ Grand Theft Auto V Snapmatic Bilder und Spielständen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="171"/>
 | 
					        <location filename="../ImportDialog.cpp" line="171"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="643"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="647"/>
 | 
				
			||||||
        <source>Custom Avatar</source>
 | 
					        <source>Custom Avatar</source>
 | 
				
			||||||
        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation>Eigener Avatar</translation>
 | 
					        <translation>Eigener Avatar</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="197"/>
 | 
					        <location filename="../ImportDialog.cpp" line="197"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="662"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="666"/>
 | 
				
			||||||
        <source>Custom Picture</source>
 | 
					        <source>Custom Picture</source>
 | 
				
			||||||
        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation>Eigenes Bild</translation>
 | 
					        <translation>Eigenes Bild</translation>
 | 
				
			||||||
| 
						 | 
					@ -365,12 +365,12 @@ Wenn du es als Avatar verwenden möchtest wird es abgetrennt!</translation>
 | 
				
			||||||
        <translation>Snapmatic JSON Editor</translation>
 | 
					        <translation>Snapmatic JSON Editor</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="110"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="116"/>
 | 
				
			||||||
        <source>&Save</source>
 | 
					        <source>&Save</source>
 | 
				
			||||||
        <translation>&Speichern</translation>
 | 
					        <translation>&Speichern</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="117"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="129"/>
 | 
				
			||||||
        <source>&Close</source>
 | 
					        <source>&Close</source>
 | 
				
			||||||
        <translation>S&chließen</translation>
 | 
					        <translation>S&chließen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -770,9 +770,13 @@ Y: %2</translation>
 | 
				
			||||||
<context>
 | 
					<context>
 | 
				
			||||||
    <name>PictureDialog</name>
 | 
					    <name>PictureDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="14"/>
 | 
					 | 
				
			||||||
        <source>%1 - Snapmatic Picture Viewer</source>
 | 
					        <source>%1 - Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation>%1 - Snapmatic Bildansicht</translation>
 | 
					        <translation type="vanished">%1 - Snapmatic Bildansicht</translation>
 | 
				
			||||||
 | 
					    </message>
 | 
				
			||||||
 | 
					    <message>
 | 
				
			||||||
 | 
					        <location filename="../PictureDialog.ui" line="14"/>
 | 
				
			||||||
 | 
					        <source>Snapmatic Picture Viewer - %1</source>
 | 
				
			||||||
 | 
					        <translation>Snapmatic Bildansicht - %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="117"/>
 | 
					        <location filename="../PictureDialog.ui" line="117"/>
 | 
				
			||||||
| 
						 | 
					@ -813,31 +817,31 @@ Y: %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="152"/>
 | 
					        <location filename="../PictureDialog.cpp" line="152"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1262"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1266"/>
 | 
				
			||||||
        <source>Export as &Picture...</source>
 | 
					        <source>Export as &Picture...</source>
 | 
				
			||||||
        <translation>Als &Bild exportieren...</translation>
 | 
					        <translation>Als &Bild exportieren...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="153"/>
 | 
					        <location filename="../PictureDialog.cpp" line="153"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
				
			||||||
        <source>Export as &Snapmatic...</source>
 | 
					        <source>Export as &Snapmatic...</source>
 | 
				
			||||||
        <translation>Als &Snapmatic exportieren...</translation>
 | 
					        <translation>Als &Snapmatic exportieren...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="155"/>
 | 
					        <location filename="../PictureDialog.cpp" line="155"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1256"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
				
			||||||
        <source>&Edit Properties...</source>
 | 
					        <source>&Edit Properties...</source>
 | 
				
			||||||
        <translation>Eigenschaften bearb&eiten...</translation>
 | 
					        <translation>Eigenschaften bearb&eiten...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="156"/>
 | 
					        <location filename="../PictureDialog.cpp" line="156"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1257"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
				
			||||||
        <source>&Overwrite Image...</source>
 | 
					        <source>&Overwrite Image...</source>
 | 
				
			||||||
        <translation>Bild &überschreiben...</translation>
 | 
					        <translation>Bild &überschreiben...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="158"/>
 | 
					        <location filename="../PictureDialog.cpp" line="158"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1259"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
				
			||||||
        <source>Open &Map Viewer...</source>
 | 
					        <source>Open &Map Viewer...</source>
 | 
				
			||||||
        <translation>&Kartenansicht öffnen...</translation>
 | 
					        <translation>&Kartenansicht öffnen...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -852,38 +856,38 @@ Pfeiltasten - Navigieren</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Snapmatic Picture Viewer</source>
 | 
					        <source>Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation>Snapmatic Bildansicht</translation>
 | 
					        <translation>Snapmatic Bildansicht</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim %1</translation>
 | 
					        <translation>Fehlgeschlagen beim %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="760"/>
 | 
					        <location filename="../PictureDialog.cpp" line="759"/>
 | 
				
			||||||
        <source>No Crew</source>
 | 
					        <source>No Crew</source>
 | 
				
			||||||
        <translation>Keine Crew</translation>
 | 
					        <translation>Keine Crew</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="780"/>
 | 
					        <location filename="../PictureDialog.cpp" line="779"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
				
			||||||
        <source>No Players</source>
 | 
					        <source>No Players</source>
 | 
				
			||||||
        <translation>Keine Spieler</translation>
 | 
					        <translation>Keine Spieler</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="726"/>
 | 
					        <location filename="../PictureDialog.cpp" line="725"/>
 | 
				
			||||||
        <source>Avatar Preview Mode
 | 
					        <source>Avatar Preview Mode
 | 
				
			||||||
Press 1 for Default View</source>
 | 
					Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Avatar Vorschaumodus
 | 
					        <translation>Avatar Vorschaumodus
 | 
				
			||||||
Drücke 1 für Standardmodus</translation>
 | 
					Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <source>Unknown Location</source>
 | 
					        <source>Unknown Location</source>
 | 
				
			||||||
        <translation>Unbekannter Standort</translation>
 | 
					        <translation>Unbekannter Standort</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -986,7 +990,7 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="160"/>
 | 
					        <location filename="../PictureDialog.cpp" line="160"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
				
			||||||
        <source>Open &JSON Editor...</source>
 | 
					        <source>Open &JSON Editor...</source>
 | 
				
			||||||
        <translation>&JSON Editor öffnen...</translation>
 | 
					        <translation>&JSON Editor öffnen...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1009,12 +1013,12 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>Ausgewählte Spieler:</translation>
 | 
					        <translation>Ausgewählte Spieler:</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="138"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="144"/>
 | 
				
			||||||
        <source>&Apply</source>
 | 
					        <source>&Apply</source>
 | 
				
			||||||
        <translation>&Übernehmen</translation>
 | 
					        <translation>&Übernehmen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="145"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="157"/>
 | 
				
			||||||
        <source>&Cancel</source>
 | 
					        <source>&Cancel</source>
 | 
				
			||||||
        <translation>Abbre&chen</translation>
 | 
					        <translation>Abbre&chen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1084,25 +1088,25 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>S&chließen</translation>
 | 
					        <translation>S&chließen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="155"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="159"/>
 | 
				
			||||||
        <source>Loading...</source>
 | 
					        <source>Loading...</source>
 | 
				
			||||||
        <translation>Lade...</translation>
 | 
					        <translation>Lade...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source>Snapmatic Loader</source>
 | 
					        <source>Snapmatic Loader</source>
 | 
				
			||||||
        <translation>Snapmatic Lader</translation>
 | 
					        <translation>Snapmatic Lader</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
					        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
				
			||||||
        <translation><h4>Folgende Snapmatic Bilder wurden repariert</h4>%1</translation>
 | 
					        <translation><h4>Folgende Snapmatic Bilder wurden repariert</h4>%1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="327"/>
 | 
					        <location filename="../ImportDialog.cpp" line="327"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="457"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="461"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="524"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="528"/>
 | 
				
			||||||
        <source>Import...</source>
 | 
					        <source>Import...</source>
 | 
				
			||||||
        <translation>Importieren...</translation>
 | 
					        <translation>Importieren...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1113,63 +1117,63 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="328"/>
 | 
					        <location filename="../ImportDialog.cpp" line="328"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="458"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="462"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Import</source>
 | 
					        <source>Import</source>
 | 
				
			||||||
        <translation>Importieren</translation>
 | 
					        <translation>Importieren</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="475"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="479"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="447"/>
 | 
					        <location filename="../UserInterface.cpp" line="455"/>
 | 
				
			||||||
        <source>Savegames files (SGTA*)</source>
 | 
					        <source>Savegames files (SGTA*)</source>
 | 
				
			||||||
        <translation>Spielstanddateien (SGTA*)</translation>
 | 
					        <translation>Spielstanddateien (SGTA*)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="476"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="480"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="448"/>
 | 
					        <location filename="../UserInterface.cpp" line="456"/>
 | 
				
			||||||
        <source>Snapmatic pictures (PGTA*)</source>
 | 
					        <source>Snapmatic pictures (PGTA*)</source>
 | 
				
			||||||
        <translation>Snapmatic Bilder (PGTA*)</translation>
 | 
					        <translation>Snapmatic Bilder (PGTA*)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="473"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
				
			||||||
        <source>Importable files (%1)</source>
 | 
					        <source>Importable files (%1)</source>
 | 
				
			||||||
        <translation>Importfähige Dateien (%1)</translation>
 | 
					        <translation>Importfähige Dateien (%1)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="338"/>
 | 
					        <location filename="../ImportDialog.cpp" line="338"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="481"/>
 | 
				
			||||||
        <source>All image files (%1)</source>
 | 
					        <source>All image files (%1)</source>
 | 
				
			||||||
        <translation>Alle Bilddateien (%1)</translation>
 | 
					        <translation>Alle Bilddateien (%1)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="339"/>
 | 
					        <location filename="../ImportDialog.cpp" line="339"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="482"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="449"/>
 | 
					        <location filename="../UserInterface.cpp" line="457"/>
 | 
				
			||||||
        <source>All files (**)</source>
 | 
					        <source>All files (**)</source>
 | 
				
			||||||
        <translation>Alle Dateien (**)</translation>
 | 
					        <translation>Alle Dateien (**)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="525"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="529"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="543"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="547"/>
 | 
				
			||||||
        <source>Import file %1 of %2 files</source>
 | 
					        <source>Import file %1 of %2 files</source>
 | 
				
			||||||
        <translation>Importiere Datei %1 von %2 Dateien</translation>
 | 
					        <translation>Importiere Datei %1 von %2 Dateien</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <source>Import failed with...
 | 
					        <source>Import failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
| 
						 | 
					@ -1178,60 +1182,60 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
%1</translation>
 | 
					%1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <source>Failed to read Snapmatic picture</source>
 | 
					        <source>Failed to read Snapmatic picture</source>
 | 
				
			||||||
        <translation>Fehler beim Lesen vom Snapmatic Bild</translation>
 | 
					        <translation>Fehler beim Lesen vom Snapmatic Bild</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <source>Failed to read Savegame file</source>
 | 
					        <source>Failed to read Savegame file</source>
 | 
				
			||||||
        <translation>Fehler beim Lesen von Spielstanddatei</translation>
 | 
					        <translation>Fehler beim Lesen von Spielstanddatei</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be open</source>
 | 
					        <source>Can't import %1 because file can't be open</source>
 | 
				
			||||||
        <translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
 | 
					        <translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be parsed properly</source>
 | 
					        <source>Can't import %1 because file can't be parsed properly</source>
 | 
				
			||||||
        <translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
 | 
					        <translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <source>Can't import %1 because file format can't be detected</source>
 | 
					        <source>Can't import %1 because file format can't be detected</source>
 | 
				
			||||||
        <translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
 | 
					        <translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1015"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1019"/>
 | 
				
			||||||
        <source>Initialising export...</source>
 | 
					        <source>Initialising export...</source>
 | 
				
			||||||
        <translation>Initialisiere Export...</translation>
 | 
					        <translation>Initialisiere Export...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
					        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
 | 
					        <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
					        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, dieses Bild ist bereits im Spiel</translation>
 | 
					        <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, dieses Bild ist bereits im Spiel</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
					        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
				
			||||||
        <translation>%1Exportiere Snapmatic Bilder%2<br><br>JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen<br>Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren<br><br>Exportieren als:</translation>
 | 
					        <translation>%1Exportiere Snapmatic Bilder%2<br><br>JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen<br>Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren<br><br>Exportieren als:</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>No valid file is selected</source>
 | 
					        <source>No valid file is selected</source>
 | 
				
			||||||
        <translation>Keine gültige Datei wurde ausgewählt</translation>
 | 
					        <translation>Keine gültige Datei wurde ausgewählt</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1241,86 +1245,86 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>Aktivierte Bilder: %1 von %2</translation>
 | 
					        <translation>Aktivierte Bilder: %1 von %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
 | 
					        <translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
 | 
					        <translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
					        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
 | 
					        <translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="954"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="958"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="972"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="976"/>
 | 
				
			||||||
        <source>JPG pictures and GTA Snapmatic</source>
 | 
					        <source>JPG pictures and GTA Snapmatic</source>
 | 
				
			||||||
        <translation>JPG Bilder und GTA Snapmatic</translation>
 | 
					        <translation>JPG Bilder und GTA Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="955"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="959"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="977"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
				
			||||||
        <source>JPG pictures only</source>
 | 
					        <source>JPG pictures only</source>
 | 
				
			||||||
        <translation>Nur JPG Bilder</translation>
 | 
					        <translation>Nur JPG Bilder</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="956"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="960"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="985"/>
 | 
				
			||||||
        <source>GTA Snapmatic only</source>
 | 
					        <source>GTA Snapmatic only</source>
 | 
				
			||||||
        <translation>Nur GTA Snapmatic</translation>
 | 
					        <translation>Nur GTA Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1573"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1577"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1670"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1674"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1788"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1792"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1890"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1894"/>
 | 
				
			||||||
        <source>Patch selected...</source>
 | 
					        <source>Patch selected...</source>
 | 
				
			||||||
        <translation>Auswahl patchen...</translation>
 | 
					        <translation>Auswahl patchen...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1574"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1578"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1593"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1597"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1671"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1675"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1690"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1694"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1789"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1793"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1808"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1812"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1891"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1895"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1910"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1914"/>
 | 
				
			||||||
        <source>Patch file %1 of %2 files</source>
 | 
					        <source>Patch file %1 of %2 files</source>
 | 
				
			||||||
        <translation>Patche Datei %1 von %2 Dateien</translation>
 | 
					        <translation>Patche Datei %1 von %2 Dateien</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify as Avatar</source>
 | 
					        <source>Qualify as Avatar</source>
 | 
				
			||||||
        <translation>Als Avatar qualifizieren</translation>
 | 
					        <translation>Als Avatar qualifizieren</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <source>No Snapmatic pictures are selected</source>
 | 
					        <source>No Snapmatic pictures are selected</source>
 | 
				
			||||||
        <translation>Keine Snapmatic Bilder sind ausgewählt</translation>
 | 
					        <translation>Keine Snapmatic Bilder sind ausgewählt</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
					        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
 | 
					        <translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>%1 failed with...
 | 
					        <source>%1 failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%2</source>
 | 
					%2</source>
 | 
				
			||||||
| 
						 | 
					@ -1330,88 +1334,88 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
%2</translation>
 | 
					%2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify</source>
 | 
					        <source>Qualify</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation>Qualifizieren</translation>
 | 
					        <translation>Qualifizieren</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players...</source>
 | 
					        <source>Change Players...</source>
 | 
				
			||||||
        <translation>Spieler ändern...</translation>
 | 
					        <translation>Spieler ändern...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players</source>
 | 
					        <source>Change Players</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation>Spieler ändern</translation>
 | 
					        <translation>Spieler ändern</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew...</source>
 | 
					        <source>Change Crew...</source>
 | 
				
			||||||
        <translation>Crew ändern...</translation>
 | 
					        <translation>Crew ändern...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
					        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
 | 
					        <translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew</source>
 | 
					        <source>Change Crew</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation>Crew ändern</translation>
 | 
					        <translation>Crew ändern</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title...</source>
 | 
					        <source>Change Title...</source>
 | 
				
			||||||
        <translation>Titel ändern...</translation>
 | 
					        <translation>Titel ändern...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic title</source>
 | 
					        <source>Failed to enter a valid Snapmatic title</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
 | 
					        <translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title</source>
 | 
					        <source>Change Title</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation>Titel ändern</translation>
 | 
					        <translation>Titel ändern</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
					        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
				
			||||||
        <translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
 | 
					        <translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>Remove selected</source>
 | 
					        <source>Remove selected</source>
 | 
				
			||||||
        <translation>Auswahl löschen</translation>
 | 
					        <translation>Auswahl löschen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
					        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
				
			||||||
        <translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
 | 
					        <translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="931"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="935"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1014"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1018"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <source>Export selected...</source>
 | 
					        <source>Export selected...</source>
 | 
				
			||||||
        <translation>Auswahl exportieren...</translation>
 | 
					        <translation>Auswahl exportieren...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <source>Export failed with...
 | 
					        <source>Export failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
| 
						 | 
					@ -1425,13 +1429,13 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>Exportiere Datei %1 von %2 Dateien</translation>
 | 
					        <translation>Exportiere Datei %1 von %2 Dateien</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="445"/>
 | 
					        <location filename="../UserInterface.cpp" line="453"/>
 | 
				
			||||||
        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
					        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
				
			||||||
        <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
 | 
					        <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="474"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="446"/>
 | 
					        <location filename="../UserInterface.cpp" line="454"/>
 | 
				
			||||||
        <source>GTA V Export (*.g5e)</source>
 | 
					        <source>GTA V Export (*.g5e)</source>
 | 
				
			||||||
        <translation>GTA V Export (*.g5e)</translation>
 | 
					        <translation>GTA V Export (*.g5e)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1458,7 +1462,7 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
    <name>SavegameDialog</name>
 | 
					    <name>SavegameDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.ui" line="14"/>
 | 
					        <location filename="../SavegameDialog.ui" line="14"/>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Savegame Viewer</source>
 | 
					        <source>Savegame Viewer</source>
 | 
				
			||||||
        <translation>Spielstandanzeiger</translation>
 | 
					        <translation>Spielstandanzeiger</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1478,7 +1482,7 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>S&chließen</translation>
 | 
					        <translation>S&chließen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation>Fehlgeschlagen bei %1</translation>
 | 
					        <translation>Fehlgeschlagen bei %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1565,32 +1569,32 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
 | 
					        <translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1298"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation>A&nsehen</translation>
 | 
					        <translation>A&nsehen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1300"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1304"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation>Entfe&rnen</translation>
 | 
					        <translation>Entfe&rnen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation>Au&swählen</translation>
 | 
					        <translation>Au&swählen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1307"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation>A&bwählen</translation>
 | 
					        <translation>A&bwählen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation>&Alles auswählen</translation>
 | 
					        <translation>&Alles auswählen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1314"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation>Alles a&bwählen</translation>
 | 
					        <translation>Alles a&bwählen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1605,7 +1609,7 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>Spielstand kopieren</translation>
 | 
					        <translation>Spielstand kopieren</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1299"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation>&Exportieren</translation>
 | 
					        <translation>&Exportieren</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1657,7 +1661,7 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Snapmatic Properties</source>
 | 
					        <source>Snapmatic Properties</source>
 | 
				
			||||||
| 
						 | 
					@ -1699,7 +1703,7 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>Meme</translation>
 | 
					        <translation>Meme</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>Snapmatic Title</source>
 | 
					        <source>Snapmatic Title</source>
 | 
				
			||||||
        <translation>Snapmatic Titel</translation>
 | 
					        <translation>Snapmatic Titel</translation>
 | 
				
			||||||
| 
						 | 
					@ -1798,26 +1802,26 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
					        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
				
			||||||
        <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
 | 
					        <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>New Snapmatic title:</source>
 | 
					        <source>New Snapmatic title:</source>
 | 
				
			||||||
        <translation>Neuer Snapmatic Titel:</translation>
 | 
					        <translation>Neuer Snapmatic Titel:</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>Snapmatic Crew</source>
 | 
					        <source>Snapmatic Crew</source>
 | 
				
			||||||
        <translation>Snapmatic Crew</translation>
 | 
					        <translation>Snapmatic Crew</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>New Snapmatic crew:</source>
 | 
					        <source>New Snapmatic crew:</source>
 | 
				
			||||||
        <translation>Neue Snapmatic Crew:</translation>
 | 
					        <translation>Neue Snapmatic Crew:</translation>
 | 
				
			||||||
| 
						 | 
					@ -1838,38 +1842,38 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SnapmaticPicture.cpp" line="676"/>
 | 
					        <location filename="../SnapmaticPicture.cpp" line="676"/>
 | 
				
			||||||
        <source>header not exists</source>
 | 
					        <source>header not exists</source>
 | 
				
			||||||
        <translation>Header existiert nicht</translation>
 | 
					        <translation>Header nicht existiert</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SnapmaticPicture.cpp" line="680"/>
 | 
					        <location filename="../SnapmaticPicture.cpp" line="680"/>
 | 
				
			||||||
        <source>header is malformed</source>
 | 
					        <source>header is malformed</source>
 | 
				
			||||||
        <translation>Header ist fehlerhaft</translation>
 | 
					        <translation>Header fehlerhaft ist</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SnapmaticPicture.cpp" line="684"/>
 | 
					        <location filename="../SnapmaticPicture.cpp" line="684"/>
 | 
				
			||||||
        <source>picture not exists (%1)</source>
 | 
					        <source>picture not exists (%1)</source>
 | 
				
			||||||
        <translation>Bild existiert nicht (%1)</translation>
 | 
					        <translation>Bild nicht existiert (%1)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SnapmaticPicture.cpp" line="688"/>
 | 
					        <location filename="../SnapmaticPicture.cpp" line="688"/>
 | 
				
			||||||
        <source>JSON not exists (%1)</source>
 | 
					        <source>JSON not exists (%1)</source>
 | 
				
			||||||
        <translation>JSON existiert nicht (%1)</translation>
 | 
					        <translation>JSON nicht existiert (%1)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SnapmaticPicture.cpp" line="692"/>
 | 
					        <location filename="../SnapmaticPicture.cpp" line="692"/>
 | 
				
			||||||
        <source>title not exists (%1)</source>
 | 
					        <source>title not exists (%1)</source>
 | 
				
			||||||
        <translation>Titel existiert nicht (%1)</translation>
 | 
					        <translation>Titel nicht existiert (%1)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SnapmaticPicture.cpp" line="696"/>
 | 
					        <location filename="../SnapmaticPicture.cpp" line="696"/>
 | 
				
			||||||
        <source>description not exists (%1)</source>
 | 
					        <source>description not exists (%1)</source>
 | 
				
			||||||
        <translation>Beschreibung existiert nicht (%1)</translation>
 | 
					        <translation>Beschreibung nicht existiert (%1)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SnapmaticPicture.cpp" line="710"/>
 | 
					        <location filename="../SnapmaticPicture.cpp" line="710"/>
 | 
				
			||||||
        <source>reading file %1 because of %2</source>
 | 
					        <source>reading file %1 because of %2</source>
 | 
				
			||||||
        <comment>Example for %2: JSON is malformed error</comment>
 | 
					        <comment>Example for %2: JSON is malformed error</comment>
 | 
				
			||||||
        <translation>Datei lesen %1 wegen %2</translation>
 | 
					        <translation>Datei lesen von %1 weil %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="160"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="160"/>
 | 
				
			||||||
| 
						 | 
					@ -1945,52 +1949,52 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
 | 
					        <translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1247"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1251"/>
 | 
				
			||||||
        <source>Edi&t</source>
 | 
					        <source>Edi&t</source>
 | 
				
			||||||
        <translation>Bearbei&ten</translation>
 | 
					        <translation>Bearbei&ten</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1265"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation>&Exportieren</translation>
 | 
					        <translation>&Exportieren</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1250"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
				
			||||||
        <source>Show &In-game</source>
 | 
					        <source>Show &In-game</source>
 | 
				
			||||||
        <translation>&Im Spiel anzeigen</translation>
 | 
					        <translation>&Im Spiel anzeigen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1258"/>
 | 
				
			||||||
        <source>Hide &In-game</source>
 | 
					        <source>Hide &In-game</source>
 | 
				
			||||||
        <translation>&Im Spiel ausblenden</translation>
 | 
					        <translation>&Im Spiel ausblenden</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1268"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation>A&nsehen</translation>
 | 
					        <translation>A&nsehen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1271"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation>Entfe&rnen</translation>
 | 
					        <translation>Entfe&rnen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1269"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation>Au&swählen</translation>
 | 
					        <translation>Au&swählen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1270"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1274"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation>A&bwählen</translation>
 | 
					        <translation>A&bwählen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation>Alles &auswählen</translation>
 | 
					        <translation>Alles &auswählen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1281"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation>Alles a&bwählen</translation>
 | 
					        <translation>Alles a&bwählen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2133,7 +2137,7 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="319"/>
 | 
					        <location filename="../UserInterface.ui" line="319"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="233"/>
 | 
					        <location filename="../UserInterface.cpp" line="241"/>
 | 
				
			||||||
        <source>Select &GTA V Folder...</source>
 | 
					        <source>Select &GTA V Folder...</source>
 | 
				
			||||||
        <translation>Wähle &GTA V Ordner...</translation>
 | 
					        <translation>Wähle &GTA V Ordner...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2184,21 +2188,21 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="63"/>
 | 
					        <location filename="../UserInterface.cpp" line="63"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="299"/>
 | 
					        <location filename="../UserInterface.cpp" line="307"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="631"/>
 | 
					        <location filename="../UserInterface.cpp" line="639"/>
 | 
				
			||||||
        <source>Select Profile</source>
 | 
					        <source>Select Profile</source>
 | 
				
			||||||
        <translation>Profil auswählen</translation>
 | 
					        <translation>Profil auswählen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="322"/>
 | 
					        <location filename="../UserInterface.ui" line="322"/>
 | 
				
			||||||
        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
					        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="174"/>
 | 
					        <location filename="../UserInterface.cpp" line="182"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="594"/>
 | 
					        <location filename="../UserInterface.cpp" line="602"/>
 | 
				
			||||||
        <source>Select GTA V Folder...</source>
 | 
					        <source>Select GTA V Folder...</source>
 | 
				
			||||||
        <translation>Wähle GTA V Ordner...</translation>
 | 
					        <translation>Wähle GTA V Ordner...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="442"/>
 | 
					        <location filename="../UserInterface.cpp" line="450"/>
 | 
				
			||||||
        <source>Open File...</source>
 | 
					        <source>Open File...</source>
 | 
				
			||||||
        <translation>Datei öffnen...</translation>
 | 
					        <translation>Datei öffnen...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2211,20 +2215,20 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="236"/>
 | 
					        <location filename="../UserInterface.ui" line="236"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="59"/>
 | 
					        <location filename="../UserInterface.cpp" line="59"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="623"/>
 | 
					        <location filename="../UserInterface.cpp" line="631"/>
 | 
				
			||||||
        <source>&About %1</source>
 | 
					        <source>&About %1</source>
 | 
				
			||||||
        <translation>&Über %1</translation>
 | 
					        <translation>&Über %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>Open File</source>
 | 
					        <source>Open File</source>
 | 
				
			||||||
        <translation>Datei öffnen</translation>
 | 
					        <translation>Datei öffnen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <source>Can't open %1 because of not valid file format</source>
 | 
					        <source>Can't open %1 because of not valid file format</source>
 | 
				
			||||||
        <translation>Kann nicht %1 öffnen weil Dateiformat nicht gültig ist</translation>
 | 
					        <translation>Kann nicht %1 öffnen weil Dateiformat nicht gültig ist</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2234,15 +2238,15 @@ Drücke 1 für Standardmodus</translation>
 | 
				
			||||||
        <translation>&Neuladen</translation>
 | 
					        <translation>&Neuladen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
				
			||||||
        <source>Show In-game</source>
 | 
					        <source>Show In-game</source>
 | 
				
			||||||
        <translation>Im Spiel anzeigen</translation>
 | 
					        <translation>Im Spiel anzeigen</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
				
			||||||
        <source>Hide In-game</source>
 | 
					        <source>Hide In-game</source>
 | 
				
			||||||
        <translation>Im Spiel ausblenden</translation>
 | 
					        <translation>Im Spiel ausblenden</translation>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							| 
						 | 
					@ -310,14 +310,14 @@ Pictures and Savegames</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="171"/>
 | 
					        <location filename="../ImportDialog.cpp" line="171"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="643"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="647"/>
 | 
				
			||||||
        <source>Custom Avatar</source>
 | 
					        <source>Custom Avatar</source>
 | 
				
			||||||
        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="197"/>
 | 
					        <location filename="../ImportDialog.cpp" line="197"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="662"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="666"/>
 | 
				
			||||||
        <source>Custom Picture</source>
 | 
					        <source>Custom Picture</source>
 | 
				
			||||||
        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
| 
						 | 
					@ -353,12 +353,12 @@ When you want to use it as Avatar the image will be detached!</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="110"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="116"/>
 | 
				
			||||||
        <source>&Save</source>
 | 
					        <source>&Save</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="117"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="129"/>
 | 
				
			||||||
        <source>&Close</source>
 | 
					        <source>&Close</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -758,8 +758,8 @@ Y: %2</source>
 | 
				
			||||||
    <name>PictureDialog</name>
 | 
					    <name>PictureDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="14"/>
 | 
					        <location filename="../PictureDialog.ui" line="14"/>
 | 
				
			||||||
        <source>%1 - Snapmatic Picture Viewer</source>
 | 
					        <source>Snapmatic Picture Viewer - %1</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="117"/>
 | 
					        <location filename="../PictureDialog.ui" line="117"/>
 | 
				
			||||||
| 
						 | 
					@ -791,31 +791,31 @@ Y: %2</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="152"/>
 | 
					        <location filename="../PictureDialog.cpp" line="152"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1262"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1266"/>
 | 
				
			||||||
        <source>Export as &Picture...</source>
 | 
					        <source>Export as &Picture...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="153"/>
 | 
					        <location filename="../PictureDialog.cpp" line="153"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
				
			||||||
        <source>Export as &Snapmatic...</source>
 | 
					        <source>Export as &Snapmatic...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="156"/>
 | 
					        <location filename="../PictureDialog.cpp" line="156"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1257"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
				
			||||||
        <source>&Overwrite Image...</source>
 | 
					        <source>&Overwrite Image...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="155"/>
 | 
					        <location filename="../PictureDialog.cpp" line="155"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1256"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
				
			||||||
        <source>&Edit Properties...</source>
 | 
					        <source>&Edit Properties...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="158"/>
 | 
					        <location filename="../PictureDialog.cpp" line="158"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1259"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
				
			||||||
        <source>Open &Map Viewer...</source>
 | 
					        <source>Open &Map Viewer...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -828,36 +828,36 @@ Arrow Keys - Navigate</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Snapmatic Picture Viewer</source>
 | 
					        <source>Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="780"/>
 | 
					        <location filename="../PictureDialog.cpp" line="779"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
				
			||||||
        <source>No Players</source>
 | 
					        <source>No Players</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="760"/>
 | 
					        <location filename="../PictureDialog.cpp" line="759"/>
 | 
				
			||||||
        <source>No Crew</source>
 | 
					        <source>No Crew</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <source>Unknown Location</source>
 | 
					        <source>Unknown Location</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="726"/>
 | 
					        <location filename="../PictureDialog.cpp" line="725"/>
 | 
				
			||||||
        <source>Avatar Preview Mode
 | 
					        <source>Avatar Preview Mode
 | 
				
			||||||
Press 1 for Default View</source>
 | 
					Press 1 for Default View</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
| 
						 | 
					@ -967,7 +967,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="160"/>
 | 
					        <location filename="../PictureDialog.cpp" line="160"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
				
			||||||
        <source>Open &JSON Editor...</source>
 | 
					        <source>Open &JSON Editor...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -990,12 +990,12 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="138"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="144"/>
 | 
				
			||||||
        <source>&Apply</source>
 | 
					        <source>&Apply</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="145"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="157"/>
 | 
				
			||||||
        <source>&Cancel</source>
 | 
					        <source>&Cancel</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1076,25 +1076,25 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="155"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="159"/>
 | 
				
			||||||
        <source>Loading...</source>
 | 
					        <source>Loading...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source>Snapmatic Loader</source>
 | 
					        <source>Snapmatic Loader</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
					        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="327"/>
 | 
					        <location filename="../ImportDialog.cpp" line="327"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="457"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="461"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="524"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="528"/>
 | 
				
			||||||
        <source>Import...</source>
 | 
					        <source>Import...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1105,242 +1105,242 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="328"/>
 | 
					        <location filename="../ImportDialog.cpp" line="328"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="458"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="462"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Import</source>
 | 
					        <source>Import</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="473"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
				
			||||||
        <source>Importable files (%1)</source>
 | 
					        <source>Importable files (%1)</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="474"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="446"/>
 | 
					        <location filename="../UserInterface.cpp" line="454"/>
 | 
				
			||||||
        <source>GTA V Export (*.g5e)</source>
 | 
					        <source>GTA V Export (*.g5e)</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="475"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="479"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="447"/>
 | 
					        <location filename="../UserInterface.cpp" line="455"/>
 | 
				
			||||||
        <source>Savegames files (SGTA*)</source>
 | 
					        <source>Savegames files (SGTA*)</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="476"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="480"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="448"/>
 | 
					        <location filename="../UserInterface.cpp" line="456"/>
 | 
				
			||||||
        <source>Snapmatic pictures (PGTA*)</source>
 | 
					        <source>Snapmatic pictures (PGTA*)</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="338"/>
 | 
					        <location filename="../ImportDialog.cpp" line="338"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="481"/>
 | 
				
			||||||
        <source>All image files (%1)</source>
 | 
					        <source>All image files (%1)</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="339"/>
 | 
					        <location filename="../ImportDialog.cpp" line="339"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="482"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="449"/>
 | 
					        <location filename="../UserInterface.cpp" line="457"/>
 | 
				
			||||||
        <source>All files (**)</source>
 | 
					        <source>All files (**)</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>No valid file is selected</source>
 | 
					        <source>No valid file is selected</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="525"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="529"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="543"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="547"/>
 | 
				
			||||||
        <source>Import file %1 of %2 files</source>
 | 
					        <source>Import file %1 of %2 files</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <source>Import failed with...
 | 
					        <source>Import failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <source>Failed to read Snapmatic picture</source>
 | 
					        <source>Failed to read Snapmatic picture</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <source>Failed to read Savegame file</source>
 | 
					        <source>Failed to read Savegame file</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be open</source>
 | 
					        <source>Can't import %1 because file can't be open</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be parsed properly</source>
 | 
					        <source>Can't import %1 because file can't be parsed properly</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <source>Can't import %1 because file format can't be detected</source>
 | 
					        <source>Can't import %1 because file format can't be detected</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
					        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
					        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
					        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="954"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="958"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="972"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="976"/>
 | 
				
			||||||
        <source>JPG pictures and GTA Snapmatic</source>
 | 
					        <source>JPG pictures and GTA Snapmatic</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="955"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="959"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="977"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
				
			||||||
        <source>JPG pictures only</source>
 | 
					        <source>JPG pictures only</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="956"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="960"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="985"/>
 | 
				
			||||||
        <source>GTA Snapmatic only</source>
 | 
					        <source>GTA Snapmatic only</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
					        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="931"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="935"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1014"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1018"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <source>Export selected...</source>
 | 
					        <source>Export selected...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1015"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1019"/>
 | 
				
			||||||
        <source>Initialising export...</source>
 | 
					        <source>Initialising export...</source>
 | 
				
			||||||
        <translation>Initializing export...</translation>
 | 
					        <translation>Initializing export...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <source>Export failed with...
 | 
					        <source>Export failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
					        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>Remove selected</source>
 | 
					        <source>Remove selected</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
					        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify as Avatar</source>
 | 
					        <source>Qualify as Avatar</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <source>No Snapmatic pictures are selected</source>
 | 
					        <source>No Snapmatic pictures are selected</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1573"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1577"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1670"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1674"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1788"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1792"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1890"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1894"/>
 | 
				
			||||||
        <source>Patch selected...</source>
 | 
					        <source>Patch selected...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1574"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1578"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1593"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1597"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1671"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1675"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1690"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1694"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1789"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1793"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1808"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1812"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1891"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1895"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1910"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1914"/>
 | 
				
			||||||
        <source>Patch file %1 of %2 files</source>
 | 
					        <source>Patch file %1 of %2 files</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>%1 failed with...
 | 
					        <source>%1 failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%2</source>
 | 
					%2</source>
 | 
				
			||||||
| 
						 | 
					@ -1348,66 +1348,66 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
					        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify</source>
 | 
					        <source>Qualify</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players...</source>
 | 
					        <source>Change Players...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players</source>
 | 
					        <source>Change Players</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew...</source>
 | 
					        <source>Change Crew...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
					        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew</source>
 | 
					        <source>Change Crew</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title...</source>
 | 
					        <source>Change Title...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic title</source>
 | 
					        <source>Failed to enter a valid Snapmatic title</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title</source>
 | 
					        <source>Change Title</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="445"/>
 | 
					        <location filename="../UserInterface.cpp" line="453"/>
 | 
				
			||||||
        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
					        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1434,7 +1434,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    <name>SavegameDialog</name>
 | 
					    <name>SavegameDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.ui" line="14"/>
 | 
					        <location filename="../SavegameDialog.ui" line="14"/>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Savegame Viewer</source>
 | 
					        <source>Savegame Viewer</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1454,7 +1454,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1503,37 +1503,37 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1298"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1299"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1300"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1304"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1307"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1314"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1631,7 +1631,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Snapmatic Properties</source>
 | 
					        <source>Snapmatic Properties</source>
 | 
				
			||||||
| 
						 | 
					@ -1766,32 +1766,32 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
					        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>Snapmatic Title</source>
 | 
					        <source>Snapmatic Title</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>New Snapmatic title:</source>
 | 
					        <source>New Snapmatic title:</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>Snapmatic Crew</source>
 | 
					        <source>Snapmatic Crew</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>New Snapmatic crew:</source>
 | 
					        <source>New Snapmatic crew:</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
| 
						 | 
					@ -1919,52 +1919,52 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1247"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1251"/>
 | 
				
			||||||
        <source>Edi&t</source>
 | 
					        <source>Edi&t</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1250"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
				
			||||||
        <source>Show &In-game</source>
 | 
					        <source>Show &In-game</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1258"/>
 | 
				
			||||||
        <source>Hide &In-game</source>
 | 
					        <source>Hide &In-game</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1265"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1268"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1271"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1269"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1270"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1274"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1281"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2079,7 +2079,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="236"/>
 | 
					        <location filename="../UserInterface.ui" line="236"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="59"/>
 | 
					        <location filename="../UserInterface.cpp" line="59"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="623"/>
 | 
					        <location filename="../UserInterface.cpp" line="631"/>
 | 
				
			||||||
        <source>&About %1</source>
 | 
					        <source>&About %1</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2135,15 +2135,15 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="319"/>
 | 
					        <location filename="../UserInterface.ui" line="319"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="233"/>
 | 
					        <location filename="../UserInterface.cpp" line="241"/>
 | 
				
			||||||
        <source>Select &GTA V Folder...</source>
 | 
					        <source>Select &GTA V Folder...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="322"/>
 | 
					        <location filename="../UserInterface.ui" line="322"/>
 | 
				
			||||||
        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
					        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="174"/>
 | 
					        <location filename="../UserInterface.cpp" line="182"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="594"/>
 | 
					        <location filename="../UserInterface.cpp" line="602"/>
 | 
				
			||||||
        <source>Select GTA V Folder...</source>
 | 
					        <source>Select GTA V Folder...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2184,39 +2184,39 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="63"/>
 | 
					        <location filename="../UserInterface.cpp" line="63"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="299"/>
 | 
					        <location filename="../UserInterface.cpp" line="307"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="631"/>
 | 
					        <location filename="../UserInterface.cpp" line="639"/>
 | 
				
			||||||
        <source>Select Profile</source>
 | 
					        <source>Select Profile</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="442"/>
 | 
					        <location filename="../UserInterface.cpp" line="450"/>
 | 
				
			||||||
        <source>Open File...</source>
 | 
					        <source>Open File...</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>Open File</source>
 | 
					        <source>Open File</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <source>Can't open %1 because of not valid file format</source>
 | 
					        <source>Can't open %1 because of not valid file format</source>
 | 
				
			||||||
        <translation></translation>
 | 
					        <translation></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
				
			||||||
        <source>Show In-game</source>
 | 
					        <source>Show In-game</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
				
			||||||
        <source>Hide In-game</source>
 | 
					        <source>Hide In-game</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							| 
						 | 
					@ -321,14 +321,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="171"/>
 | 
					        <location filename="../ImportDialog.cpp" line="171"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="643"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="647"/>
 | 
				
			||||||
        <source>Custom Avatar</source>
 | 
					        <source>Custom Avatar</source>
 | 
				
			||||||
        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="197"/>
 | 
					        <location filename="../ImportDialog.cpp" line="197"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="662"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="666"/>
 | 
				
			||||||
        <source>Custom Picture</source>
 | 
					        <source>Custom Picture</source>
 | 
				
			||||||
        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
| 
						 | 
					@ -364,12 +364,12 @@ When you want to use it as Avatar the image will be detached!</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="110"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="116"/>
 | 
				
			||||||
        <source>&Save</source>
 | 
					        <source>&Save</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="117"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="129"/>
 | 
				
			||||||
        <source>&Close</source>
 | 
					        <source>&Close</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -768,9 +768,13 @@ Y: %2</source>
 | 
				
			||||||
<context>
 | 
					<context>
 | 
				
			||||||
    <name>PictureDialog</name>
 | 
					    <name>PictureDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="14"/>
 | 
					 | 
				
			||||||
        <source>%1 - Snapmatic Picture Viewer</source>
 | 
					        <source>%1 - Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation>%1 - Visionneuse de photo Snapmatic</translation>
 | 
					        <translation type="vanished">%1 - Visionneuse de photo Snapmatic</translation>
 | 
				
			||||||
 | 
					    </message>
 | 
				
			||||||
 | 
					    <message>
 | 
				
			||||||
 | 
					        <location filename="../PictureDialog.ui" line="14"/>
 | 
				
			||||||
 | 
					        <source>Snapmatic Picture Viewer - %1</source>
 | 
				
			||||||
 | 
					        <translation>Visionneuse de photo Snapmatic - %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="117"/>
 | 
					        <location filename="../PictureDialog.ui" line="117"/>
 | 
				
			||||||
| 
						 | 
					@ -891,31 +895,31 @@ Y: %2</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="152"/>
 | 
					        <location filename="../PictureDialog.cpp" line="152"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1262"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1266"/>
 | 
				
			||||||
        <source>Export as &Picture...</source>
 | 
					        <source>Export as &Picture...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="153"/>
 | 
					        <location filename="../PictureDialog.cpp" line="153"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
				
			||||||
        <source>Export as &Snapmatic...</source>
 | 
					        <source>Export as &Snapmatic...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="156"/>
 | 
					        <location filename="../PictureDialog.cpp" line="156"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1257"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
				
			||||||
        <source>&Overwrite Image...</source>
 | 
					        <source>&Overwrite Image...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="155"/>
 | 
					        <location filename="../PictureDialog.cpp" line="155"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1256"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
				
			||||||
        <source>&Edit Properties...</source>
 | 
					        <source>&Edit Properties...</source>
 | 
				
			||||||
        <translation>Modifier les &propriétés...</translation>
 | 
					        <translation>Modifier les &propriétés...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="158"/>
 | 
					        <location filename="../PictureDialog.cpp" line="158"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1259"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
				
			||||||
        <source>Open &Map Viewer...</source>
 | 
					        <source>Open &Map Viewer...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -930,38 +934,38 @@ Touches fléchées - Naviguer</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Snapmatic Picture Viewer</source>
 | 
					        <source>Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation>Visionneuse de photo Snapmatic</translation>
 | 
					        <translation>Visionneuse de photo Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation>Echec de %1</translation>
 | 
					        <translation>Echec de %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="760"/>
 | 
					        <location filename="../PictureDialog.cpp" line="759"/>
 | 
				
			||||||
        <source>No Crew</source>
 | 
					        <source>No Crew</source>
 | 
				
			||||||
        <translation>Aucun crew</translation>
 | 
					        <translation>Aucun crew</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="780"/>
 | 
					        <location filename="../PictureDialog.cpp" line="779"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
				
			||||||
        <source>No Players</source>
 | 
					        <source>No Players</source>
 | 
				
			||||||
        <translation>Aucun joueurs</translation>
 | 
					        <translation>Aucun joueurs</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="726"/>
 | 
					        <location filename="../PictureDialog.cpp" line="725"/>
 | 
				
			||||||
        <source>Avatar Preview Mode
 | 
					        <source>Avatar Preview Mode
 | 
				
			||||||
Press 1 for Default View</source>
 | 
					Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Mode Aperçu Avatar
 | 
					        <translation>Mode Aperçu Avatar
 | 
				
			||||||
Appuyer sur 1 pour le mode par défaut</translation>
 | 
					Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <source>Unknown Location</source>
 | 
					        <source>Unknown Location</source>
 | 
				
			||||||
        <translation>Emplacement inconnu</translation>
 | 
					        <translation>Emplacement inconnu</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -984,7 +988,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="160"/>
 | 
					        <location filename="../PictureDialog.cpp" line="160"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
				
			||||||
        <source>Open &JSON Editor...</source>
 | 
					        <source>Open &JSON Editor...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1007,12 +1011,12 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="138"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="144"/>
 | 
				
			||||||
        <source>&Apply</source>
 | 
					        <source>&Apply</source>
 | 
				
			||||||
        <translation type="unfinished">A&ppliquer</translation>
 | 
					        <translation type="unfinished">A&ppliquer</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="145"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="157"/>
 | 
				
			||||||
        <source>&Cancel</source>
 | 
					        <source>&Cancel</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1093,25 +1097,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <translation>Photos activées : %1 sur %2</translation>
 | 
					        <translation>Photos activées : %1 sur %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="155"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="159"/>
 | 
				
			||||||
        <source>Loading...</source>
 | 
					        <source>Loading...</source>
 | 
				
			||||||
        <translation>Chargement...</translation>
 | 
					        <translation>Chargement...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source>Snapmatic Loader</source>
 | 
					        <source>Snapmatic Loader</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
					        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="327"/>
 | 
					        <location filename="../ImportDialog.cpp" line="327"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="457"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="461"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="524"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="528"/>
 | 
				
			||||||
        <source>Import...</source>
 | 
					        <source>Import...</source>
 | 
				
			||||||
        <translation>Importer...</translation>
 | 
					        <translation>Importer...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1122,58 +1126,58 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="328"/>
 | 
					        <location filename="../ImportDialog.cpp" line="328"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="458"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="462"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Import</source>
 | 
					        <source>Import</source>
 | 
				
			||||||
        <translation>Importer</translation>
 | 
					        <translation>Importer</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="475"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="479"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="447"/>
 | 
					        <location filename="../UserInterface.cpp" line="455"/>
 | 
				
			||||||
        <source>Savegames files (SGTA*)</source>
 | 
					        <source>Savegames files (SGTA*)</source>
 | 
				
			||||||
        <translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
 | 
					        <translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="476"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="480"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="448"/>
 | 
					        <location filename="../UserInterface.cpp" line="456"/>
 | 
				
			||||||
        <source>Snapmatic pictures (PGTA*)</source>
 | 
					        <source>Snapmatic pictures (PGTA*)</source>
 | 
				
			||||||
        <translation>Photos Snapmatic (PGTA*)</translation>
 | 
					        <translation>Photos Snapmatic (PGTA*)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="338"/>
 | 
					        <location filename="../ImportDialog.cpp" line="338"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="481"/>
 | 
				
			||||||
        <source>All image files (%1)</source>
 | 
					        <source>All image files (%1)</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="339"/>
 | 
					        <location filename="../ImportDialog.cpp" line="339"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="482"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="449"/>
 | 
					        <location filename="../UserInterface.cpp" line="457"/>
 | 
				
			||||||
        <source>All files (**)</source>
 | 
					        <source>All files (**)</source>
 | 
				
			||||||
        <translation>Tous les fichiers (**)</translation>
 | 
					        <translation>Tous les fichiers (**)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="525"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="529"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="543"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="547"/>
 | 
				
			||||||
        <source>Import file %1 of %2 files</source>
 | 
					        <source>Import file %1 of %2 files</source>
 | 
				
			||||||
        <translation>Importation du fichier %1 sur %2</translation>
 | 
					        <translation>Importation du fichier %1 sur %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <source>Import failed with...
 | 
					        <source>Import failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
| 
						 | 
					@ -1182,153 +1186,153 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
%1</translation>
 | 
					%1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>No valid file is selected</source>
 | 
					        <source>No valid file is selected</source>
 | 
				
			||||||
        <translation>Fichier invalide</translation>
 | 
					        <translation>Fichier invalide</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="473"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
				
			||||||
        <source>Importable files (%1)</source>
 | 
					        <source>Importable files (%1)</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <source>Failed to read Snapmatic picture</source>
 | 
					        <source>Failed to read Snapmatic picture</source>
 | 
				
			||||||
        <translation>Impossible d'ouvrir la photo Snapmatic</translation>
 | 
					        <translation>Impossible d'ouvrir la photo Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <source>Failed to read Savegame file</source>
 | 
					        <source>Failed to read Savegame file</source>
 | 
				
			||||||
        <translation>Impossible de lire le fichier de sauvegarde</translation>
 | 
					        <translation>Impossible de lire le fichier de sauvegarde</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be open</source>
 | 
					        <source>Can't import %1 because file can't be open</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be parsed properly</source>
 | 
					        <source>Can't import %1 because file can't be parsed properly</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <source>Can't import %1 because file format can't be detected</source>
 | 
					        <source>Can't import %1 because file format can't be detected</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
					        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
				
			||||||
        <translation>Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
 | 
					        <translation>Impossible d'importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
					        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
				
			||||||
        <translation>Impossible d'importer la photo Snapmatic, un fichier du même nom existe déjà</translation>
 | 
					        <translation>Impossible d'importer la photo Snapmatic, un fichier du même nom existe déjà</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
				
			||||||
        <translation>Impossible d'importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
 | 
					        <translation>Impossible d'importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
				
			||||||
        <translation>Impossible d'importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
 | 
					        <translation>Impossible d'importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
					        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
				
			||||||
        <translation>Impossible d'importer la sauvegarde, aucun emplacement libre</translation>
 | 
					        <translation>Impossible d'importer la sauvegarde, aucun emplacement libre</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="954"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="958"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="972"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="976"/>
 | 
				
			||||||
        <source>JPG pictures and GTA Snapmatic</source>
 | 
					        <source>JPG pictures and GTA Snapmatic</source>
 | 
				
			||||||
        <translation>Images JPG et GTA Snapmatic</translation>
 | 
					        <translation>Images JPG et GTA Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="955"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="959"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="977"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
				
			||||||
        <source>JPG pictures only</source>
 | 
					        <source>JPG pictures only</source>
 | 
				
			||||||
        <translation>Images JPG seulement</translation>
 | 
					        <translation>Images JPG seulement</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="956"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="960"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="985"/>
 | 
				
			||||||
        <source>GTA Snapmatic only</source>
 | 
					        <source>GTA Snapmatic only</source>
 | 
				
			||||||
        <translation>GTA Snapmatic seulement</translation>
 | 
					        <translation>GTA Snapmatic seulement</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
					        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
				
			||||||
        <translation>%1Exporter les photos Snapmatic%2<br><br>Les fichiers JPG permettent d'ouvrir les photos avec une visionneuse d'images<br>Les GTA Snapmatic permettent d'importer les photos dans le jeu<br><br>Exporter comme :</translation>
 | 
					        <translation>%1Exporter les photos Snapmatic%2<br><br>Les fichiers JPG permettent d'ouvrir les photos avec une visionneuse d'images<br>Les GTA Snapmatic permettent d'importer les photos dans le jeu<br><br>Exporter comme :</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="931"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="935"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1014"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1018"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <source>Export selected...</source>
 | 
					        <source>Export selected...</source>
 | 
				
			||||||
        <translation>Exporter la sélection...</translation>
 | 
					        <translation>Exporter la sélection...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1015"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1019"/>
 | 
				
			||||||
        <source>Initialising export...</source>
 | 
					        <source>Initialising export...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify as Avatar</source>
 | 
					        <source>Qualify as Avatar</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <source>No Snapmatic pictures are selected</source>
 | 
					        <source>No Snapmatic pictures are selected</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1573"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1577"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1670"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1674"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1788"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1792"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1890"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1894"/>
 | 
				
			||||||
        <source>Patch selected...</source>
 | 
					        <source>Patch selected...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1574"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1578"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1593"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1597"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1671"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1675"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1690"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1694"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1789"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1793"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1808"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1812"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1891"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1895"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1910"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1914"/>
 | 
				
			||||||
        <source>Patch file %1 of %2 files</source>
 | 
					        <source>Patch file %1 of %2 files</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>%1 failed with...
 | 
					        <source>%1 failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%2</source>
 | 
					%2</source>
 | 
				
			||||||
| 
						 | 
					@ -1336,66 +1340,66 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
					        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify</source>
 | 
					        <source>Qualify</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players...</source>
 | 
					        <source>Change Players...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players</source>
 | 
					        <source>Change Players</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew...</source>
 | 
					        <source>Change Crew...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
					        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew</source>
 | 
					        <source>Change Crew</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title...</source>
 | 
					        <source>Change Title...</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic title</source>
 | 
					        <source>Failed to enter a valid Snapmatic title</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title</source>
 | 
					        <source>Change Title</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <source>Export failed with...
 | 
					        <source>Export failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
| 
						 | 
					@ -1404,31 +1408,31 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
%1</translation>
 | 
					%1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
					        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
				
			||||||
        <translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
 | 
					        <translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>Remove selected</source>
 | 
					        <source>Remove selected</source>
 | 
				
			||||||
        <translation>Supprimer la sélection</translation>
 | 
					        <translation>Supprimer la sélection</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
					        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
				
			||||||
        <translation>Supprimer la sélection ?</translation>
 | 
					        <translation>Supprimer la sélection ?</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="445"/>
 | 
					        <location filename="../UserInterface.cpp" line="453"/>
 | 
				
			||||||
        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
					        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
				
			||||||
        <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
 | 
					        <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="474"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="446"/>
 | 
					        <location filename="../UserInterface.cpp" line="454"/>
 | 
				
			||||||
        <source>GTA V Export (*.g5e)</source>
 | 
					        <source>GTA V Export (*.g5e)</source>
 | 
				
			||||||
        <translation>GTA V Export (*.g5e)</translation>
 | 
					        <translation>GTA V Export (*.g5e)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1455,7 +1459,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
    <name>SavegameDialog</name>
 | 
					    <name>SavegameDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.ui" line="14"/>
 | 
					        <location filename="../SavegameDialog.ui" line="14"/>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Savegame Viewer</source>
 | 
					        <source>Savegame Viewer</source>
 | 
				
			||||||
        <translation>Gestionnaire de sauvegardes</translation>
 | 
					        <translation>Gestionnaire de sauvegardes</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1475,7 +1479,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <translation>&Fermer</translation>
 | 
					        <translation>&Fermer</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation>Échec de %1</translation>
 | 
					        <translation>Échec de %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1524,7 +1528,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <translation>Supprimer</translation>
 | 
					        <translation>Supprimer</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1299"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation>&Exporter</translation>
 | 
					        <translation>&Exporter</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1615,32 +1619,32 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <translation>Impossible de supprimer %1</translation>
 | 
					        <translation>Impossible de supprimer %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1298"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation>&Voir</translation>
 | 
					        <translation>&Voir</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1300"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1304"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation>&Supprimer</translation>
 | 
					        <translation>&Supprimer</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation>&Sélectionner</translation>
 | 
					        <translation>&Sélectionner</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1307"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation>&Déselectionner</translation>
 | 
					        <translation>&Déselectionner</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation>Sélectionner to&ut</translation>
 | 
					        <translation>Sélectionner to&ut</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1314"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation>&Déselectionner tout</translation>
 | 
					        <translation>&Déselectionner tout</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1654,7 +1658,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Snapmatic Properties</source>
 | 
					        <source>Snapmatic Properties</source>
 | 
				
			||||||
| 
						 | 
					@ -1696,7 +1700,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <translation>Meme</translation>
 | 
					        <translation>Meme</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>Snapmatic Title</source>
 | 
					        <source>Snapmatic Title</source>
 | 
				
			||||||
        <translation>Titre Snapmatic</translation>
 | 
					        <translation>Titre Snapmatic</translation>
 | 
				
			||||||
| 
						 | 
					@ -1797,26 +1801,26 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
					        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
				
			||||||
        <translation>La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie</translation>
 | 
					        <translation>La modification des propriétés Snapmatic a échoué : erreur d'entrée/sortie</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>New Snapmatic title:</source>
 | 
					        <source>New Snapmatic title:</source>
 | 
				
			||||||
        <translation>Nouveau titre Snapmatic :</translation>
 | 
					        <translation>Nouveau titre Snapmatic :</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>Snapmatic Crew</source>
 | 
					        <source>Snapmatic Crew</source>
 | 
				
			||||||
        <translation>Crew Snapmatic</translation>
 | 
					        <translation>Crew Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>New Snapmatic crew:</source>
 | 
					        <source>New Snapmatic crew:</source>
 | 
				
			||||||
        <translation>Nouveau crew Snapmatic :</translation>
 | 
					        <translation>Nouveau crew Snapmatic :</translation>
 | 
				
			||||||
| 
						 | 
					@ -1964,52 +1968,52 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1247"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1251"/>
 | 
				
			||||||
        <source>Edi&t</source>
 | 
					        <source>Edi&t</source>
 | 
				
			||||||
        <translation>Édi&ter</translation>
 | 
					        <translation>Édi&ter</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1250"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
				
			||||||
        <source>Show &In-game</source>
 | 
					        <source>Show &In-game</source>
 | 
				
			||||||
        <translation>&Visible en jeu</translation>
 | 
					        <translation>&Visible en jeu</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1258"/>
 | 
				
			||||||
        <source>Hide &In-game</source>
 | 
					        <source>Hide &In-game</source>
 | 
				
			||||||
        <translation>&Invisible en jeu</translation>
 | 
					        <translation>&Invisible en jeu</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1265"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation>&Exporter</translation>
 | 
					        <translation>&Exporter</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1268"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation>&Voir</translation>
 | 
					        <translation>&Voir</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1271"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation>S&upprimer</translation>
 | 
					        <translation>S&upprimer</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1269"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation>&Sélectionner</translation>
 | 
					        <translation>&Sélectionner</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1270"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1274"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation>&Déselectionner</translation>
 | 
					        <translation>&Déselectionner</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation>Sélectionner &tout</translation>
 | 
					        <translation>Sélectionner &tout</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1281"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation>&Déselectionner tout</translation>
 | 
					        <translation>&Déselectionner tout</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2142,15 +2146,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="319"/>
 | 
					        <location filename="../UserInterface.ui" line="319"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="233"/>
 | 
					        <location filename="../UserInterface.cpp" line="241"/>
 | 
				
			||||||
        <source>Select &GTA V Folder...</source>
 | 
					        <source>Select &GTA V Folder...</source>
 | 
				
			||||||
        <translation>Modifier l'emplacement de &GTA V...</translation>
 | 
					        <translation>Modifier l'emplacement de &GTA V...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="322"/>
 | 
					        <location filename="../UserInterface.ui" line="322"/>
 | 
				
			||||||
        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
					        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="174"/>
 | 
					        <location filename="../UserInterface.cpp" line="182"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="594"/>
 | 
					        <location filename="../UserInterface.cpp" line="602"/>
 | 
				
			||||||
        <source>Select GTA V Folder...</source>
 | 
					        <source>Select GTA V Folder...</source>
 | 
				
			||||||
        <translation>Modifier l'emplacement de GTA V...</translation>
 | 
					        <translation>Modifier l'emplacement de GTA V...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2203,45 +2207,45 @@ Appuyer sur 1 pour le mode par défaut</translation>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="236"/>
 | 
					        <location filename="../UserInterface.ui" line="236"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="59"/>
 | 
					        <location filename="../UserInterface.cpp" line="59"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="623"/>
 | 
					        <location filename="../UserInterface.cpp" line="631"/>
 | 
				
			||||||
        <source>&About %1</source>
 | 
					        <source>&About %1</source>
 | 
				
			||||||
        <translation>&À propos de %1</translation>
 | 
					        <translation>&À propos de %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="63"/>
 | 
					        <location filename="../UserInterface.cpp" line="63"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="299"/>
 | 
					        <location filename="../UserInterface.cpp" line="307"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="631"/>
 | 
					        <location filename="../UserInterface.cpp" line="639"/>
 | 
				
			||||||
        <source>Select Profile</source>
 | 
					        <source>Select Profile</source>
 | 
				
			||||||
        <translation>Sélectionner un profil</translation>
 | 
					        <translation>Sélectionner un profil</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="442"/>
 | 
					        <location filename="../UserInterface.cpp" line="450"/>
 | 
				
			||||||
        <source>Open File...</source>
 | 
					        <source>Open File...</source>
 | 
				
			||||||
        <translation>Ouvrir...</translation>
 | 
					        <translation>Ouvrir...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>Open File</source>
 | 
					        <source>Open File</source>
 | 
				
			||||||
        <translation>Ouvrir</translation>
 | 
					        <translation>Ouvrir</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <source>Can't open %1 because of not valid file format</source>
 | 
					        <source>Can't open %1 because of not valid file format</source>
 | 
				
			||||||
        <translation>Impossible d'ouvrir %1, format invalide</translation>
 | 
					        <translation>Impossible d'ouvrir %1, format invalide</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
				
			||||||
        <source>Show In-game</source>
 | 
					        <source>Show In-game</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
				
			||||||
        <source>Hide In-game</source>
 | 
					        <source>Hide In-game</source>
 | 
				
			||||||
        <translation type="unfinished"></translation>
 | 
					        <translation type="unfinished"></translation>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							| 
						 | 
					@ -325,14 +325,14 @@ Grand Theft Auto V Snapmatic картинок и сохранений</translati
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="171"/>
 | 
					        <location filename="../ImportDialog.cpp" line="171"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="643"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="647"/>
 | 
				
			||||||
        <source>Custom Avatar</source>
 | 
					        <source>Custom Avatar</source>
 | 
				
			||||||
        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Avatar Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation>Свой Аватар</translation>
 | 
					        <translation>Свой Аватар</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="197"/>
 | 
					        <location filename="../ImportDialog.cpp" line="197"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="662"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="666"/>
 | 
				
			||||||
        <source>Custom Picture</source>
 | 
					        <source>Custom Picture</source>
 | 
				
			||||||
        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
					        <comment>Custom Picture Description in SC, don't use Special Character!</comment>
 | 
				
			||||||
        <translation>Своя Картинка</translation>
 | 
					        <translation>Своя Картинка</translation>
 | 
				
			||||||
| 
						 | 
					@ -368,12 +368,12 @@ When you want to use it as Avatar the image will be detached!</source>
 | 
				
			||||||
        <translation>Редактор JSON для Snapmatic</translation>
 | 
					        <translation>Редактор JSON для Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="110"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="116"/>
 | 
				
			||||||
        <source>&Save</source>
 | 
					        <source>&Save</source>
 | 
				
			||||||
        <translation>&Сохранить</translation>
 | 
					        <translation>&Сохранить</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.ui" line="117"/>
 | 
					        <location filename="../JsonEditorDialog.ui" line="129"/>
 | 
				
			||||||
        <source>&Close</source>
 | 
					        <source>&Close</source>
 | 
				
			||||||
        <translation>&Закрыть</translation>
 | 
					        <translation>&Закрыть</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -775,9 +775,8 @@ Y: %2</translation>
 | 
				
			||||||
<context>
 | 
					<context>
 | 
				
			||||||
    <name>PictureDialog</name>
 | 
					    <name>PictureDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="14"/>
 | 
					 | 
				
			||||||
        <source>%1 - Snapmatic Picture Viewer</source>
 | 
					        <source>%1 - Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation>%1 - Просмотрщик фотографий Snapmatic</translation>
 | 
					        <translation type="vanished">%1 - Просмотрщик фотографий Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="117"/>
 | 
					        <location filename="../PictureDialog.ui" line="117"/>
 | 
				
			||||||
| 
						 | 
					@ -800,6 +799,11 @@ Y: %2</translation>
 | 
				
			||||||
        <source>Manage picture</source>
 | 
					        <source>Manage picture</source>
 | 
				
			||||||
        <translation>Настройки картинки</translation>
 | 
					        <translation>Настройки картинки</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
 | 
					    <message>
 | 
				
			||||||
 | 
					        <location filename="../PictureDialog.ui" line="14"/>
 | 
				
			||||||
 | 
					        <source>Snapmatic Picture Viewer - %1</source>
 | 
				
			||||||
 | 
					        <translation>Просмотрщик фотографий Snapmatic - %1</translation>
 | 
				
			||||||
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="199"/>
 | 
					        <location filename="../PictureDialog.ui" line="199"/>
 | 
				
			||||||
        <source>Close viewer</source>
 | 
					        <source>Close viewer</source>
 | 
				
			||||||
| 
						 | 
					@ -818,31 +822,31 @@ Y: %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="152"/>
 | 
					        <location filename="../PictureDialog.cpp" line="152"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1262"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1266"/>
 | 
				
			||||||
        <source>Export as &Picture...</source>
 | 
					        <source>Export as &Picture...</source>
 | 
				
			||||||
        <translation>Экспортировать как &картинку...</translation>
 | 
					        <translation>Экспортировать как &картинку...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="153"/>
 | 
					        <location filename="../PictureDialog.cpp" line="153"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
				
			||||||
        <source>Export as &Snapmatic...</source>
 | 
					        <source>Export as &Snapmatic...</source>
 | 
				
			||||||
        <translation>Экспортировать как &Snapmatic...</translation>
 | 
					        <translation>Экспортировать как &Snapmatic...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="156"/>
 | 
					        <location filename="../PictureDialog.cpp" line="156"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1257"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
				
			||||||
        <source>&Overwrite Image...</source>
 | 
					        <source>&Overwrite Image...</source>
 | 
				
			||||||
        <translation>&Перезаписать картинку...</translation>
 | 
					        <translation>&Перезаписать картинку...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="155"/>
 | 
					        <location filename="../PictureDialog.cpp" line="155"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1256"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
				
			||||||
        <source>&Edit Properties...</source>
 | 
					        <source>&Edit Properties...</source>
 | 
				
			||||||
        <translation>&Изменить свойства...</translation>
 | 
					        <translation>&Изменить свойства...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="158"/>
 | 
					        <location filename="../PictureDialog.cpp" line="158"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1259"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1263"/>
 | 
				
			||||||
        <source>Open &Map Viewer...</source>
 | 
					        <source>Open &Map Viewer...</source>
 | 
				
			||||||
        <translation>Открыть &карту...</translation>
 | 
					        <translation>Открыть &карту...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -857,38 +861,38 @@ Arrow Keys - Navigate</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Snapmatic Picture Viewer</source>
 | 
					        <source>Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation>Просмотрщик фотографий Snapmatic</translation>
 | 
					        <translation>Просмотрщик фотографий Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation>Ошибка при %1</translation>
 | 
					        <translation>Ошибка при %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="760"/>
 | 
					        <location filename="../PictureDialog.cpp" line="759"/>
 | 
				
			||||||
        <source>No Crew</source>
 | 
					        <source>No Crew</source>
 | 
				
			||||||
        <translation>Вне банды</translation>
 | 
					        <translation>Вне банды</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="780"/>
 | 
					        <location filename="../PictureDialog.cpp" line="779"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
				
			||||||
        <source>No Players</source>
 | 
					        <source>No Players</source>
 | 
				
			||||||
        <translation>Игроков нет</translation>
 | 
					        <translation>Игроков нет</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="726"/>
 | 
					        <location filename="../PictureDialog.cpp" line="725"/>
 | 
				
			||||||
        <source>Avatar Preview Mode
 | 
					        <source>Avatar Preview Mode
 | 
				
			||||||
Press 1 for Default View</source>
 | 
					Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Режим просмотра аватарок
 | 
					        <translation>Режим просмотра аватарок
 | 
				
			||||||
Нажмите 1 для стандартного просмотра</translation>
 | 
					Нажмите 1 для стандартного просмотра</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <source>Unknown Location</source>
 | 
					        <source>Unknown Location</source>
 | 
				
			||||||
        <translation>Неизвестное место</translation>
 | 
					        <translation>Неизвестное место</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -991,7 +995,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="160"/>
 | 
					        <location filename="../PictureDialog.cpp" line="160"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1260"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
				
			||||||
        <source>Open &JSON Editor...</source>
 | 
					        <source>Open &JSON Editor...</source>
 | 
				
			||||||
        <translation>Открыть &редактор JSON...</translation>
 | 
					        <translation>Открыть &редактор JSON...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1014,12 +1018,12 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Выбранные игроки:</translation>
 | 
					        <translation>Выбранные игроки:</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="138"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="144"/>
 | 
				
			||||||
        <source>&Apply</source>
 | 
					        <source>&Apply</source>
 | 
				
			||||||
        <translation>&Применить</translation>
 | 
					        <translation>&Применить</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PlayerListDialog.ui" line="145"/>
 | 
					        <location filename="../PlayerListDialog.ui" line="157"/>
 | 
				
			||||||
        <source>&Cancel</source>
 | 
					        <source>&Cancel</source>
 | 
				
			||||||
        <translation>&Отмена</translation>
 | 
					        <translation>&Отмена</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1088,17 +1092,17 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>&Закрыть</translation>
 | 
					        <translation>&Закрыть</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="155"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="159"/>
 | 
				
			||||||
        <source>Loading...</source>
 | 
					        <source>Loading...</source>
 | 
				
			||||||
        <translation>Загрузка...</translation>
 | 
					        <translation>Загрузка...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source>Snapmatic Loader</source>
 | 
					        <source>Snapmatic Loader</source>
 | 
				
			||||||
        <translation>Загрузчик Snapmatic</translation>
 | 
					        <translation>Загрузчик Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="384"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="388"/>
 | 
				
			||||||
        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
					        <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source>
 | 
				
			||||||
        <translatorcomment>Change wording if the %1 is not a multiline beginning at new line</translatorcomment>
 | 
					        <translatorcomment>Change wording if the %1 is not a multiline beginning at new line</translatorcomment>
 | 
				
			||||||
        <translation><h4>Нижеследующие картинки Snapmatic были восстановлены</h4>%1</translation>
 | 
					        <translation><h4>Нижеследующие картинки Snapmatic были восстановлены</h4>%1</translation>
 | 
				
			||||||
| 
						 | 
					@ -1106,8 +1110,8 @@ Press 1 for Default View</source>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="109"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="327"/>
 | 
					        <location filename="../ImportDialog.cpp" line="327"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="457"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="461"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="524"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="528"/>
 | 
				
			||||||
        <source>Import...</source>
 | 
					        <source>Import...</source>
 | 
				
			||||||
        <translation>Импортировать...</translation>
 | 
					        <translation>Импортировать...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1118,51 +1122,51 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="328"/>
 | 
					        <location filename="../ImportDialog.cpp" line="328"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="458"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="462"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Import</source>
 | 
					        <source>Import</source>
 | 
				
			||||||
        <translation>Импортировать</translation>
 | 
					        <translation>Импортировать</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="475"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="479"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="447"/>
 | 
					        <location filename="../UserInterface.cpp" line="455"/>
 | 
				
			||||||
        <source>Savegames files (SGTA*)</source>
 | 
					        <source>Savegames files (SGTA*)</source>
 | 
				
			||||||
        <translation>Файлы сохранения (SGTA*)</translation>
 | 
					        <translation>Файлы сохранения (SGTA*)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="476"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="480"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="448"/>
 | 
					        <location filename="../UserInterface.cpp" line="456"/>
 | 
				
			||||||
        <source>Snapmatic pictures (PGTA*)</source>
 | 
					        <source>Snapmatic pictures (PGTA*)</source>
 | 
				
			||||||
        <translation>Картинка Snapmatic (PGTA*)</translation>
 | 
					        <translation>Картинка Snapmatic (PGTA*)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="121"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="339"/>
 | 
					        <location filename="../ImportDialog.cpp" line="339"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="482"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="449"/>
 | 
					        <location filename="../UserInterface.cpp" line="457"/>
 | 
				
			||||||
        <source>All files (**)</source>
 | 
					        <source>All files (**)</source>
 | 
				
			||||||
        <translation>Все файлы (**)</translation>
 | 
					        <translation>Все файлы (**)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="525"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="529"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="543"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="547"/>
 | 
				
			||||||
        <source>Import file %1 of %2 files</source>
 | 
					        <source>Import file %1 of %2 files</source>
 | 
				
			||||||
        <translation>Импортируются файлы %1 из %2</translation>
 | 
					        <translation>Импортируются файлы %1 из %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="559"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="563"/>
 | 
				
			||||||
        <source>Import failed with...
 | 
					        <source>Import failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
| 
						 | 
					@ -1171,21 +1175,21 @@ Press 1 for Default View</source>
 | 
				
			||||||
%1</translation>
 | 
					%1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="579"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="583"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <source>Failed to read Snapmatic picture</source>
 | 
					        <source>Failed to read Snapmatic picture</source>
 | 
				
			||||||
        <translation>Не удалось загрузить картинку Snapmatic</translation>
 | 
					        <translation>Не удалось загрузить картинку Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="595"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="599"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <source>Failed to read Savegame file</source>
 | 
					        <source>Failed to read Savegame file</source>
 | 
				
			||||||
        <translation>Не удалось загрузить файл сохранения</translation>
 | 
					        <translation>Не удалось загрузить файл сохранения</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="503"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="507"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="796"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="800"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>No valid file is selected</source>
 | 
					        <source>No valid file is selected</source>
 | 
				
			||||||
        <translation>Выбранный файл неверен</translation>
 | 
					        <translation>Выбранный файл неверен</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1195,145 +1199,145 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Включенные картинки: %1 из %2</translation>
 | 
					        <translation>Включенные картинки: %1 из %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="473"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
				
			||||||
        <source>Importable files (%1)</source>
 | 
					        <source>Importable files (%1)</source>
 | 
				
			||||||
        <translation>Файлы для импорта (%1)</translation>
 | 
					        <translation>Файлы для импорта (%1)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="120"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="338"/>
 | 
					        <location filename="../ImportDialog.cpp" line="338"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="477"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="481"/>
 | 
				
			||||||
        <source>All image files (%1)</source>
 | 
					        <source>All image files (%1)</source>
 | 
				
			||||||
        <translation>Все файлы изображений (%1)</translation>
 | 
					        <translation>Все файлы изображений (%1)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="141"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="359"/>
 | 
					        <location filename="../ImportDialog.cpp" line="359"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="701"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="705"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be open</source>
 | 
					        <source>Can't import %1 because file can't be open</source>
 | 
				
			||||||
        <translation>Не удалось открыть %1, файл не может быть открыт</translation>
 | 
					        <translation>Не удалось открыть %1, файл не может быть открыт</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
					        <location filename="../ImageEditorDialog.cpp" line="150"/>
 | 
				
			||||||
        <location filename="../ImportDialog.cpp" line="368"/>
 | 
					        <location filename="../ImportDialog.cpp" line="368"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="711"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="715"/>
 | 
				
			||||||
        <source>Can't import %1 because file can't be parsed properly</source>
 | 
					        <source>Can't import %1 because file can't be parsed properly</source>
 | 
				
			||||||
        <translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
 | 
					        <translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="791"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="795"/>
 | 
				
			||||||
        <source>Can't import %1 because file format can't be detected</source>
 | 
					        <source>Can't import %1 because file format can't be detected</source>
 | 
				
			||||||
        <translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
 | 
					        <translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="807"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="811"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
					        <source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
 | 
				
			||||||
        <translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
 | 
					        <translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="812"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="816"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
					        <source>Failed to import the Snapmatic picture, the picture is already in the game</source>
 | 
				
			||||||
        <translation>Не удалось импортировать картинку Snapmatic, картинка уже в игре</translation>
 | 
					        <translation>Не удалось импортировать картинку Snapmatic, картинка уже в игре</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="824"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="828"/>
 | 
				
			||||||
        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Snapmatic picture, can't copy the file into profile</source>
 | 
				
			||||||
        <translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
 | 
					        <translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="861"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="865"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
					        <source>Failed to import the Savegame, can't copy the file into profile</source>
 | 
				
			||||||
        <translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
 | 
					        <translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="871"/>
 | 
				
			||||||
        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
					        <source>Failed to import the Savegame, no Savegame slot is left</source>
 | 
				
			||||||
        <translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
 | 
					        <translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="954"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="958"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="972"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="976"/>
 | 
				
			||||||
        <source>JPG pictures and GTA Snapmatic</source>
 | 
					        <source>JPG pictures and GTA Snapmatic</source>
 | 
				
			||||||
        <translation>Картинки JPG и GTA Snapmatic</translation>
 | 
					        <translation>Картинки JPG и GTA Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="955"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="959"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="977"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
				
			||||||
        <source>JPG pictures only</source>
 | 
					        <source>JPG pictures only</source>
 | 
				
			||||||
        <translation>Только картинки JPG</translation>
 | 
					        <translation>Только картинки JPG</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="956"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="960"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="981"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="985"/>
 | 
				
			||||||
        <source>GTA Snapmatic only</source>
 | 
					        <source>GTA Snapmatic only</source>
 | 
				
			||||||
        <translation>Только GTA Snapmatic</translation>
 | 
					        <translation>Только GTA Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1015"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1019"/>
 | 
				
			||||||
        <source>Initialising export...</source>
 | 
					        <source>Initialising export...</source>
 | 
				
			||||||
        <translation>Подготовка к экспорту...</translation>
 | 
					        <translation>Подготовка к экспорту...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
					        <source>No Snapmatic pictures or Savegames files are selected</source>
 | 
				
			||||||
        <translation>Не выделены ни один Snapmatic или сохранение</translation>
 | 
					        <translation>Не выделены ни один Snapmatic или сохранение</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1111"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1115"/>
 | 
				
			||||||
        <source>Remove selected</source>
 | 
					        <source>Remove selected</source>
 | 
				
			||||||
        <translation>Снять выделение</translation>
 | 
					        <translation>Снять выделение</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1077"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1081"/>
 | 
				
			||||||
        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
					        <source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
 | 
				
			||||||
        <translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
 | 
					        <translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify as Avatar</source>
 | 
					        <source>Qualify as Avatar</source>
 | 
				
			||||||
        <translation>Пометить как Аватар</translation>
 | 
					        <translation>Пометить как Аватар</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1562"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1566"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <source>No Snapmatic pictures are selected</source>
 | 
					        <source>No Snapmatic pictures are selected</source>
 | 
				
			||||||
        <translation>Не выделена ни одна картинка Snapmatic</translation>
 | 
					        <translation>Не выделена ни одна картинка Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1573"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1577"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1670"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1674"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1788"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1792"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1890"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1894"/>
 | 
				
			||||||
        <source>Patch selected...</source>
 | 
					        <source>Patch selected...</source>
 | 
				
			||||||
        <translation>Пропатчить выделенные...</translation>
 | 
					        <translation>Пропатчить выделенные...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1574"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1578"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1593"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1597"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1671"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1675"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1690"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1694"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1789"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1793"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1808"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1812"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1891"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1895"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1910"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1914"/>
 | 
				
			||||||
        <source>Patch file %1 of %2 files</source>
 | 
					        <source>Patch file %1 of %2 files</source>
 | 
				
			||||||
        <translation>Изменяется файл %1 из %2</translation>
 | 
					        <translation>Изменяется файл %1 из %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>%1 failed with...
 | 
					        <source>%1 failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%2</source>
 | 
					%2</source>
 | 
				
			||||||
| 
						 | 
					@ -1343,80 +1347,80 @@ Press 1 for Default View</source>
 | 
				
			||||||
%2</translation>
 | 
					%2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1105"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1109"/>
 | 
				
			||||||
        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
					        <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
 | 
				
			||||||
        <translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
 | 
					        <translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1627"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1631"/>
 | 
				
			||||||
        <source>Qualify</source>
 | 
					        <source>Qualify</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation>Помечание</translation>
 | 
					        <translation>Помечание</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1648"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1652"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players...</source>
 | 
					        <source>Change Players...</source>
 | 
				
			||||||
        <translation>Изменить игроков...</translation>
 | 
					        <translation>Изменить игроков...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1720"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1724"/>
 | 
				
			||||||
        <source>Change Players</source>
 | 
					        <source>Change Players</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation>Измение игроков</translation>
 | 
					        <translation>Измение игроков</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1741"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1745"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew...</source>
 | 
					        <source>Change Crew...</source>
 | 
				
			||||||
        <translation>Изменить банду...</translation>
 | 
					        <translation>Изменить банду...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1769"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1773"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
					        <source>Failed to enter a valid Snapmatic Crew ID</source>
 | 
				
			||||||
        <translation>Введённый идентификатор банды не верен</translation>
 | 
					        <translation>Введённый идентификатор банды не верен</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1838"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1842"/>
 | 
				
			||||||
        <source>Change Crew</source>
 | 
					        <source>Change Crew</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation>Изменение банды</translation>
 | 
					        <translation>Изменение банды</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1859"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1863"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title...</source>
 | 
					        <source>Change Title...</source>
 | 
				
			||||||
        <translation>Изменить заголовок...</translation>
 | 
					        <translation>Изменить заголовок...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1872"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1876"/>
 | 
				
			||||||
        <source>Failed to enter a valid Snapmatic title</source>
 | 
					        <source>Failed to enter a valid Snapmatic title</source>
 | 
				
			||||||
        <translation>Введённый заголовок не верен</translation>
 | 
					        <translation>Введённый заголовок не верен</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1937"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1941"/>
 | 
				
			||||||
        <source>Change Title</source>
 | 
					        <source>Change Title</source>
 | 
				
			||||||
        <comment>%1 failed with...</comment>
 | 
					        <comment>%1 failed with...</comment>
 | 
				
			||||||
        <translation>Изменение заголовка</translation>
 | 
					        <translation>Изменение заголовка</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
					        <source>%1Export Snapmatic pictures%2<br><br>JPG pictures make it possible to open the picture with a Image Viewer<br>GTA Snapmatic make it possible to import the picture into the game<br><br>Export as:</source>
 | 
				
			||||||
        <translation>%1Эскпортировать картинки Snapmatic%2<br><br>Картинки JPG можно открыть любым просмотрщиком<br>Картинки формата GTA Snapmatic можно снова импортировать в игру<br><br>Экспортировать как:</translation>
 | 
					        <translation>%1Эскпортировать картинки Snapmatic%2<br><br>Картинки JPG можно открыть любым просмотрщиком<br>Картинки формата GTA Snapmatic можно снова импортировать в игру<br><br>Экспортировать как:</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="931"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="935"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="969"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="973"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1014"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1018"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1069"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1073"/>
 | 
				
			||||||
        <source>Export selected...</source>
 | 
					        <source>Export selected...</source>
 | 
				
			||||||
        <translation>Экпортировать выделенное...</translation>
 | 
					        <translation>Экпортировать выделенное...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1049"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1053"/>
 | 
				
			||||||
        <source>Export failed with...
 | 
					        <source>Export failed with...
 | 
				
			||||||
 | 
					
 | 
				
			||||||
%1</source>
 | 
					%1</source>
 | 
				
			||||||
| 
						 | 
					@ -1432,13 +1436,13 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Экспортируется файл %1 из %2</translation>
 | 
					        <translation>Экспортируется файл %1 из %2</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="445"/>
 | 
					        <location filename="../UserInterface.cpp" line="453"/>
 | 
				
			||||||
        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
					        <source>All profile files (*.g5e SGTA* PGTA*)</source>
 | 
				
			||||||
        <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
 | 
					        <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="474"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="478"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="446"/>
 | 
					        <location filename="../UserInterface.cpp" line="454"/>
 | 
				
			||||||
        <source>GTA V Export (*.g5e)</source>
 | 
					        <source>GTA V Export (*.g5e)</source>
 | 
				
			||||||
        <translation>GTA V Export (*.g5e)</translation>
 | 
					        <translation>GTA V Export (*.g5e)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1465,7 +1469,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    <name>SavegameDialog</name>
 | 
					    <name>SavegameDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.ui" line="14"/>
 | 
					        <location filename="../SavegameDialog.ui" line="14"/>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Savegame Viewer</source>
 | 
					        <source>Savegame Viewer</source>
 | 
				
			||||||
        <translation>Просмотрщик сохранений</translation>
 | 
					        <translation>Просмотрщик сохранений</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1485,7 +1489,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>&Закрыть</translation>
 | 
					        <translation>&Закрыть</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../SavegameDialog.cpp" line="80"/>
 | 
					        <location filename="../SavegameDialog.cpp" line="84"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation>Ошибка при %1</translation>
 | 
					        <translation>Ошибка при %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1577,32 +1581,32 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Не удалось удалить сохранение %1</translation>
 | 
					        <translation>Не удалось удалить сохранение %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1298"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation>&Просмотр</translation>
 | 
					        <translation>&Просмотр</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1300"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1304"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation>&Удалить</translation>
 | 
					        <translation>&Удалить</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1302"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation>&Выбрать</translation>
 | 
					        <translation>&Выбрать</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1307"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation>Сн&ять выбор</translation>
 | 
					        <translation>Сн&ять выбор</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1306"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation>В&ыбрать все</translation>
 | 
					        <translation>В&ыбрать все</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1310"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1314"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation>Снять выбо&р со всех</translation>
 | 
					        <translation>Снять выбо&р со всех</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1612,7 +1616,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Копировать сохранение</translation>
 | 
					        <translation>Копировать сохранение</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1299"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1303"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation>&Экспортировать</translation>
 | 
					        <translation>&Экспортировать</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -1664,7 +1668,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Snapmatic Properties</source>
 | 
					        <source>Snapmatic Properties</source>
 | 
				
			||||||
| 
						 | 
					@ -1716,7 +1720,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Meme</translation>
 | 
					        <translation>Meme</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>Snapmatic Title</source>
 | 
					        <source>Snapmatic Title</source>
 | 
				
			||||||
        <translation>Заголовок Snapmatic</translation>
 | 
					        <translation>Заголовок Snapmatic</translation>
 | 
				
			||||||
| 
						 | 
					@ -1805,26 +1809,26 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
					        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
				
			||||||
        <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
 | 
					        <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1867"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1871"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="389"/>
 | 
				
			||||||
        <source>New Snapmatic title:</source>
 | 
					        <source>New Snapmatic title:</source>
 | 
				
			||||||
        <translation>Новый заголовок Snapmatic:</translation>
 | 
					        <translation>Новый заголовок Snapmatic:</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>Snapmatic Crew</source>
 | 
					        <source>Snapmatic Crew</source>
 | 
				
			||||||
        <translation>Банда на Snapmatic</translation>
 | 
					        <translation>Банда на Snapmatic</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1760"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1764"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="418"/>
 | 
				
			||||||
        <source>New Snapmatic crew:</source>
 | 
					        <source>New Snapmatic crew:</source>
 | 
				
			||||||
        <translation>Новая банда на Snapmatic:</translation>
 | 
					        <translation>Новая банда на Snapmatic:</translation>
 | 
				
			||||||
| 
						 | 
					@ -1962,52 +1966,52 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
 | 
					        <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1247"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1251"/>
 | 
				
			||||||
        <source>Edi&t</source>
 | 
					        <source>Edi&t</source>
 | 
				
			||||||
        <translation>&Правка</translation>
 | 
					        <translation>&Правка</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1250"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
				
			||||||
        <source>Show &In-game</source>
 | 
					        <source>Show &In-game</source>
 | 
				
			||||||
        <translation>Показывать в &игре</translation>
 | 
					        <translation>Показывать в &игре</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1254"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1258"/>
 | 
				
			||||||
        <source>Hide &In-game</source>
 | 
					        <source>Hide &In-game</source>
 | 
				
			||||||
        <translation>Ск&рыть в игре</translation>
 | 
					        <translation>Ск&рыть в игре</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1261"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1265"/>
 | 
				
			||||||
        <source>&Export</source>
 | 
					        <source>&Export</source>
 | 
				
			||||||
        <translation>&Экспорт</translation>
 | 
					        <translation>&Экспорт</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1264"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1268"/>
 | 
				
			||||||
        <source>&View</source>
 | 
					        <source>&View</source>
 | 
				
			||||||
        <translation>По&казать</translation>
 | 
					        <translation>По&казать</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1267"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1271"/>
 | 
				
			||||||
        <source>&Remove</source>
 | 
					        <source>&Remove</source>
 | 
				
			||||||
        <translation>У&далить</translation>
 | 
					        <translation>У&далить</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1269"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
				
			||||||
        <source>&Select</source>
 | 
					        <source>&Select</source>
 | 
				
			||||||
        <translation>&Выделить</translation>
 | 
					        <translation>&Выделить</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1270"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1274"/>
 | 
				
			||||||
        <source>&Deselect</source>
 | 
					        <source>&Deselect</source>
 | 
				
			||||||
        <translation>Сн&ять выделение</translation>
 | 
					        <translation>Сн&ять выделение</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1273"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
				
			||||||
        <source>Select &All</source>
 | 
					        <source>Select &All</source>
 | 
				
			||||||
        <translation>В&ыбрать все</translation>
 | 
					        <translation>В&ыбрать все</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1277"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1281"/>
 | 
				
			||||||
        <source>&Deselect All</source>
 | 
					        <source>&Deselect All</source>
 | 
				
			||||||
        <translation>Снять выбо&р со всех</translation>
 | 
					        <translation>Снять выбо&р со всех</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2115,7 +2119,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="319"/>
 | 
					        <location filename="../UserInterface.ui" line="319"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="233"/>
 | 
					        <location filename="../UserInterface.cpp" line="241"/>
 | 
				
			||||||
        <source>Select &GTA V Folder...</source>
 | 
					        <source>Select &GTA V Folder...</source>
 | 
				
			||||||
        <translation>Выбрать &папку GTA V...</translation>
 | 
					        <translation>Выбрать &папку GTA V...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2191,16 +2195,16 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="63"/>
 | 
					        <location filename="../UserInterface.cpp" line="63"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="299"/>
 | 
					        <location filename="../UserInterface.cpp" line="307"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="631"/>
 | 
					        <location filename="../UserInterface.cpp" line="639"/>
 | 
				
			||||||
        <source>Select Profile</source>
 | 
					        <source>Select Profile</source>
 | 
				
			||||||
        <translation>Выбор профиля</translation>
 | 
					        <translation>Выбор профиля</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="322"/>
 | 
					        <location filename="../UserInterface.ui" line="322"/>
 | 
				
			||||||
        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
					        <location filename="../OptionsDialog.cpp" line="634"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="174"/>
 | 
					        <location filename="../UserInterface.cpp" line="182"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="594"/>
 | 
					        <location filename="../UserInterface.cpp" line="602"/>
 | 
				
			||||||
        <source>Select GTA V Folder...</source>
 | 
					        <source>Select GTA V Folder...</source>
 | 
				
			||||||
        <translation>Выбрать папку GTA V...</translation>
 | 
					        <translation>Выбрать папку GTA V...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2213,25 +2217,25 @@ Press 1 for Default View</source>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.ui" line="236"/>
 | 
					        <location filename="../UserInterface.ui" line="236"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="59"/>
 | 
					        <location filename="../UserInterface.cpp" line="59"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="623"/>
 | 
					        <location filename="../UserInterface.cpp" line="631"/>
 | 
				
			||||||
        <source>&About %1</source>
 | 
					        <source>&About %1</source>
 | 
				
			||||||
        <translation>&О программе %1</translation>
 | 
					        <translation>&О программе %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="442"/>
 | 
					        <location filename="../UserInterface.cpp" line="450"/>
 | 
				
			||||||
        <source>Open File...</source>
 | 
					        <source>Open File...</source>
 | 
				
			||||||
        <translation>Открыть файл...</translation>
 | 
					        <translation>Открыть файл...</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="489"/>
 | 
					        <location filename="../UserInterface.cpp" line="497"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="505"/>
 | 
					        <location filename="../UserInterface.cpp" line="513"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="537"/>
 | 
					        <location filename="../UserInterface.cpp" line="545"/>
 | 
				
			||||||
        <source>Open File</source>
 | 
					        <source>Open File</source>
 | 
				
			||||||
        <translation>Открыть файл</translation>
 | 
					        <translation>Открыть файл</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../UserInterface.cpp" line="532"/>
 | 
					        <location filename="../UserInterface.cpp" line="540"/>
 | 
				
			||||||
        <source>Can't open %1 because of not valid file format</source>
 | 
					        <source>Can't open %1 because of not valid file format</source>
 | 
				
			||||||
        <translation>Не удалось открыть %1 из-за неверного формата файла</translation>
 | 
					        <translation>Не удалось открыть %1 из-за неверного формата файла</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -2241,15 +2245,15 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <translation>Пере&загрузить</translation>
 | 
					        <translation>Пере&загрузить</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1177"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1181"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1191"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1195"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="298"/>
 | 
				
			||||||
        <source>Show In-game</source>
 | 
					        <source>Show In-game</source>
 | 
				
			||||||
        <translation>Показывать в игре</translation>
 | 
					        <translation>Показывать в игре</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1211"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1215"/>
 | 
				
			||||||
        <location filename="../ProfileInterface.cpp" line="1225"/>
 | 
					        <location filename="../ProfileInterface.cpp" line="1229"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="290"/>
 | 
				
			||||||
        <source>Hide In-game</source>
 | 
					        <source>Hide In-game</source>
 | 
				
			||||||
        <translation>Скрыть в игре</translation>
 | 
					        <translation>Скрыть в игре</translation>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
										
											Binary file not shown.
										
									
								
							| 
						 | 
					@ -71,37 +71,37 @@ Pictures and Savegames</source>
 | 
				
			||||||
        <translation>%1 使用 <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a> 授權條款發布</translation>
 | 
					        <translation>%1 使用 <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a> 授權條款發布</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../config.h" line="56"/>
 | 
					        <location filename="../config.h" line="57"/>
 | 
				
			||||||
        <source>Release</source>
 | 
					        <source>Release</source>
 | 
				
			||||||
        <translation>正式版本</translation>
 | 
					        <translation>正式版本</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../config.h" line="62"/>
 | 
					        <location filename="../config.h" line="63"/>
 | 
				
			||||||
        <source>Release Candidate</source>
 | 
					        <source>Release Candidate</source>
 | 
				
			||||||
        <translation>最終發布版本</translation>
 | 
					        <translation>最終發布版本</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../config.h" line="68"/>
 | 
					        <location filename="../config.h" line="69"/>
 | 
				
			||||||
        <source>Daily Build</source>
 | 
					        <source>Daily Build</source>
 | 
				
			||||||
        <translation>每日建置版本</translation>
 | 
					        <translation>每日建置版本</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../config.h" line="74"/>
 | 
					        <location filename="../config.h" line="75"/>
 | 
				
			||||||
        <source>Developer</source>
 | 
					        <source>Developer</source>
 | 
				
			||||||
        <translation>開發版本</translation>
 | 
					        <translation>開發版本</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../config.h" line="80"/>
 | 
					        <location filename="../config.h" line="81"/>
 | 
				
			||||||
        <source>Beta</source>
 | 
					        <source>Beta</source>
 | 
				
			||||||
        <translation>Beta 版本</translation>
 | 
					        <translation>Beta 版本</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../config.h" line="86"/>
 | 
					        <location filename="../config.h" line="87"/>
 | 
				
			||||||
        <source>Alpha</source>
 | 
					        <source>Alpha</source>
 | 
				
			||||||
        <translation>Alpha 版本</translation>
 | 
					        <translation>Alpha 版本</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../config.h" line="91"/>
 | 
					        <location filename="../config.h" line="92"/>
 | 
				
			||||||
        <source>Custom</source>
 | 
					        <source>Custom</source>
 | 
				
			||||||
        <translation>自訂</translation>
 | 
					        <translation>自訂</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
| 
						 | 
					@ -767,9 +767,13 @@ Y: %2</translation>
 | 
				
			||||||
<context>
 | 
					<context>
 | 
				
			||||||
    <name>PictureDialog</name>
 | 
					    <name>PictureDialog</name>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="14"/>
 | 
					 | 
				
			||||||
        <source>%1 - Snapmatic Picture Viewer</source>
 | 
					        <source>%1 - Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation>%1 - Snapmatic 圖片檢視器</translation>
 | 
					        <translation type="vanished">%1 - Snapmatic 圖片檢視器</translation>
 | 
				
			||||||
 | 
					    </message>
 | 
				
			||||||
 | 
					    <message>
 | 
				
			||||||
 | 
					        <location filename="../PictureDialog.ui" line="14"/>
 | 
				
			||||||
 | 
					        <source>Snapmatic Picture Viewer - %1</source>
 | 
				
			||||||
 | 
					        <translation>Snapmatic 圖片檢視器 - %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.ui" line="117"/>
 | 
					        <location filename="../PictureDialog.ui" line="117"/>
 | 
				
			||||||
| 
						 | 
					@ -849,36 +853,36 @@ Arrow Keys - Navigate</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Snapmatic Picture Viewer</source>
 | 
					        <source>Snapmatic Picture Viewer</source>
 | 
				
			||||||
        <translation>Snapmatic 圖片檢視器</translation>
 | 
					        <translation>Snapmatic 圖片檢視器</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="614"/>
 | 
					        <location filename="../PictureDialog.cpp" line="614"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="641"/>
 | 
					        <location filename="../PictureDialog.cpp" line="640"/>
 | 
				
			||||||
        <source>Failed at %1</source>
 | 
					        <source>Failed at %1</source>
 | 
				
			||||||
        <translation>失敗: %1</translation>
 | 
					        <translation>失敗: %1</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="780"/>
 | 
					        <location filename="../PictureDialog.cpp" line="779"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="239"/>
 | 
				
			||||||
        <source>No Players</source>
 | 
					        <source>No Players</source>
 | 
				
			||||||
        <translation>無</translation>
 | 
					        <translation>無</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="760"/>
 | 
					        <location filename="../PictureDialog.cpp" line="759"/>
 | 
				
			||||||
        <source>No Crew</source>
 | 
					        <source>No Crew</source>
 | 
				
			||||||
        <translation>無</translation>
 | 
					        <translation>無</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="640"/>
 | 
					        <location filename="../PictureDialog.cpp" line="639"/>
 | 
				
			||||||
        <source>Unknown Location</source>
 | 
					        <source>Unknown Location</source>
 | 
				
			||||||
        <translation>未知地點</translation>
 | 
					        <translation>未知地點</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="726"/>
 | 
					        <location filename="../PictureDialog.cpp" line="725"/>
 | 
				
			||||||
        <source>Avatar Preview Mode
 | 
					        <source>Avatar Preview Mode
 | 
				
			||||||
Press 1 for Default View</source>
 | 
					Press 1 for Default View</source>
 | 
				
			||||||
        <translation>大頭貼預覽模式
 | 
					        <translation>大頭貼預覽模式
 | 
				
			||||||
| 
						 | 
					@ -1651,7 +1655,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="174"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="192"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Snapmatic Properties</source>
 | 
					        <source>Snapmatic Properties</source>
 | 
				
			||||||
| 
						 | 
					@ -1734,7 +1738,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
					        <location filename="../JsonEditorDialog.cpp" line="180"/>
 | 
				
			||||||
        <location filename="../PictureDialog.cpp" line="903"/>
 | 
					        <location filename="../PictureDialog.cpp" line="902"/>
 | 
				
			||||||
        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
					        <location filename="../SnapmaticEditor.cpp" line="326"/>
 | 
				
			||||||
        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
					        <location filename="../SnapmaticWidget.cpp" line="357"/>
 | 
				
			||||||
        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
					        <source>Patching of Snapmatic Properties failed because of I/O Error</source>
 | 
				
			||||||
| 
						 | 
					@ -2029,7 +2033,7 @@ Press 1 for Default View</source>
 | 
				
			||||||
    <message>
 | 
					    <message>
 | 
				
			||||||
        <location filename="../main.cpp" line="178"/>
 | 
					        <location filename="../main.cpp" line="178"/>
 | 
				
			||||||
        <source>&OK</source>
 | 
					        <source>&OK</source>
 | 
				
			||||||
        <translation>OK(&O)</translation>
 | 
					        <translation>確定(&O)</translation>
 | 
				
			||||||
    </message>
 | 
					    </message>
 | 
				
			||||||
</context>
 | 
					</context>
 | 
				
			||||||
<context>
 | 
					<context>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue