add clipboard import
This commit is contained in:
		
							parent
							
								
									06a8657423
								
							
						
					
					
						commit
						3b305fb809
					
				
					 10 changed files with 1148 additions and 972 deletions
				
			
		|  | @ -169,6 +169,10 @@ void DatabaseThread::scanCrewReference(const QStringList &crewList, const int &r | ||||||
|                     emit crewNameFound(crewID.toInt(), crewName); |                     emit crewNameFound(crewID.toInt(), crewName); | ||||||
|                 } |                 } | ||||||
|             } |             } | ||||||
|  |             else | ||||||
|  |             { | ||||||
|  |                 netReply->abort(); | ||||||
|  |             } | ||||||
| 
 | 
 | ||||||
|             if (threadRunning) |             if (threadRunning) | ||||||
|             { |             { | ||||||
|  |  | ||||||
|  | @ -29,11 +29,15 @@ | ||||||
| #include "ProfileLoader.h" | #include "ProfileLoader.h" | ||||||
| #include "ExportThread.h" | #include "ExportThread.h" | ||||||
| #include "ImportDialog.h" | #include "ImportDialog.h" | ||||||
|  | #include "UiModLabel.h" | ||||||
| #include "pcg_basic.h" | #include "pcg_basic.h" | ||||||
| #include "AppEnv.h" | #include "AppEnv.h" | ||||||
| #include "config.h" | #include "config.h" | ||||||
|  | #include <QNetworkAccessManager> | ||||||
| #include <QProgressDialog> | #include <QProgressDialog> | ||||||
|  | #include <QNetworkRequest> | ||||||
| #include <QStringBuilder> | #include <QStringBuilder> | ||||||
|  | #include <QNetworkReply> | ||||||
| #include <QImageReader> | #include <QImageReader> | ||||||
| #include <QProgressBar> | #include <QProgressBar> | ||||||
| #include <QInputDialog> | #include <QInputDialog> | ||||||
|  | @ -42,8 +46,10 @@ | ||||||
| #include <QMessageBox> | #include <QMessageBox> | ||||||
| #include <QMouseEvent> | #include <QMouseEvent> | ||||||
| #include <QFileDialog> | #include <QFileDialog> | ||||||
|  | #include <QVBoxLayout> | ||||||
| #include <QEventLoop> | #include <QEventLoop> | ||||||
| #include <QScrollBar> | #include <QScrollBar> | ||||||
|  | #include <QClipboard> | ||||||
| #include <QFileInfo> | #include <QFileInfo> | ||||||
| #include <QPalette> | #include <QPalette> | ||||||
| #include <QPainter> | #include <QPainter> | ||||||
|  | @ -710,19 +716,19 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime | ||||||
|                         delete picture; |                         delete picture; | ||||||
|                         return false; |                         return false; | ||||||
|                     } |                     } | ||||||
|                     QImage *importImage = new QImage(); |                     QImage *snapmaticImage = new QImage(); | ||||||
|                     QImageReader snapmaticImageReader; |                     QImageReader snapmaticImageReader; | ||||||
|                     snapmaticImageReader.setDecideFormatFromContent(true); |                     snapmaticImageReader.setDecideFormatFromContent(true); | ||||||
|                     snapmaticImageReader.setDevice(&snapmaticFile); |                     snapmaticImageReader.setDevice(&snapmaticFile); | ||||||
|                     if (!snapmaticImageReader.read(importImage)) |                     if (!snapmaticImageReader.read(snapmaticImage)) | ||||||
|                     { |                     { | ||||||
|                         QMessageBox::warning(this, tr("Import"), tr("Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\"")); |                         QMessageBox::warning(this, tr("Import"), tr("Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\"")); | ||||||
|                         delete importImage; |                         delete snapmaticImage; | ||||||
|                         delete picture; |                         delete picture; | ||||||
|                         return false; |                         return false; | ||||||
|                     } |                     } | ||||||
|                     ImportDialog *importDialog = new ImportDialog(this); |                     ImportDialog *importDialog = new ImportDialog(this); | ||||||
|                     importDialog->setImage(importImage); |                     importDialog->setImage(snapmaticImage); | ||||||
|                     importDialog->setModal(true); |                     importDialog->setModal(true); | ||||||
|                     importDialog->show(); |                     importDialog->show(); | ||||||
|                     importDialog->exec(); |                     importDialog->exec(); | ||||||
|  | @ -804,6 +810,60 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime | ||||||
|     return false; |     return false; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | bool ProfileInterface::importImage(QImage *snapmaticImage, QDateTime importDateTime) | ||||||
|  | { | ||||||
|  |     SnapmaticPicture *picture = new SnapmaticPicture(":/template/template.g5e"); | ||||||
|  |     if (picture->readingPicture(true, false, true, false)) | ||||||
|  |     { | ||||||
|  |         bool success = false; | ||||||
|  |         ImportDialog *importDialog = new ImportDialog(this); | ||||||
|  |         importDialog->setImage(snapmaticImage); | ||||||
|  |         importDialog->setModal(true); | ||||||
|  |         importDialog->show(); | ||||||
|  |         importDialog->exec(); | ||||||
|  |         if (importDialog->isImportAgreed()) | ||||||
|  |         { | ||||||
|  |             if (picture->setImage(importDialog->image())) | ||||||
|  |             { | ||||||
|  |                 SnapmaticProperties spJson = picture->getSnapmaticProperties(); | ||||||
|  |                 spJson.uid = getRandomUid(); | ||||||
|  |                 bool fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(spJson.uid)); | ||||||
|  |                 bool fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(spJson.uid) % ".bak"); | ||||||
|  |                 bool fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(spJson.uid) % ".hidden"); | ||||||
|  |                 int cEnough = 0; | ||||||
|  |                 while ((fExists || fExistsBackup || fExistsHidden) && cEnough < findRetryLimit) | ||||||
|  |                 { | ||||||
|  |                     spJson.uid = getRandomUid(); | ||||||
|  |                     fExists = QFile::exists(profileFolder % "/PGTA5" % QString::number(spJson.uid)); | ||||||
|  |                     fExistsBackup = QFile::exists(profileFolder % "/PGTA5" % QString::number(spJson.uid) % ".bak"); | ||||||
|  |                     fExistsHidden = QFile::exists(profileFolder % "/PGTA5" % QString::number(spJson.uid) % ".hidden"); | ||||||
|  |                     cEnough++; | ||||||
|  |                 } | ||||||
|  |                 spJson.createdDateTime = importDateTime; | ||||||
|  |                 spJson.createdTimestamp = spJson.createdDateTime.toTime_t(); | ||||||
|  |                 picture->setSnapmaticProperties(spJson); | ||||||
|  |                 picture->setPicFileName(QString("PGTA5%1").arg(QString::number(spJson.uid))); | ||||||
|  |                 picture->setPictureTitle(importDialog->getImageTitle()); | ||||||
|  |                 picture->updateStrings(); | ||||||
|  |                 success = importSnapmaticPicture(picture, true); | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |         else | ||||||
|  |         { | ||||||
|  |             delete picture; | ||||||
|  |             success = true; | ||||||
|  |         } | ||||||
|  |         delete importDialog; | ||||||
|  |         if (!success) delete picture; | ||||||
|  |         return success; | ||||||
|  |     } | ||||||
|  |     else | ||||||
|  |     { | ||||||
|  |         delete picture; | ||||||
|  |         return false; | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | 
 | ||||||
| bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool warn) | bool ProfileInterface::importSnapmaticPicture(SnapmaticPicture *picture, bool warn) | ||||||
| { | { | ||||||
|     QString picFileName = picture->getPictureFileName(); |     QString picFileName = picture->getPictureFileName(); | ||||||
|  | @ -1337,7 +1397,6 @@ void ProfileInterface::on_saProfileContent_dropped(const QMimeData *mimeData) | ||||||
|     if (pathList.length() == 1) |     if (pathList.length() == 1) | ||||||
|     { |     { | ||||||
|         QString selectedFile = pathList.at(0); |         QString selectedFile = pathList.at(0); | ||||||
|         QDateTime importDateTime = QDateTime::currentDateTime(); |  | ||||||
|         importFile(selectedFile, QDateTime::currentDateTime(), true); |         importFile(selectedFile, QDateTime::currentDateTime(), true); | ||||||
|     } |     } | ||||||
|     else if (pathList.length() > 1) |     else if (pathList.length() > 1) | ||||||
|  | @ -1354,7 +1413,83 @@ void ProfileInterface::retranslateUi() | ||||||
| 
 | 
 | ||||||
| bool ProfileInterface::eventFilter(QObject *watched, QEvent *event) | bool ProfileInterface::eventFilter(QObject *watched, QEvent *event) | ||||||
| { | { | ||||||
|     if (event->type() == QEvent::MouseMove) |     if (event->type() == QEvent::KeyPress) | ||||||
|  |     { | ||||||
|  |         if (isProfileLoaded) | ||||||
|  |         { | ||||||
|  |             QKeyEvent *keyEvent = dynamic_cast<QKeyEvent*>(event); | ||||||
|  |             switch (keyEvent->key()) | ||||||
|  |             { | ||||||
|  |             case Qt::Key_V: | ||||||
|  |                 if (QApplication::keyboardModifiers().testFlag(Qt::ControlModifier) && !QApplication::keyboardModifiers().testFlag(Qt::ShiftModifier)) | ||||||
|  |                 { | ||||||
|  |                     QImage clipboardImage = QApplication::clipboard()->image(); | ||||||
|  |                     if (!clipboardImage.isNull()) | ||||||
|  |                     { | ||||||
|  |                         QImage *snapmaticImage = new QImage(clipboardImage); | ||||||
|  |                         importImage(snapmaticImage, QDateTime::currentDateTime()); | ||||||
|  |                     } | ||||||
|  |                     QUrl clipboardUrl = QUrl::fromUserInput(QApplication::clipboard()->text()); | ||||||
|  |                     if (clipboardUrl.isValid()) | ||||||
|  |                     { | ||||||
|  |                         QDialog urlPasteDialog(this); | ||||||
|  |                         urlPasteDialog.setObjectName(QStringLiteral("UrlPasteDialog")); | ||||||
|  |                         urlPasteDialog.setWindowFlags(urlPasteDialog.windowFlags()^Qt::WindowContextHelpButtonHint^Qt::WindowCloseButtonHint); | ||||||
|  |                         urlPasteDialog.setWindowTitle(tr("Import...")); | ||||||
|  |                         urlPasteDialog.setModal(true); | ||||||
|  |                         QVBoxLayout urlPasteLayout(&urlPasteDialog); | ||||||
|  |                         urlPasteLayout.setObjectName(QStringLiteral("UrlPasteLayout")); | ||||||
|  |                         urlPasteDialog.setLayout(&urlPasteLayout); | ||||||
|  |                         UiModLabel urlPasteLabel(&urlPasteDialog); | ||||||
|  |                         urlPasteLabel.setObjectName("UrlPasteLabel"); | ||||||
|  |                         urlPasteLabel.setText(tr("Prepare Content for Import...")); | ||||||
|  |                         urlPasteLayout.addWidget(&urlPasteLabel); | ||||||
|  |                         urlPasteDialog.setFixedSize(urlPasteDialog.sizeHint()); | ||||||
|  |                         urlPasteDialog.show(); | ||||||
|  | 
 | ||||||
|  |                         QNetworkAccessManager *netManager = new QNetworkAccessManager(); | ||||||
|  |                         QNetworkRequest netRequest(clipboardUrl); | ||||||
|  |                         netRequest.setRawHeader("User-Agent", AppEnv::getUserAgent()); | ||||||
|  |                         netRequest.setRawHeader("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"); | ||||||
|  |                         netRequest.setRawHeader("Accept-Language", "en-US;q=0.5,en;q=0.3"); | ||||||
|  |                         netRequest.setRawHeader("Connection", "keep-alive"); | ||||||
|  |                         QNetworkReply *netReply = netManager->get(netRequest); | ||||||
|  |                         QEventLoop *downloadLoop = new QEventLoop(); | ||||||
|  |                         QObject::connect(netReply, SIGNAL(finished()), downloadLoop, SLOT(quit())); | ||||||
|  |                         QTimer::singleShot(30000, downloadLoop, SLOT(quit())); | ||||||
|  |                         downloadLoop->exec(); | ||||||
|  |                         downloadLoop->disconnect(); | ||||||
|  |                         delete downloadLoop; | ||||||
|  | 
 | ||||||
|  |                         urlPasteDialog.close(); | ||||||
|  | 
 | ||||||
|  |                         if (netReply->isFinished()) | ||||||
|  |                         { | ||||||
|  |                             QImage *snapmaticImage = new QImage(); | ||||||
|  |                             QImageReader snapmaticImageReader; | ||||||
|  |                             snapmaticImageReader.setDecideFormatFromContent(true); | ||||||
|  |                             snapmaticImageReader.setDevice(netReply); | ||||||
|  |                             if (snapmaticImageReader.read(snapmaticImage)) | ||||||
|  |                             { | ||||||
|  |                                 importImage(snapmaticImage, QDateTime::currentDateTime()); | ||||||
|  |                             } | ||||||
|  |                             else | ||||||
|  |                             { | ||||||
|  |                                 delete snapmaticImage; | ||||||
|  |                             } | ||||||
|  |                         } | ||||||
|  |                         else | ||||||
|  |                         { | ||||||
|  |                             netReply->abort(); | ||||||
|  |                         } | ||||||
|  |                         delete netReply; | ||||||
|  |                         delete netManager; | ||||||
|  |                     } | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |         } | ||||||
|  |     } | ||||||
|  |     else if (event->type() == QEvent::MouseMove) | ||||||
|     { |     { | ||||||
|         if ((watched->objectName() == "SavegameWidget" || watched->objectName() == "SnapmaticWidget") && isProfileLoaded) |         if ((watched->objectName() == "SavegameWidget" || watched->objectName() == "SnapmaticWidget") && isProfileLoaded) | ||||||
|         { |         { | ||||||
|  |  | ||||||
|  | @ -116,6 +116,7 @@ private: | ||||||
| 
 | 
 | ||||||
|     bool isSupportedImageFile(QString selectedFileName); |     bool isSupportedImageFile(QString selectedFileName); | ||||||
|     bool importFile(QString selectedFile, QDateTime importDateTime, bool notMultiple); |     bool importFile(QString selectedFile, QDateTime importDateTime, bool notMultiple); | ||||||
|  |     bool importImage(QImage *snapmaticImage, QDateTime importDateTime); | ||||||
|     void importFilesProgress(QStringList selectedFiles); |     void importFilesProgress(QStringList selectedFiles); | ||||||
|     bool importSnapmaticPicture(SnapmaticPicture *picture, bool warn = true); |     bool importSnapmaticPicture(SnapmaticPicture *picture, bool warn = true); | ||||||
|     bool importSavegameData(SavegameData *savegame, QString sgdPath, bool warn = true); |     bool importSavegameData(SavegameData *savegame, QString sgdPath, bool warn = true); | ||||||
|  |  | ||||||
										
											Binary file not shown.
										
									
								
							|  | @ -66,37 +66,37 @@ Snapmatic Bilder und Spielständen</translation> | ||||||
|         <translation>%1 ist lizenziert unter <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></translation>
 |         <translation>%1 ist lizenziert unter <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="49"/> |         <location filename="../config.h" line="53"/> | ||||||
|         <source>Release</source> |         <source>Release</source> | ||||||
|         <translation>Release</translation> |         <translation>Release</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="55"/> |         <location filename="../config.h" line="59"/> | ||||||
|         <source>Release Candidate</source> |         <source>Release Candidate</source> | ||||||
|         <translation>Release Candidate</translation> |         <translation>Release Candidate</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="61"/> |         <location filename="../config.h" line="65"/> | ||||||
|         <source>Daily Build</source> |         <source>Daily Build</source> | ||||||
|         <translation>Daily Build</translation> |         <translation>Daily Build</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="67"/> |         <location filename="../config.h" line="71"/> | ||||||
|         <source>Developer</source> |         <source>Developer</source> | ||||||
|         <translation>Entwickler</translation> |         <translation>Entwickler</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="73"/> |         <location filename="../config.h" line="77"/> | ||||||
|         <source>Beta</source> |         <source>Beta</source> | ||||||
|         <translation>Beta</translation> |         <translation>Beta</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="79"/> |         <location filename="../config.h" line="83"/> | ||||||
|         <source>Alpha</source> |         <source>Alpha</source> | ||||||
|         <translation>Alpha</translation> |         <translation>Alpha</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="84"/> |         <location filename="../config.h" line="88"/> | ||||||
|         <source>Custom</source> |         <source>Custom</source> | ||||||
|         <translation>Eigener</translation> |         <translation>Eigener</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -314,14 +314,14 @@ Snapmatic Bilder und Spielständen</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImportDialog.cpp" line="172"/> |         <location filename="../ImportDialog.cpp" line="172"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="648"/> |         <location filename="../ProfileInterface.cpp" line="658"/> | ||||||
|         <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="198"/> |         <location filename="../ImportDialog.cpp" line="198"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="667"/> |         <location filename="../ProfileInterface.cpp" line="677"/> | ||||||
|         <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> | ||||||
|  | @ -780,31 +780,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="1267"/> |         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||||
|         <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="1268"/> |         <location filename="../ProfileInterface.cpp" line="1329"/> | ||||||
|         <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="1261"/> |         <location filename="../ProfileInterface.cpp" line="1322"/> | ||||||
|         <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="1262"/> |         <location filename="../ProfileInterface.cpp" line="1323"/> | ||||||
|         <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="1264"/> |         <location filename="../ProfileInterface.cpp" line="1325"/> | ||||||
|         <source>Open &Map Viewer...</source> |         <source>Open &Map Viewer...</source> | ||||||
|         <translation>&Kartenansicht öffnen...</translation> |         <translation>&Kartenansicht öffnen...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -953,7 +953,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="1265"/> |         <location filename="../ProfileInterface.cpp" line="1326"/> | ||||||
|         <source>Open &JSON Editor...</source> |         <source>Open &JSON Editor...</source> | ||||||
|         <translation>&JSON Editor öffnen...</translation> |         <translation>&JSON Editor öffnen...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1051,25 +1051,26 @@ 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="160"/> |         <location filename="../ProfileInterface.cpp" line="172"/> | ||||||
|         <source>Loading...</source> |         <source>Loading...</source> | ||||||
|         <translation>Lade...</translation> |         <translation>Lade...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <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="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <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="110"/> |         <location filename="../ImageEditorDialog.cpp" line="110"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="328"/> |         <location filename="../ImportDialog.cpp" line="328"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="462"/> |         <location filename="../ProfileInterface.cpp" line="474"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="529"/> |         <location filename="../ProfileInterface.cpp" line="540"/> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1438"/> | ||||||
|         <source>Import...</source> |         <source>Import...</source> | ||||||
|         <translation>Importieren...</translation> |         <translation>Importieren...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1080,63 +1081,63 @@ Drücke 1 für Standardmodus</translation> | ||||||
|         <location filename="../ImportDialog.cpp" line="329"/> |         <location filename="../ImportDialog.cpp" line="329"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="463"/> |         <location filename="../ProfileInterface.cpp" line="475"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <source>Import</source> |         <source>Import</source> | ||||||
|         <translation>Importieren</translation> |         <translation>Importieren</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="480"/> |         <location filename="../ProfileInterface.cpp" line="492"/> | ||||||
|         <location filename="../UserInterface.cpp" line="455"/> |         <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="481"/> |         <location filename="../ProfileInterface.cpp" line="493"/> | ||||||
|         <location filename="../UserInterface.cpp" line="456"/> |         <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="478"/> |         <location filename="../ProfileInterface.cpp" line="490"/> | ||||||
|         <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="121"/> |         <location filename="../ImageEditorDialog.cpp" line="121"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="339"/> |         <location filename="../ImportDialog.cpp" line="339"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="482"/> |         <location filename="../ProfileInterface.cpp" line="494"/> | ||||||
|         <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="122"/> |         <location filename="../ImageEditorDialog.cpp" line="122"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="340"/> |         <location filename="../ImportDialog.cpp" line="340"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="483"/> |         <location filename="../ProfileInterface.cpp" line="495"/> | ||||||
|         <location filename="../UserInterface.cpp" line="457"/> |         <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="530"/> |         <location filename="../ProfileInterface.cpp" line="541"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="548"/> |         <location filename="../ProfileInterface.cpp" line="558"/> | ||||||
|         <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="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <source>Import failed with... |         <source>Import failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|  | @ -1145,13 +1146,13 @@ Drücke 1 für Standardmodus</translation> | ||||||
| %1</translation> | %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../UserInterface.cpp" line="497"/> |         <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="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../UserInterface.cpp" line="513"/> |         <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> | ||||||
|  | @ -1159,135 +1160,135 @@ Drücke 1 für Standardmodus</translation> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="142"/> |         <location filename="../ImageEditorDialog.cpp" line="142"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <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="151"/> |         <location filename="../ImageEditorDialog.cpp" line="151"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <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="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <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="1020"/> |         <location filename="../ProfileInterface.cpp" line="1081"/> | ||||||
|         <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="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <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="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <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="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <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="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../UserInterface.cpp" line="545"/> |         <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> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="70"/> |         <location filename="../ProfileInterface.cpp" line="79"/> | ||||||
|         <source>Enabled pictures: %1 of %2</source> |         <source>Enabled pictures: %1 of %2</source> | ||||||
|         <translation>Aktivierte Bilder: %1 von %2</translation> |         <translation>Aktivierte Bilder: %1 von %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <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="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <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="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <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="959"/> |         <location filename="../ProfileInterface.cpp" line="1020"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="977"/> |         <location filename="../ProfileInterface.cpp" line="1038"/> | ||||||
|         <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="960"/> |         <location filename="../ProfileInterface.cpp" line="1021"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="982"/> |         <location filename="../ProfileInterface.cpp" line="1043"/> | ||||||
|         <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="961"/> |         <location filename="../ProfileInterface.cpp" line="1022"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="986"/> |         <location filename="../ProfileInterface.cpp" line="1047"/> | ||||||
|         <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="1578"/> |         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1675"/> |         <location filename="../ProfileInterface.cpp" line="1810"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1793"/> |         <location filename="../ProfileInterface.cpp" line="1928"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1895"/> |         <location filename="../ProfileInterface.cpp" line="2030"/> | ||||||
|         <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="1579"/> |         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1598"/> |         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> |         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> |         <location filename="../ProfileInterface.cpp" line="1830"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> |         <location filename="../ProfileInterface.cpp" line="1929"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1813"/> |         <location filename="../ProfileInterface.cpp" line="1948"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1896"/> |         <location filename="../ProfileInterface.cpp" line="2031"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1915"/> |         <location filename="../ProfileInterface.cpp" line="2050"/> | ||||||
|         <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="1567"/> |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <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="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1567"/> |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <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="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <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="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>%1 failed with... |         <source>%1 failed with... | ||||||
| 
 | 
 | ||||||
| %2</source> | %2</source> | ||||||
|  | @ -1297,88 +1298,93 @@ Drücke 1 für Standardmodus</translation> | ||||||
| %2</translation> | %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1445"/> | ||||||
|  |         <source>Prepare Content for Import...</source> | ||||||
|  |         <translation>Bereite Inhalt für Import vor...</translation> | ||||||
|  |     </message> | ||||||
|  |     <message> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <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="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <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="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <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="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <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="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <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="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <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="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <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="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <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="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <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="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <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="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <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="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <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="936"/> |         <location filename="../ProfileInterface.cpp" line="997"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1019"/> |         <location filename="../ProfileInterface.cpp" line="1080"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <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="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <source>Export failed with... |         <source>Export failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|  | @ -1397,7 +1403,7 @@ Drücke 1 für Standardmodus</translation> | ||||||
|         <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation> |         <translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="479"/> |         <location filename="../ProfileInterface.cpp" line="491"/> | ||||||
|         <location filename="../UserInterface.cpp" line="454"/> |         <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> | ||||||
|  | @ -1406,17 +1412,17 @@ Drücke 1 für Standardmodus</translation> | ||||||
| <context> | <context> | ||||||
|     <name>QApplication</name> |     <name>QApplication</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Font</source> |         <source>Font</source> | ||||||
|         <translation>Schrift</translation> |         <translation>Schrift</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Selected Font: %1</source> |         <source>Selected Font: %1</source> | ||||||
|         <translation>Ausgewähle Schrift: %1</translation> |         <translation>Ausgewähle Schrift: %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="127"/> |         <location filename="../main.cpp" line="128"/> | ||||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> |         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||||
|         <translation><h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt?</translation> |         <translation><h4>Willkommen zu %1!</h4>Möchtest du %1 einstellen bevor du es nutzt?</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1532,32 +1538,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="1303"/> |         <location filename="../ProfileInterface.cpp" line="1364"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>A&nsehen</translation> |         <translation>A&nsehen</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1305"/> |         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>Entfe&rnen</translation> |         <translation>Entfe&rnen</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1307"/> |         <location filename="../ProfileInterface.cpp" line="1368"/> | ||||||
|         <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="1308"/> |         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||||
|         <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="1311"/> |         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||||
|         <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="1315"/> |         <location filename="../ProfileInterface.cpp" line="1376"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>Alles a&bwählen</translation> |         <translation>Alles a&bwählen</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1572,7 +1578,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="1304"/> |         <location filename="../ProfileInterface.cpp" line="1365"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>&Exportieren</translation> |         <translation>&Exportieren</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1666,7 +1672,7 @@ Drücke 1 für Standardmodus</translation> | ||||||
|         <translation>Meme</translation> |         <translation>Meme</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <source>Snapmatic Title</source> |         <source>Snapmatic Title</source> | ||||||
|         <translation>Snapmatic Titel</translation> |         <translation>Snapmatic Titel</translation> | ||||||
|  | @ -1772,19 +1778,19 @@ Drücke 1 für Standardmodus</translation> | ||||||
|         <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation> |         <translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <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="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <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="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>New Snapmatic crew:</source> |         <source>New Snapmatic crew:</source> | ||||||
|         <translation>Neue Snapmatic Crew:</translation> |         <translation>Neue Snapmatic Crew:</translation> | ||||||
|  | @ -1793,66 +1799,66 @@ Drücke 1 für Standardmodus</translation> | ||||||
| <context> | <context> | ||||||
|     <name>SnapmaticPicture</name> |     <name>SnapmaticPicture</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="440"/> |         <location filename="../SnapmaticPicture.cpp" line="466"/> | ||||||
|         <source>PHOTO - %1</source> |         <source>PHOTO - %1</source> | ||||||
|         <translation>FOTO - %1</translation> |         <translation>FOTO - %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="660"/> |         <location filename="../SnapmaticPicture.cpp" line="687"/> | ||||||
|         <source>open file %1</source> |         <source>open file %1</source> | ||||||
|         <translation>Datei öffnen %1</translation> |         <translation>Datei öffnen %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="676"/> |         <location filename="../SnapmaticPicture.cpp" line="703"/> | ||||||
|         <source>header not exists</source> |         <source>header not exists</source> | ||||||
|         <translation>Header nicht existiert</translation> |         <translation>Header nicht existiert</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="680"/> |         <location filename="../SnapmaticPicture.cpp" line="707"/> | ||||||
|         <source>header is malformed</source> |         <source>header is malformed</source> | ||||||
|         <translation>Header fehlerhaft ist</translation> |         <translation>Header fehlerhaft ist</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="684"/> |         <location filename="../SnapmaticPicture.cpp" line="711"/> | ||||||
|         <source>picture not exists (%1)</source> |         <source>picture not exists (%1)</source> | ||||||
|         <translation>Bild nicht existiert (%1)</translation> |         <translation>Bild nicht existiert (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="688"/> |         <location filename="../SnapmaticPicture.cpp" line="715"/> | ||||||
|         <source>JSON not exists (%1)</source> |         <source>JSON not exists (%1)</source> | ||||||
|         <translation>JSON nicht existiert (%1)</translation> |         <translation>JSON nicht existiert (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="692"/> |         <location filename="../SnapmaticPicture.cpp" line="719"/> | ||||||
|         <source>title not exists (%1)</source> |         <source>title not exists (%1)</source> | ||||||
|         <translation>Titel nicht existiert (%1)</translation> |         <translation>Titel nicht existiert (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="696"/> |         <location filename="../SnapmaticPicture.cpp" line="723"/> | ||||||
|         <source>description not exists (%1)</source> |         <source>description not exists (%1)</source> | ||||||
|         <translation>Beschreibung nicht existiert (%1)</translation> |         <translation>Beschreibung nicht existiert (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="710"/> |         <location filename="../SnapmaticPicture.cpp" line="737"/> | ||||||
|         <source>reading file %1 because of %2</source> |         <source>reading file %1 because of %2</source> | ||||||
|         <comment>Example for %2: JSON is malformed error</comment> |         <comment>Example for %2: JSON is malformed error</comment> | ||||||
|         <translation>Datei lesen von %1 weil %2</translation> |         <translation>Datei lesen von %1 weil %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="161"/> |         <location filename="../JsonEditorDialog.cpp" line="161"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="700"/> |         <location filename="../SnapmaticPicture.cpp" line="727"/> | ||||||
|         <source>JSON is incomplete and malformed</source> |         <source>JSON is incomplete and malformed</source> | ||||||
|         <translation>JSON ist unvollständig und Fehlerhaft</translation> |         <translation>JSON ist unvollständig und Fehlerhaft</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="165"/> |         <location filename="../JsonEditorDialog.cpp" line="165"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="704"/> |         <location filename="../SnapmaticPicture.cpp" line="731"/> | ||||||
|         <source>JSON is incomplete</source> |         <source>JSON is incomplete</source> | ||||||
|         <translation>JSON ist unvollständig</translation> |         <translation>JSON ist unvollständig</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="169"/> |         <location filename="../JsonEditorDialog.cpp" line="169"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="708"/> |         <location filename="../SnapmaticPicture.cpp" line="735"/> | ||||||
|         <source>JSON is malformed</source> |         <source>JSON is malformed</source> | ||||||
|         <translation>JSON ist Fehlerhaft</translation> |         <translation>JSON ist Fehlerhaft</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1912,52 +1918,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="1252"/> |         <location filename="../ProfileInterface.cpp" line="1313"/> | ||||||
|         <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="1266"/> |         <location filename="../ProfileInterface.cpp" line="1327"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>&Exportieren</translation> |         <translation>&Exportieren</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1255"/> |         <location filename="../ProfileInterface.cpp" line="1316"/> | ||||||
|         <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="1259"/> |         <location filename="../ProfileInterface.cpp" line="1320"/> | ||||||
|         <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="1269"/> |         <location filename="../ProfileInterface.cpp" line="1330"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>A&nsehen</translation> |         <translation>A&nsehen</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1272"/> |         <location filename="../ProfileInterface.cpp" line="1333"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>Entfe&rnen</translation> |         <translation>Entfe&rnen</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1274"/> |         <location filename="../ProfileInterface.cpp" line="1335"/> | ||||||
|         <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="1275"/> |         <location filename="../ProfileInterface.cpp" line="1336"/> | ||||||
|         <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="1278"/> |         <location filename="../ProfileInterface.cpp" line="1339"/> | ||||||
|         <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="1282"/> |         <location filename="../ProfileInterface.cpp" line="1343"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>Alles a&bwählen</translation> |         <translation>Alles a&bwählen</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1985,22 +1991,22 @@ Drücke 1 für Standardmodus</translation> | ||||||
| <context> | <context> | ||||||
|     <name>TelemetryDialog</name> |     <name>TelemetryDialog</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="157"/> |         <location filename="../main.cpp" line="158"/> | ||||||
|         <source>%1 User Statistics</source> |         <source>%1 User Statistics</source> | ||||||
|         <translation>%1 Benutzerstatistik</translation> |         <translation>%1 Benutzerstatistik</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="156"/> |         <location filename="../main.cpp" line="157"/> | ||||||
|         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> |         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> | ||||||
|         <translation>Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen?</translation> |         <translation>Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen?</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="161"/> |         <location filename="../main.cpp" line="162"/> | ||||||
|         <source>Yes, I want include personal usage data.</source> |         <source>Yes, I want include personal usage data.</source> | ||||||
|         <translation>Ja, ich möchte Persönliche Nutzungsdaten einbeziehen.</translation> |         <translation>Ja, ich möchte Persönliche Nutzungsdaten einbeziehen.</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="170"/> |         <location filename="../main.cpp" line="171"/> | ||||||
|         <source>&OK</source> |         <source>&OK</source> | ||||||
|         <translation>&OK</translation> |         <translation>&OK</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -2201,15 +2207,15 @@ Drücke 1 für Standardmodus</translation> | ||||||
|         <translation>&Neuladen</translation> |         <translation>&Neuladen</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <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="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <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> | ||||||
|  |  | ||||||
|  | @ -56,37 +56,37 @@ Pictures and Savegames</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="49"/> |         <location filename="../config.h" line="53"/> | ||||||
|         <source>Release</source> |         <source>Release</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="55"/> |         <location filename="../config.h" line="59"/> | ||||||
|         <source>Release Candidate</source> |         <source>Release Candidate</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="61"/> |         <location filename="../config.h" line="65"/> | ||||||
|         <source>Daily Build</source> |         <source>Daily Build</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="67"/> |         <location filename="../config.h" line="71"/> | ||||||
|         <source>Developer</source> |         <source>Developer</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="73"/> |         <location filename="../config.h" line="77"/> | ||||||
|         <source>Beta</source> |         <source>Beta</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="79"/> |         <location filename="../config.h" line="83"/> | ||||||
|         <source>Alpha</source> |         <source>Alpha</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="84"/> |         <location filename="../config.h" line="88"/> | ||||||
|         <source>Custom</source> |         <source>Custom</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -304,14 +304,14 @@ Pictures and Savegames</source> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImportDialog.cpp" line="172"/> |         <location filename="../ImportDialog.cpp" line="172"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="648"/> |         <location filename="../ProfileInterface.cpp" line="658"/> | ||||||
|         <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="198"/> |         <location filename="../ImportDialog.cpp" line="198"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="667"/> |         <location filename="../ProfileInterface.cpp" line="677"/> | ||||||
|         <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> | ||||||
|  | @ -759,31 +759,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="1267"/> |         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||||
|         <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="1268"/> |         <location filename="../ProfileInterface.cpp" line="1329"/> | ||||||
|         <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="1262"/> |         <location filename="../ProfileInterface.cpp" line="1323"/> | ||||||
|         <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="1261"/> |         <location filename="../ProfileInterface.cpp" line="1322"/> | ||||||
|         <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="1264"/> |         <location filename="../ProfileInterface.cpp" line="1325"/> | ||||||
|         <source>Open &Map Viewer...</source> |         <source>Open &Map Viewer...</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -935,7 +935,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="1265"/> |         <location filename="../ProfileInterface.cpp" line="1326"/> | ||||||
|         <source>Open &JSON Editor...</source> |         <source>Open &JSON Editor...</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1039,30 +1039,31 @@ Press 1 for Default View</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="70"/> |         <location filename="../ProfileInterface.cpp" line="79"/> | ||||||
|         <source>Enabled pictures: %1 of %2</source> |         <source>Enabled pictures: %1 of %2</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="160"/> |         <location filename="../ProfileInterface.cpp" line="172"/> | ||||||
|         <source>Loading...</source> |         <source>Loading...</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <source>Snapmatic Loader</source> |         <source>Snapmatic Loader</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <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="110"/> |         <location filename="../ImageEditorDialog.cpp" line="110"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="328"/> |         <location filename="../ImportDialog.cpp" line="328"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="462"/> |         <location filename="../ProfileInterface.cpp" line="474"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="529"/> |         <location filename="../ProfileInterface.cpp" line="540"/> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1438"/> | ||||||
|         <source>Import...</source> |         <source>Import...</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1073,42 +1074,42 @@ Press 1 for Default View</source> | ||||||
|         <location filename="../ImportDialog.cpp" line="329"/> |         <location filename="../ImportDialog.cpp" line="329"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="463"/> |         <location filename="../ProfileInterface.cpp" line="475"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <source>Import</source> |         <source>Import</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="478"/> |         <location filename="../ProfileInterface.cpp" line="490"/> | ||||||
|         <source>Importable files (%1)</source> |         <source>Importable files (%1)</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="479"/> |         <location filename="../ProfileInterface.cpp" line="491"/> | ||||||
|         <location filename="../UserInterface.cpp" line="454"/> |         <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="480"/> |         <location filename="../ProfileInterface.cpp" line="492"/> | ||||||
|         <location filename="../UserInterface.cpp" line="455"/> |         <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="481"/> |         <location filename="../ProfileInterface.cpp" line="493"/> | ||||||
|         <location filename="../UserInterface.cpp" line="456"/> |         <location filename="../UserInterface.cpp" line="456"/> | ||||||
|         <source>Snapmatic pictures (PGTA*)</source> |         <source>Snapmatic pictures (PGTA*)</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|  | @ -1116,46 +1117,46 @@ Press 1 for Default View</source> | ||||||
|     <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="482"/> |         <location filename="../ProfileInterface.cpp" line="494"/> | ||||||
|         <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="122"/> |         <location filename="../ImageEditorDialog.cpp" line="122"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="340"/> |         <location filename="../ImportDialog.cpp" line="340"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="483"/> |         <location filename="../ProfileInterface.cpp" line="495"/> | ||||||
|         <location filename="../UserInterface.cpp" line="457"/> |         <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="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../UserInterface.cpp" line="545"/> |         <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="530"/> |         <location filename="../ProfileInterface.cpp" line="541"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="548"/> |         <location filename="../ProfileInterface.cpp" line="558"/> | ||||||
|         <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="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <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="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../UserInterface.cpp" line="497"/> |         <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="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../UserInterface.cpp" line="513"/> |         <location filename="../UserInterface.cpp" line="513"/> | ||||||
|         <source>Failed to read Savegame file</source> |         <source>Failed to read Savegame file</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|  | @ -1163,152 +1164,152 @@ Press 1 for Default View</source> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="142"/> |         <location filename="../ImageEditorDialog.cpp" line="142"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <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="151"/> |         <location filename="../ImageEditorDialog.cpp" line="151"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <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="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <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="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <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="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <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="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <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="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <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="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <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="959"/> |         <location filename="../ProfileInterface.cpp" line="1020"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="977"/> |         <location filename="../ProfileInterface.cpp" line="1038"/> | ||||||
|         <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="960"/> |         <location filename="../ProfileInterface.cpp" line="1021"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="982"/> |         <location filename="../ProfileInterface.cpp" line="1043"/> | ||||||
|         <source>JPG pictures only</source> |         <source>JPG pictures only</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="961"/> |         <location filename="../ProfileInterface.cpp" line="1022"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="986"/> |         <location filename="../ProfileInterface.cpp" line="1047"/> | ||||||
|         <source>GTA Snapmatic only</source> |         <source>GTA Snapmatic only</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <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="936"/> |         <location filename="../ProfileInterface.cpp" line="997"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1019"/> |         <location filename="../ProfileInterface.cpp" line="1080"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <source>Export selected...</source> |         <source>Export selected...</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1020"/> |         <location filename="../ProfileInterface.cpp" line="1081"/> | ||||||
|         <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="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <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="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <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="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <source>Remove selected</source> |         <source>Remove selected</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <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="1567"/> |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <source>Qualify as Avatar</source> |         <source>Qualify as Avatar</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1567"/> |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <source>No Snapmatic pictures are selected</source> |         <source>No Snapmatic pictures are selected</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1578"/> |         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1675"/> |         <location filename="../ProfileInterface.cpp" line="1810"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1793"/> |         <location filename="../ProfileInterface.cpp" line="1928"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1895"/> |         <location filename="../ProfileInterface.cpp" line="2030"/> | ||||||
|         <source>Patch selected...</source> |         <source>Patch selected...</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1579"/> |         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1598"/> |         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> |         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> |         <location filename="../ProfileInterface.cpp" line="1830"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> |         <location filename="../ProfileInterface.cpp" line="1929"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1813"/> |         <location filename="../ProfileInterface.cpp" line="1948"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1896"/> |         <location filename="../ProfileInterface.cpp" line="2031"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1915"/> |         <location filename="../ProfileInterface.cpp" line="2050"/> | ||||||
|         <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="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>%1 failed with... |         <source>%1 failed with... | ||||||
| 
 | 
 | ||||||
| %2</source> | %2</source> | ||||||
|  | @ -1316,60 +1317,65 @@ Press 1 for Default View</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> |         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1445"/> | ||||||
|  |         <source>Prepare Content for Import...</source> | ||||||
|  |         <translation type="unfinished"></translation> | ||||||
|  |     </message> | ||||||
|  |     <message> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <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="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <source>Change Players...</source> |         <source>Change Players...</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <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="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <source>Change Crew...</source> |         <source>Change Crew...</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <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="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <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="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>Change Title...</source> |         <source>Change Title...</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <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="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>Change Title</source> |         <source>Change Title</source> | ||||||
|         <comment>%1 failed with...</comment> |         <comment>%1 failed with...</comment> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|  | @ -1383,17 +1389,17 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>QApplication</name> |     <name>QApplication</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Font</source> |         <source>Font</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Selected Font: %1</source> |         <source>Selected Font: %1</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="127"/> |         <location filename="../main.cpp" line="128"/> | ||||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> |         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1471,37 +1477,37 @@ Press 1 for Default View</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1303"/> |         <location filename="../ProfileInterface.cpp" line="1364"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1304"/> |         <location filename="../ProfileInterface.cpp" line="1365"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1305"/> |         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1307"/> |         <location filename="../ProfileInterface.cpp" line="1368"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1308"/> |         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1311"/> |         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||||
|         <source>Select &All</source> |         <source>Select &All</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1315"/> |         <location filename="../ProfileInterface.cpp" line="1376"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1741,25 +1747,25 @@ Press 1 for Default View</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <source>Snapmatic Title</source> |         <source>Snapmatic Title</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <source>New Snapmatic title:</source> |         <source>New Snapmatic title:</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>Snapmatic Crew</source> |         <source>Snapmatic Crew</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>New Snapmatic crew:</source> |         <source>New Snapmatic crew:</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|  | @ -1768,66 +1774,66 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>SnapmaticPicture</name> |     <name>SnapmaticPicture</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="440"/> |         <location filename="../SnapmaticPicture.cpp" line="466"/> | ||||||
|         <source>PHOTO - %1</source> |         <source>PHOTO - %1</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="660"/> |         <location filename="../SnapmaticPicture.cpp" line="687"/> | ||||||
|         <source>open file %1</source> |         <source>open file %1</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="676"/> |         <location filename="../SnapmaticPicture.cpp" line="703"/> | ||||||
|         <source>header not exists</source> |         <source>header not exists</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="680"/> |         <location filename="../SnapmaticPicture.cpp" line="707"/> | ||||||
|         <source>header is malformed</source> |         <source>header is malformed</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="684"/> |         <location filename="../SnapmaticPicture.cpp" line="711"/> | ||||||
|         <source>picture not exists (%1)</source> |         <source>picture not exists (%1)</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="688"/> |         <location filename="../SnapmaticPicture.cpp" line="715"/> | ||||||
|         <source>JSON not exists (%1)</source> |         <source>JSON not exists (%1)</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="692"/> |         <location filename="../SnapmaticPicture.cpp" line="719"/> | ||||||
|         <source>title not exists (%1)</source> |         <source>title not exists (%1)</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="696"/> |         <location filename="../SnapmaticPicture.cpp" line="723"/> | ||||||
|         <source>description not exists (%1)</source> |         <source>description not exists (%1)</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="710"/> |         <location filename="../SnapmaticPicture.cpp" line="737"/> | ||||||
|         <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></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="161"/> |         <location filename="../JsonEditorDialog.cpp" line="161"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="700"/> |         <location filename="../SnapmaticPicture.cpp" line="727"/> | ||||||
|         <source>JSON is incomplete and malformed</source> |         <source>JSON is incomplete and malformed</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="165"/> |         <location filename="../JsonEditorDialog.cpp" line="165"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="704"/> |         <location filename="../SnapmaticPicture.cpp" line="731"/> | ||||||
|         <source>JSON is incomplete</source> |         <source>JSON is incomplete</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="169"/> |         <location filename="../JsonEditorDialog.cpp" line="169"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="708"/> |         <location filename="../SnapmaticPicture.cpp" line="735"/> | ||||||
|         <source>JSON is malformed</source> |         <source>JSON is malformed</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1887,52 +1893,52 @@ Press 1 for Default View</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1252"/> |         <location filename="../ProfileInterface.cpp" line="1313"/> | ||||||
|         <source>Edi&t</source> |         <source>Edi&t</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1255"/> |         <location filename="../ProfileInterface.cpp" line="1316"/> | ||||||
|         <source>Show &In-game</source> |         <source>Show &In-game</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1259"/> |         <location filename="../ProfileInterface.cpp" line="1320"/> | ||||||
|         <source>Hide &In-game</source> |         <source>Hide &In-game</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1266"/> |         <location filename="../ProfileInterface.cpp" line="1327"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1269"/> |         <location filename="../ProfileInterface.cpp" line="1330"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1272"/> |         <location filename="../ProfileInterface.cpp" line="1333"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1274"/> |         <location filename="../ProfileInterface.cpp" line="1335"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1275"/> |         <location filename="../ProfileInterface.cpp" line="1336"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> |         <location filename="../ProfileInterface.cpp" line="1339"/> | ||||||
|         <source>Select &All</source> |         <source>Select &All</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1282"/> |         <location filename="../ProfileInterface.cpp" line="1343"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1960,22 +1966,22 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>TelemetryDialog</name> |     <name>TelemetryDialog</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="156"/> |         <location filename="../main.cpp" line="157"/> | ||||||
|         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> |         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="157"/> |         <location filename="../main.cpp" line="158"/> | ||||||
|         <source>%1 User Statistics</source> |         <source>%1 User Statistics</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="161"/> |         <location filename="../main.cpp" line="162"/> | ||||||
|         <source>Yes, I want include personal usage data.</source> |         <source>Yes, I want include personal usage data.</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="170"/> |         <location filename="../main.cpp" line="171"/> | ||||||
|         <source>&OK</source> |         <source>&OK</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -2176,15 +2182,15 @@ Press 1 for Default View</source> | ||||||
|         <translation></translation> |         <translation></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <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="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <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> | ||||||
|  |  | ||||||
|  | @ -66,37 +66,37 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | ||||||
|         <translation>%1 est distribué sous license <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></translation>
 |         <translation>%1 est distribué sous license <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="49"/> |         <location filename="../config.h" line="53"/> | ||||||
|         <source>Release</source> |         <source>Release</source> | ||||||
|         <translation>Release</translation> |         <translation>Release</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="55"/> |         <location filename="../config.h" line="59"/> | ||||||
|         <source>Release Candidate</source> |         <source>Release Candidate</source> | ||||||
|         <translation>Release Candidate</translation> |         <translation>Release Candidate</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="61"/> |         <location filename="../config.h" line="65"/> | ||||||
|         <source>Daily Build</source> |         <source>Daily Build</source> | ||||||
|         <translation>Daily Build</translation> |         <translation>Daily Build</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="67"/> |         <location filename="../config.h" line="71"/> | ||||||
|         <source>Developer</source> |         <source>Developer</source> | ||||||
|         <translation>Developer</translation> |         <translation>Developer</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="73"/> |         <location filename="../config.h" line="77"/> | ||||||
|         <source>Beta</source> |         <source>Beta</source> | ||||||
|         <translation>Beta</translation> |         <translation>Beta</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="79"/> |         <location filename="../config.h" line="83"/> | ||||||
|         <source>Alpha</source> |         <source>Alpha</source> | ||||||
|         <translation>Alpha</translation> |         <translation>Alpha</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="84"/> |         <location filename="../config.h" line="88"/> | ||||||
|         <source>Custom</source> |         <source>Custom</source> | ||||||
|         <translation>Personnalisé</translation> |         <translation>Personnalisé</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -314,14 +314,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImportDialog.cpp" line="172"/> |         <location filename="../ImportDialog.cpp" line="172"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="648"/> |         <location filename="../ProfileInterface.cpp" line="658"/> | ||||||
|         <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>Avatar personnalisé</translation> |         <translation>Avatar personnalisé</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImportDialog.cpp" line="198"/> |         <location filename="../ImportDialog.cpp" line="198"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="667"/> |         <location filename="../ProfileInterface.cpp" line="677"/> | ||||||
|         <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>Image personnalisé</translation> |         <translation>Image personnalisé</translation> | ||||||
|  | @ -860,31 +860,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="1267"/> |         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||||
|         <source>Export as &Picture...</source> |         <source>Export as &Picture...</source> | ||||||
|         <translation>Exporter comme &image...</translation> |         <translation>Exporter comme &image...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="153"/> |         <location filename="../PictureDialog.cpp" line="153"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1268"/> |         <location filename="../ProfileInterface.cpp" line="1329"/> | ||||||
|         <source>Export as &Snapmatic...</source> |         <source>Export as &Snapmatic...</source> | ||||||
|         <translation>Exporter comme &Snapmatic...</translation> |         <translation>Exporter comme &Snapmatic...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="156"/> |         <location filename="../PictureDialog.cpp" line="156"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1262"/> |         <location filename="../ProfileInterface.cpp" line="1323"/> | ||||||
|         <source>&Overwrite Image...</source> |         <source>&Overwrite Image...</source> | ||||||
|         <translation>&Remplacer l'image...</translation> |         <translation>&Remplacer l'image...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="155"/> |         <location filename="../PictureDialog.cpp" line="155"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1261"/> |         <location filename="../ProfileInterface.cpp" line="1322"/> | ||||||
|         <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="1264"/> |         <location filename="../ProfileInterface.cpp" line="1325"/> | ||||||
|         <source>Open &Map Viewer...</source> |         <source>Open &Map Viewer...</source> | ||||||
|         <translation>Ouvrir la &Visionneuse de Carte...</translation> |         <translation>Ouvrir la &Visionneuse de Carte...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -953,7 +953,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="1265"/> |         <location filename="../ProfileInterface.cpp" line="1326"/> | ||||||
|         <source>Open &JSON Editor...</source> |         <source>Open &JSON Editor...</source> | ||||||
|         <translation>Ouvrir l'éditeur &JSON...</translation> |         <translation>Ouvrir l'éditeur &JSON...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1057,30 +1057,31 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
|         <translation>Copie du fichier %1 sur %2</translation> |         <translation>Copie du fichier %1 sur %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="70"/> |         <location filename="../ProfileInterface.cpp" line="79"/> | ||||||
|         <source>Enabled pictures: %1 of %2</source> |         <source>Enabled pictures: %1 of %2</source> | ||||||
|         <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="160"/> |         <location filename="../ProfileInterface.cpp" line="172"/> | ||||||
|         <source>Loading...</source> |         <source>Loading...</source> | ||||||
|         <translation>Chargement...</translation> |         <translation>Chargement...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <source>Snapmatic Loader</source> |         <source>Snapmatic Loader</source> | ||||||
|         <translation>Snapmatic Loader</translation> |         <translation>Snapmatic Loader</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source> |         <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source> | ||||||
|         <translation><h4>Les Snapmatic suivants ont été répaés</h4>%1</translation> |         <translation><h4>Les Snapmatic suivants ont été répaés</h4>%1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="110"/> |         <location filename="../ImageEditorDialog.cpp" line="110"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="328"/> |         <location filename="../ImportDialog.cpp" line="328"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="462"/> |         <location filename="../ProfileInterface.cpp" line="474"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="529"/> |         <location filename="../ProfileInterface.cpp" line="540"/> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1438"/> | ||||||
|         <source>Import...</source> |         <source>Import...</source> | ||||||
|         <translation>Importer...</translation> |         <translation>Importer...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1091,31 +1092,31 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
|         <location filename="../ImportDialog.cpp" line="329"/> |         <location filename="../ImportDialog.cpp" line="329"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="463"/> |         <location filename="../ProfileInterface.cpp" line="475"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <source>Import</source> |         <source>Import</source> | ||||||
|         <translation>Importer</translation> |         <translation>Importer</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="480"/> |         <location filename="../ProfileInterface.cpp" line="492"/> | ||||||
|         <location filename="../UserInterface.cpp" line="455"/> |         <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="481"/> |         <location filename="../ProfileInterface.cpp" line="493"/> | ||||||
|         <location filename="../UserInterface.cpp" line="456"/> |         <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> | ||||||
|  | @ -1123,26 +1124,26 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
|     <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="482"/> |         <location filename="../ProfileInterface.cpp" line="494"/> | ||||||
|         <source>All image files (%1)</source> |         <source>All image files (%1)</source> | ||||||
|         <translation>Toutes les images (%1)</translation> |         <translation>Toutes les images (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="122"/> |         <location filename="../ImageEditorDialog.cpp" line="122"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="340"/> |         <location filename="../ImportDialog.cpp" line="340"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="483"/> |         <location filename="../ProfileInterface.cpp" line="495"/> | ||||||
|         <location filename="../UserInterface.cpp" line="457"/> |         <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="530"/> |         <location filename="../ProfileInterface.cpp" line="541"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="548"/> |         <location filename="../ProfileInterface.cpp" line="558"/> | ||||||
|         <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="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <source>Import failed with... |         <source>Import failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|  | @ -1151,25 +1152,25 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
| %1</translation> | %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../UserInterface.cpp" line="545"/> |         <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="478"/> |         <location filename="../ProfileInterface.cpp" line="490"/> | ||||||
|         <source>Importable files (%1)</source> |         <source>Importable files (%1)</source> | ||||||
|         <translation>Fichiers importables (%1)</translation> |         <translation>Fichiers importables (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../UserInterface.cpp" line="497"/> |         <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="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../UserInterface.cpp" line="513"/> |         <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> | ||||||
|  | @ -1177,127 +1178,127 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="142"/> |         <location filename="../ImageEditorDialog.cpp" line="142"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <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>Impossible d'importer %1, le fichier ne peut pas être ouvert</translation> |         <translation>Impossible d'importer %1, le fichier ne peut pas être ouvert</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="151"/> |         <location filename="../ImageEditorDialog.cpp" line="151"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <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>Impossible d'importer %1, le fichier ne peut pas être parsé correctement</translation> |         <translation>Impossible d'importer %1, le fichier ne peut pas être parsé correctement</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <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>Impossible d'importer %1, le format du fichier n'est pas détecté</translation> |         <translation>Impossible d'importer %1, le format du fichier n'est pas détecté</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <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="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <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="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <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="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <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="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <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="959"/> |         <location filename="../ProfileInterface.cpp" line="1020"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="977"/> |         <location filename="../ProfileInterface.cpp" line="1038"/> | ||||||
|         <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="960"/> |         <location filename="../ProfileInterface.cpp" line="1021"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="982"/> |         <location filename="../ProfileInterface.cpp" line="1043"/> | ||||||
|         <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="961"/> |         <location filename="../ProfileInterface.cpp" line="1022"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="986"/> |         <location filename="../ProfileInterface.cpp" line="1047"/> | ||||||
|         <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="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <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="936"/> |         <location filename="../ProfileInterface.cpp" line="997"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1019"/> |         <location filename="../ProfileInterface.cpp" line="1080"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <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="1020"/> |         <location filename="../ProfileInterface.cpp" line="1081"/> | ||||||
|         <source>Initialising export...</source> |         <source>Initialising export...</source> | ||||||
|         <translation>Initialisation de l'export...</translation> |         <translation>Initialisation de l'export...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1567"/> |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <source>Qualify as Avatar</source> |         <source>Qualify as Avatar</source> | ||||||
|         <translation>Qualifier comme Avatar</translation> |         <translation>Qualifier comme Avatar</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1567"/> |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <source>No Snapmatic pictures are selected</source> |         <source>No Snapmatic pictures are selected</source> | ||||||
|         <translation>Aucun Snapmatic sélectionné</translation> |         <translation>Aucun Snapmatic sélectionné</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1578"/> |         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1675"/> |         <location filename="../ProfileInterface.cpp" line="1810"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1793"/> |         <location filename="../ProfileInterface.cpp" line="1928"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1895"/> |         <location filename="../ProfileInterface.cpp" line="2030"/> | ||||||
|         <source>Patch selected...</source> |         <source>Patch selected...</source> | ||||||
|         <translation>Patcher la sélection...</translation> |         <translation>Patcher la sélection...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1579"/> |         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1598"/> |         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> |         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> |         <location filename="../ProfileInterface.cpp" line="1830"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> |         <location filename="../ProfileInterface.cpp" line="1929"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1813"/> |         <location filename="../ProfileInterface.cpp" line="1948"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1896"/> |         <location filename="../ProfileInterface.cpp" line="2031"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1915"/> |         <location filename="../ProfileInterface.cpp" line="2050"/> | ||||||
|         <source>Patch file %1 of %2 files</source> |         <source>Patch file %1 of %2 files</source> | ||||||
|         <translation>Patch du fichier %1 sur %2</translation> |         <translation>Patch du fichier %1 sur %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>%1 failed with... |         <source>%1 failed with... | ||||||
| 
 | 
 | ||||||
| %2</source> | %2</source> | ||||||
|  | @ -1307,66 +1308,71 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
| %2</translation> | %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> |         <source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source> | ||||||
|         <translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation> |         <translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1445"/> | ||||||
|  |         <source>Prepare Content for Import...</source> | ||||||
|  |         <translation type="unfinished"></translation> | ||||||
|  |     </message> | ||||||
|  |     <message> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <source>Qualify</source> |         <source>Qualify</source> | ||||||
|         <comment>%1 failed with...</comment> |         <comment>%1 failed with...</comment> | ||||||
|         <translation>Qualifier</translation> |         <translation>Qualifier</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <source>Change Players...</source> |         <source>Change Players...</source> | ||||||
|         <translation>Modifier les joueurs...</translation> |         <translation>Modifier les joueurs...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <source>Change Players</source> |         <source>Change Players</source> | ||||||
|         <comment>%1 failed with...</comment> |         <comment>%1 failed with...</comment> | ||||||
|         <translation>Modifier les joueurs</translation> |         <translation>Modifier les joueurs</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <source>Change Crew...</source> |         <source>Change Crew...</source> | ||||||
|         <translation>Modifier le Crew...</translation> |         <translation>Modifier le Crew...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> |         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||||
|         <translation>Snapmatic Crew ID invalide</translation> |         <translation>Snapmatic Crew ID invalide</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <source>Change Crew</source> |         <source>Change Crew</source> | ||||||
|         <comment>%1 failed with...</comment> |         <comment>%1 failed with...</comment> | ||||||
|         <translation>Changer le Crew</translation> |         <translation>Changer le Crew</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>Change Title...</source> |         <source>Change Title...</source> | ||||||
|         <translation>Changer le titre...</translation> |         <translation>Changer le titre...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <source>Failed to enter a valid Snapmatic title</source> |         <source>Failed to enter a valid Snapmatic title</source> | ||||||
|         <translation>Titre Snapmatic invalide</translation> |         <translation>Titre Snapmatic invalide</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>Change Title</source> |         <source>Change Title</source> | ||||||
|         <comment>%1 failed with...</comment> |         <comment>%1 failed with...</comment> | ||||||
|         <translation>Changer le titre</translation> |         <translation>Changer le titre</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <source>Export failed with... |         <source>Export failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|  | @ -1375,20 +1381,20 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
| %1</translation> | %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <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="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <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="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <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> | ||||||
|  | @ -1398,7 +1404,7 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
|         <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation> |         <translation>Tous les fichiers de profil (*.g5e SGTA* PGTA*)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="479"/> |         <location filename="../ProfileInterface.cpp" line="491"/> | ||||||
|         <location filename="../UserInterface.cpp" line="454"/> |         <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> | ||||||
|  | @ -1407,17 +1413,17 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
| <context> | <context> | ||||||
|     <name>QApplication</name> |     <name>QApplication</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Font</source> |         <source>Font</source> | ||||||
|         <translation>Police</translation> |         <translation>Police</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Selected Font: %1</source> |         <source>Selected Font: %1</source> | ||||||
|         <translation>Police sélectionnée : %1</translation> |         <translation>Police sélectionnée : %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="127"/> |         <location filename="../main.cpp" line="128"/> | ||||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> |         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||||
|         <translation><h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t?</translation> |         <translation><h4>Bienvenue sur %1!</h4>Voulez-vous configurer %1 avant de l'utiliser t?</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1495,7 +1501,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="1304"/> |         <location filename="../ProfileInterface.cpp" line="1365"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>&Exporter</translation> |         <translation>&Exporter</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1586,32 +1592,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="1303"/> |         <location filename="../ProfileInterface.cpp" line="1364"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>&Voir</translation> |         <translation>&Voir</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1305"/> |         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>&Supprimer</translation> |         <translation>&Supprimer</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1307"/> |         <location filename="../ProfileInterface.cpp" line="1368"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation>&Sélectionner</translation> |         <translation>&Sélectionner</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1308"/> |         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation>&Déselectionner</translation> |         <translation>&Déselectionner</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1311"/> |         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||||
|         <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="1315"/> |         <location filename="../ProfileInterface.cpp" line="1376"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>&Déselectionner tout</translation> |         <translation>&Déselectionner tout</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1667,7 +1673,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="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <source>Snapmatic Title</source> |         <source>Snapmatic Title</source> | ||||||
|         <translation>Titre Snapmatic</translation> |         <translation>Titre Snapmatic</translation> | ||||||
|  | @ -1775,19 +1781,19 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
|         <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="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <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="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <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="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>New Snapmatic crew:</source> |         <source>New Snapmatic crew:</source> | ||||||
|         <translation>Nouveau crew Snapmatic :</translation> |         <translation>Nouveau crew Snapmatic :</translation> | ||||||
|  | @ -1796,66 +1802,66 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
| <context> | <context> | ||||||
|     <name>SnapmaticPicture</name> |     <name>SnapmaticPicture</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="440"/> |         <location filename="../SnapmaticPicture.cpp" line="466"/> | ||||||
|         <source>PHOTO - %1</source> |         <source>PHOTO - %1</source> | ||||||
|         <translation>PHOTO - %1</translation> |         <translation>PHOTO - %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="660"/> |         <location filename="../SnapmaticPicture.cpp" line="687"/> | ||||||
|         <source>open file %1</source> |         <source>open file %1</source> | ||||||
|         <translation>ouverture du fichier %1</translation> |         <translation>ouverture du fichier %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="676"/> |         <location filename="../SnapmaticPicture.cpp" line="703"/> | ||||||
|         <source>header not exists</source> |         <source>header not exists</source> | ||||||
|         <translation>les headers n'existent pas</translation> |         <translation>les headers n'existent pas</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="680"/> |         <location filename="../SnapmaticPicture.cpp" line="707"/> | ||||||
|         <source>header is malformed</source> |         <source>header is malformed</source> | ||||||
|         <translation>les headers sont incorrects</translation> |         <translation>les headers sont incorrects</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="684"/> |         <location filename="../SnapmaticPicture.cpp" line="711"/> | ||||||
|         <source>picture not exists (%1)</source> |         <source>picture not exists (%1)</source> | ||||||
|         <translation>l'image n'existe pas (%1)</translation> |         <translation>l'image n'existe pas (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="688"/> |         <location filename="../SnapmaticPicture.cpp" line="715"/> | ||||||
|         <source>JSON not exists (%1)</source> |         <source>JSON not exists (%1)</source> | ||||||
|         <translation>le JSON n'existe pas (%1)</translation> |         <translation>le JSON n'existe pas (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="692"/> |         <location filename="../SnapmaticPicture.cpp" line="719"/> | ||||||
|         <source>title not exists (%1)</source> |         <source>title not exists (%1)</source> | ||||||
|         <translation>le titre n'existe pas (%1)</translation> |         <translation>le titre n'existe pas (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="696"/> |         <location filename="../SnapmaticPicture.cpp" line="723"/> | ||||||
|         <source>description not exists (%1)</source> |         <source>description not exists (%1)</source> | ||||||
|         <translation>la description n'existe pas (%1)</translation> |         <translation>la description n'existe pas (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="710"/> |         <location filename="../SnapmaticPicture.cpp" line="737"/> | ||||||
|         <source>reading file %1 because of %2</source> |         <source>reading file %1 because of %2</source> | ||||||
|         <comment>Example for %2: JSON is malformed error</comment> |         <comment>Example for %2: JSON is malformed error</comment> | ||||||
|         <translation>lecture du fichier %1 : %2</translation> |         <translation>lecture du fichier %1 : %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="161"/> |         <location filename="../JsonEditorDialog.cpp" line="161"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="700"/> |         <location filename="../SnapmaticPicture.cpp" line="727"/> | ||||||
|         <source>JSON is incomplete and malformed</source> |         <source>JSON is incomplete and malformed</source> | ||||||
|         <translation>JSON incomplet ou incorrect</translation> |         <translation>JSON incomplet ou incorrect</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="165"/> |         <location filename="../JsonEditorDialog.cpp" line="165"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="704"/> |         <location filename="../SnapmaticPicture.cpp" line="731"/> | ||||||
|         <source>JSON is incomplete</source> |         <source>JSON is incomplete</source> | ||||||
|         <translation>JSON incomplet</translation> |         <translation>JSON incomplet</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="169"/> |         <location filename="../JsonEditorDialog.cpp" line="169"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="708"/> |         <location filename="../SnapmaticPicture.cpp" line="735"/> | ||||||
|         <source>JSON is malformed</source> |         <source>JSON is malformed</source> | ||||||
|         <translation>JSON incorrect</translation> |         <translation>JSON incorrect</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1935,52 +1941,52 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
|         <translation>%1 n'a pas pu être rendu visible en jeu</translation> |         <translation>%1 n'a pas pu être rendu visible en jeu</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1252"/> |         <location filename="../ProfileInterface.cpp" line="1313"/> | ||||||
|         <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="1255"/> |         <location filename="../ProfileInterface.cpp" line="1316"/> | ||||||
|         <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="1259"/> |         <location filename="../ProfileInterface.cpp" line="1320"/> | ||||||
|         <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="1266"/> |         <location filename="../ProfileInterface.cpp" line="1327"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>&Exporter</translation> |         <translation>&Exporter</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1269"/> |         <location filename="../ProfileInterface.cpp" line="1330"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>&Voir</translation> |         <translation>&Voir</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1272"/> |         <location filename="../ProfileInterface.cpp" line="1333"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>S&upprimer</translation> |         <translation>S&upprimer</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1274"/> |         <location filename="../ProfileInterface.cpp" line="1335"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation>&Sélectionner</translation> |         <translation>&Sélectionner</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1275"/> |         <location filename="../ProfileInterface.cpp" line="1336"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation>&Déselectionner</translation> |         <translation>&Déselectionner</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> |         <location filename="../ProfileInterface.cpp" line="1339"/> | ||||||
|         <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="1282"/> |         <location filename="../ProfileInterface.cpp" line="1343"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>&Déselectionner tout</translation> |         <translation>&Déselectionner tout</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1988,22 +1994,22 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
| <context> | <context> | ||||||
|     <name>TelemetryDialog</name> |     <name>TelemetryDialog</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="156"/> |         <location filename="../main.cpp" line="157"/> | ||||||
|         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> |         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="157"/> |         <location filename="../main.cpp" line="158"/> | ||||||
|         <source>%1 User Statistics</source> |         <source>%1 User Statistics</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="161"/> |         <location filename="../main.cpp" line="162"/> | ||||||
|         <source>Yes, I want include personal usage data.</source> |         <source>Yes, I want include personal usage data.</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="170"/> |         <location filename="../main.cpp" line="171"/> | ||||||
|         <source>&OK</source> |         <source>&OK</source> | ||||||
|         <translation type="unfinished">&OK</translation> |         <translation type="unfinished">&OK</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -2204,15 +2210,15 @@ Appuyer sur 1 pour le mode par défaut</translation> | ||||||
|         <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="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <location filename="../SnapmaticWidget.cpp" line="298"/> |         <location filename="../SnapmaticWidget.cpp" line="298"/> | ||||||
|         <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="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <location filename="../SnapmaticWidget.cpp" line="290"/> |         <location filename="../SnapmaticWidget.cpp" line="290"/> | ||||||
|         <source>Hide In-game</source> |         <source>Hide In-game</source> | ||||||
|         <translation>Invisible en jeu</translation> |         <translation>Invisible en jeu</translation> | ||||||
|  |  | ||||||
|  | @ -66,37 +66,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="49"/> |         <location filename="../config.h" line="53"/> | ||||||
|         <source>Release</source> |         <source>Release</source> | ||||||
|         <translation>Релиз</translation> |         <translation>Релиз</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="55"/> |         <location filename="../config.h" line="59"/> | ||||||
|         <source>Release Candidate</source> |         <source>Release Candidate</source> | ||||||
|         <translation>Предварительный выпуск</translation> |         <translation>Предварительный выпуск</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="61"/> |         <location filename="../config.h" line="65"/> | ||||||
|         <source>Daily Build</source> |         <source>Daily Build</source> | ||||||
|         <translation>Дневная сборка</translation> |         <translation>Дневная сборка</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="67"/> |         <location filename="../config.h" line="71"/> | ||||||
|         <source>Developer</source> |         <source>Developer</source> | ||||||
|         <translation>Разработчик</translation> |         <translation>Разработчик</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="73"/> |         <location filename="../config.h" line="77"/> | ||||||
|         <source>Beta</source> |         <source>Beta</source> | ||||||
|         <translation>Бета</translation> |         <translation>Бета</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="79"/> |         <location filename="../config.h" line="83"/> | ||||||
|         <source>Alpha</source> |         <source>Alpha</source> | ||||||
|         <translation>Альфа</translation> |         <translation>Альфа</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="84"/> |         <location filename="../config.h" line="88"/> | ||||||
|         <source>Custom</source> |         <source>Custom</source> | ||||||
|         <translatorcomment>Не известен контекст</translatorcomment> |         <translatorcomment>Не известен контекст</translatorcomment> | ||||||
|         <translation>Своя</translation> |         <translation>Своя</translation> | ||||||
|  | @ -318,14 +318,14 @@ Pictures and Savegames</source> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImportDialog.cpp" line="172"/> |         <location filename="../ImportDialog.cpp" line="172"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="648"/> |         <location filename="../ProfileInterface.cpp" line="658"/> | ||||||
|         <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="198"/> |         <location filename="../ImportDialog.cpp" line="198"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="667"/> |         <location filename="../ProfileInterface.cpp" line="677"/> | ||||||
|         <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> | ||||||
|  | @ -785,31 +785,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="1267"/> |         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||||
|         <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="1268"/> |         <location filename="../ProfileInterface.cpp" line="1329"/> | ||||||
|         <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="1262"/> |         <location filename="../ProfileInterface.cpp" line="1323"/> | ||||||
|         <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="1261"/> |         <location filename="../ProfileInterface.cpp" line="1322"/> | ||||||
|         <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="1264"/> |         <location filename="../ProfileInterface.cpp" line="1325"/> | ||||||
|         <source>Open &Map Viewer...</source> |         <source>Open &Map Viewer...</source> | ||||||
|         <translation>Открыть &карту...</translation> |         <translation>Открыть &карту...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -958,7 +958,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="1265"/> |         <location filename="../ProfileInterface.cpp" line="1326"/> | ||||||
|         <source>Open &JSON Editor...</source> |         <source>Open &JSON Editor...</source> | ||||||
|         <translation>Открыть &редактор JSON...</translation> |         <translation>Открыть &редактор JSON...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1055,17 +1055,17 @@ Press 1 for Default View</source> | ||||||
|         <translation>&Закрыть</translation> |         <translation>&Закрыть</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="160"/> |         <location filename="../ProfileInterface.cpp" line="172"/> | ||||||
|         <source>Loading...</source> |         <source>Loading...</source> | ||||||
|         <translation>Загрузка...</translation> |         <translation>Загрузка...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <source>Snapmatic Loader</source> |         <source>Snapmatic Loader</source> | ||||||
|         <translation>Загрузчик Snapmatic</translation> |         <translation>Загрузчик Snapmatic</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <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> | ||||||
|  | @ -1073,8 +1073,9 @@ Press 1 for Default View</source> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="110"/> |         <location filename="../ImageEditorDialog.cpp" line="110"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="328"/> |         <location filename="../ImportDialog.cpp" line="328"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="462"/> |         <location filename="../ProfileInterface.cpp" line="474"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="529"/> |         <location filename="../ProfileInterface.cpp" line="540"/> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1438"/> | ||||||
|         <source>Import...</source> |         <source>Import...</source> | ||||||
|         <translation>Импортировать...</translation> |         <translation>Импортировать...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1085,31 +1086,31 @@ Press 1 for Default View</source> | ||||||
|         <location filename="../ImportDialog.cpp" line="329"/> |         <location filename="../ImportDialog.cpp" line="329"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="463"/> |         <location filename="../ProfileInterface.cpp" line="475"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <source>Import</source> |         <source>Import</source> | ||||||
|         <translation>Импортировать</translation> |         <translation>Импортировать</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="480"/> |         <location filename="../ProfileInterface.cpp" line="492"/> | ||||||
|         <location filename="../UserInterface.cpp" line="455"/> |         <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="481"/> |         <location filename="../ProfileInterface.cpp" line="493"/> | ||||||
|         <location filename="../UserInterface.cpp" line="456"/> |         <location filename="../UserInterface.cpp" line="456"/> | ||||||
|         <source>Snapmatic pictures (PGTA*)</source> |         <source>Snapmatic pictures (PGTA*)</source> | ||||||
|         <translation>Картинка Snapmatic (PGTA*)</translation> |         <translation>Картинка Snapmatic (PGTA*)</translation> | ||||||
|  | @ -1117,19 +1118,19 @@ Press 1 for Default View</source> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="122"/> |         <location filename="../ImageEditorDialog.cpp" line="122"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="340"/> |         <location filename="../ImportDialog.cpp" line="340"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="483"/> |         <location filename="../ProfileInterface.cpp" line="495"/> | ||||||
|         <location filename="../UserInterface.cpp" line="457"/> |         <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="530"/> |         <location filename="../ProfileInterface.cpp" line="541"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="548"/> |         <location filename="../ProfileInterface.cpp" line="558"/> | ||||||
|         <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="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <source>Import failed with... |         <source>Import failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|  | @ -1138,169 +1139,174 @@ Press 1 for Default View</source> | ||||||
| %1</translation> | %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../UserInterface.cpp" line="497"/> |         <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="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../UserInterface.cpp" line="513"/> |         <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="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../UserInterface.cpp" line="545"/> |         <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="70"/> |         <location filename="../ProfileInterface.cpp" line="79"/> | ||||||
|         <source>Enabled pictures: %1 of %2</source> |         <source>Enabled pictures: %1 of %2</source> | ||||||
|         <translation>Включенные картинки: %1 из %2</translation> |         <translation>Включенные картинки: %1 из %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="478"/> |         <location filename="../ProfileInterface.cpp" line="490"/> | ||||||
|         <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="121"/> |         <location filename="../ImageEditorDialog.cpp" line="121"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="339"/> |         <location filename="../ImportDialog.cpp" line="339"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="482"/> |         <location filename="../ProfileInterface.cpp" line="494"/> | ||||||
|         <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="142"/> |         <location filename="../ImageEditorDialog.cpp" line="142"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <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="151"/> |         <location filename="../ImageEditorDialog.cpp" line="151"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <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="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <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="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <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="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <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="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <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="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <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="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <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="959"/> |         <location filename="../ProfileInterface.cpp" line="1020"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="977"/> |         <location filename="../ProfileInterface.cpp" line="1038"/> | ||||||
|         <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="960"/> |         <location filename="../ProfileInterface.cpp" line="1021"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="982"/> |         <location filename="../ProfileInterface.cpp" line="1043"/> | ||||||
|         <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="961"/> |         <location filename="../ProfileInterface.cpp" line="1022"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="986"/> |         <location filename="../ProfileInterface.cpp" line="1047"/> | ||||||
|         <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="1020"/> |         <location filename="../ProfileInterface.cpp" line="1081"/> | ||||||
|         <source>Initialising export...</source> |         <source>Initialising export...</source> | ||||||
|         <translation>Подготовка к экспорту...</translation> |         <translation>Подготовка к экспорту...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <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="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <source>Remove selected</source> |         <source>Remove selected</source> | ||||||
|         <translation>Снять выделение</translation> |         <translation>Снять выделение</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <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="1567"/> |         <location filename="../ProfileInterface.cpp" line="1445"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <source>Prepare Content for Import...</source> | ||||||
|  |         <translation type="unfinished"></translation> | ||||||
|  |     </message> | ||||||
|  |     <message> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <source>Qualify as Avatar</source> |         <source>Qualify as Avatar</source> | ||||||
|         <translation>Пометить как Аватар</translation> |         <translation>Пометить как Аватар</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1567"/> |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <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="1578"/> |         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1675"/> |         <location filename="../ProfileInterface.cpp" line="1810"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1793"/> |         <location filename="../ProfileInterface.cpp" line="1928"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1895"/> |         <location filename="../ProfileInterface.cpp" line="2030"/> | ||||||
|         <source>Patch selected...</source> |         <source>Patch selected...</source> | ||||||
|         <translation>Пропатчить выделенные...</translation> |         <translation>Пропатчить выделенные...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1579"/> |         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1598"/> |         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> |         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> |         <location filename="../ProfileInterface.cpp" line="1830"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> |         <location filename="../ProfileInterface.cpp" line="1929"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1813"/> |         <location filename="../ProfileInterface.cpp" line="1948"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1896"/> |         <location filename="../ProfileInterface.cpp" line="2031"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1915"/> |         <location filename="../ProfileInterface.cpp" line="2050"/> | ||||||
|         <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="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>%1 failed with... |         <source>%1 failed with... | ||||||
| 
 | 
 | ||||||
| %2</source> | %2</source> | ||||||
|  | @ -1310,80 +1316,80 @@ Press 1 for Default View</source> | ||||||
| %2</translation> | %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <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="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <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="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <source>Change Players...</source> |         <source>Change Players...</source> | ||||||
|         <translation>Изменить игроков...</translation> |         <translation>Изменить игроков...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <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="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <source>Change Crew...</source> |         <source>Change Crew...</source> | ||||||
|         <translation>Изменить банду...</translation> |         <translation>Изменить банду...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <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="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <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="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>Change Title...</source> |         <source>Change Title...</source> | ||||||
|         <translation>Изменить заголовок...</translation> |         <translation>Изменить заголовок...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <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="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <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="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <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="936"/> |         <location filename="../ProfileInterface.cpp" line="997"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1019"/> |         <location filename="../ProfileInterface.cpp" line="1080"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <source>Export selected...</source> |         <source>Export selected...</source> | ||||||
|         <translation>Экпортировать выделенное...</translation> |         <translation>Экпортировать выделенное...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <source>Export failed with... |         <source>Export failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|  | @ -1404,7 +1410,7 @@ Press 1 for Default View</source> | ||||||
|         <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation> |         <translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="479"/> |         <location filename="../ProfileInterface.cpp" line="491"/> | ||||||
|         <location filename="../UserInterface.cpp" line="454"/> |         <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> | ||||||
|  | @ -1413,17 +1419,17 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>QApplication</name> |     <name>QApplication</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Font</source> |         <source>Font</source> | ||||||
|         <translation>Шрифт</translation> |         <translation>Шрифт</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Selected Font: %1</source> |         <source>Selected Font: %1</source> | ||||||
|         <translation>Выбранный шрифт: %1</translation> |         <translation>Выбранный шрифт: %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="127"/> |         <location filename="../main.cpp" line="128"/> | ||||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> |         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||||
|         <translation><h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием?</translation> |         <translation><h4>Добро пожаловать в %1!</h4>Хочешь изменить настройки %1 перед использованием?</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1544,32 +1550,32 @@ Press 1 for Default View</source> | ||||||
|         <translation>Не удалось удалить сохранение %1</translation> |         <translation>Не удалось удалить сохранение %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1303"/> |         <location filename="../ProfileInterface.cpp" line="1364"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>&Просмотр</translation> |         <translation>&Просмотр</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1305"/> |         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>&Удалить</translation> |         <translation>&Удалить</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1307"/> |         <location filename="../ProfileInterface.cpp" line="1368"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation>&Выбрать</translation> |         <translation>&Выбрать</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1308"/> |         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation>Сн&ять выбор</translation> |         <translation>Сн&ять выбор</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1311"/> |         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||||
|         <source>Select &All</source> |         <source>Select &All</source> | ||||||
|         <translation>В&ыбрать все</translation> |         <translation>В&ыбрать все</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1315"/> |         <location filename="../ProfileInterface.cpp" line="1376"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>Снять выбо&р со всех</translation> |         <translation>Снять выбо&р со всех</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1579,7 +1585,7 @@ Press 1 for Default View</source> | ||||||
|         <translation>Копировать сохранение</translation> |         <translation>Копировать сохранение</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1304"/> |         <location filename="../ProfileInterface.cpp" line="1365"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>&Экспортировать</translation> |         <translation>&Экспортировать</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1683,7 +1689,7 @@ Press 1 for Default View</source> | ||||||
|         <translation>Meme</translation> |         <translation>Meme</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <source>Snapmatic Title</source> |         <source>Snapmatic Title</source> | ||||||
|         <translation>Заголовок Snapmatic</translation> |         <translation>Заголовок Snapmatic</translation> | ||||||
|  | @ -1779,19 +1785,19 @@ Press 1 for Default View</source> | ||||||
|         <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation> |         <translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <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="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>Snapmatic Crew</source> |         <source>Snapmatic Crew</source> | ||||||
|         <translation>Банда на Snapmatic</translation> |         <translation>Банда на Snapmatic</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>New Snapmatic crew:</source> |         <source>New Snapmatic crew:</source> | ||||||
|         <translation>Новая банда на Snapmatic:</translation> |         <translation>Новая банда на Snapmatic:</translation> | ||||||
|  | @ -1800,66 +1806,66 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>SnapmaticPicture</name> |     <name>SnapmaticPicture</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="440"/> |         <location filename="../SnapmaticPicture.cpp" line="466"/> | ||||||
|         <source>PHOTO - %1</source> |         <source>PHOTO - %1</source> | ||||||
|         <translation>ФОТО - %1</translation> |         <translation>ФОТО - %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="660"/> |         <location filename="../SnapmaticPicture.cpp" line="687"/> | ||||||
|         <source>open file %1</source> |         <source>open file %1</source> | ||||||
|         <translation>Открыть файл %1</translation> |         <translation>Открыть файл %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="676"/> |         <location filename="../SnapmaticPicture.cpp" line="703"/> | ||||||
|         <source>header not exists</source> |         <source>header not exists</source> | ||||||
|         <translation>Отсутствует шапка (header)</translation> |         <translation>Отсутствует шапка (header)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="680"/> |         <location filename="../SnapmaticPicture.cpp" line="707"/> | ||||||
|         <source>header is malformed</source> |         <source>header is malformed</source> | ||||||
|         <translation>Шапка (header) повреждена</translation> |         <translation>Шапка (header) повреждена</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="684"/> |         <location filename="../SnapmaticPicture.cpp" line="711"/> | ||||||
|         <source>picture not exists (%1)</source> |         <source>picture not exists (%1)</source> | ||||||
|         <translation>Картинки не существует (%1)</translation> |         <translation>Картинки не существует (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="688"/> |         <location filename="../SnapmaticPicture.cpp" line="715"/> | ||||||
|         <source>JSON not exists (%1)</source> |         <source>JSON not exists (%1)</source> | ||||||
|         <translation>JSON не существует (%1)</translation> |         <translation>JSON не существует (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="692"/> |         <location filename="../SnapmaticPicture.cpp" line="719"/> | ||||||
|         <source>title not exists (%1)</source> |         <source>title not exists (%1)</source> | ||||||
|         <translation>Заголовок отсутствует (%1)</translation> |         <translation>Заголовок отсутствует (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="696"/> |         <location filename="../SnapmaticPicture.cpp" line="723"/> | ||||||
|         <source>description not exists (%1)</source> |         <source>description not exists (%1)</source> | ||||||
|         <translation>Описание отсутствует (%1)</translation> |         <translation>Описание отсутствует (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="710"/> |         <location filename="../SnapmaticPicture.cpp" line="737"/> | ||||||
|         <source>reading file %1 because of %2</source> |         <source>reading file %1 because of %2</source> | ||||||
|         <comment>Example for %2: JSON is malformed error</comment> |         <comment>Example for %2: JSON is malformed error</comment> | ||||||
|         <translation>Чтение из файла %1 из-за %2</translation> |         <translation>Чтение из файла %1 из-за %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="161"/> |         <location filename="../JsonEditorDialog.cpp" line="161"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="700"/> |         <location filename="../SnapmaticPicture.cpp" line="727"/> | ||||||
|         <source>JSON is incomplete and malformed</source> |         <source>JSON is incomplete and malformed</source> | ||||||
|         <translation>JSON не полный и повреждён</translation> |         <translation>JSON не полный и повреждён</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="165"/> |         <location filename="../JsonEditorDialog.cpp" line="165"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="704"/> |         <location filename="../SnapmaticPicture.cpp" line="731"/> | ||||||
|         <source>JSON is incomplete</source> |         <source>JSON is incomplete</source> | ||||||
|         <translation>JSON частично отсутствует</translation> |         <translation>JSON частично отсутствует</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="169"/> |         <location filename="../JsonEditorDialog.cpp" line="169"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="708"/> |         <location filename="../SnapmaticPicture.cpp" line="735"/> | ||||||
|         <source>JSON is malformed</source> |         <source>JSON is malformed</source> | ||||||
|         <translation>JSON повреждён</translation> |         <translation>JSON повреждён</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1929,52 +1935,52 @@ Press 1 for Default View</source> | ||||||
|         <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation> |         <translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1252"/> |         <location filename="../ProfileInterface.cpp" line="1313"/> | ||||||
|         <source>Edi&t</source> |         <source>Edi&t</source> | ||||||
|         <translation>&Правка</translation> |         <translation>&Правка</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1255"/> |         <location filename="../ProfileInterface.cpp" line="1316"/> | ||||||
|         <source>Show &In-game</source> |         <source>Show &In-game</source> | ||||||
|         <translation>Показывать в &игре</translation> |         <translation>Показывать в &игре</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1259"/> |         <location filename="../ProfileInterface.cpp" line="1320"/> | ||||||
|         <source>Hide &In-game</source> |         <source>Hide &In-game</source> | ||||||
|         <translation>Ск&рыть в игре</translation> |         <translation>Ск&рыть в игре</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1266"/> |         <location filename="../ProfileInterface.cpp" line="1327"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>&Экспорт</translation> |         <translation>&Экспорт</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1269"/> |         <location filename="../ProfileInterface.cpp" line="1330"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>По&казать</translation> |         <translation>По&казать</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1272"/> |         <location filename="../ProfileInterface.cpp" line="1333"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>У&далить</translation> |         <translation>У&далить</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1274"/> |         <location filename="../ProfileInterface.cpp" line="1335"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation>&Выделить</translation> |         <translation>&Выделить</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1275"/> |         <location filename="../ProfileInterface.cpp" line="1336"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation>Сн&ять выделение</translation> |         <translation>Сн&ять выделение</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> |         <location filename="../ProfileInterface.cpp" line="1339"/> | ||||||
|         <source>Select &All</source> |         <source>Select &All</source> | ||||||
|         <translation>В&ыбрать все</translation> |         <translation>В&ыбрать все</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1282"/> |         <location filename="../ProfileInterface.cpp" line="1343"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>Снять выбо&р со всех</translation> |         <translation>Снять выбо&р со всех</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1992,22 +1998,22 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>TelemetryDialog</name> |     <name>TelemetryDialog</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="156"/> |         <location filename="../main.cpp" line="157"/> | ||||||
|         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> |         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="157"/> |         <location filename="../main.cpp" line="158"/> | ||||||
|         <source>%1 User Statistics</source> |         <source>%1 User Statistics</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="161"/> |         <location filename="../main.cpp" line="162"/> | ||||||
|         <source>Yes, I want include personal usage data.</source> |         <source>Yes, I want include personal usage data.</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="170"/> |         <location filename="../main.cpp" line="171"/> | ||||||
|         <source>&OK</source> |         <source>&OK</source> | ||||||
|         <translation type="unfinished">&ОК</translation> |         <translation type="unfinished">&ОК</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -2208,15 +2214,15 @@ Press 1 for Default View</source> | ||||||
|         <translation>Пере&загрузить</translation> |         <translation>Пере&загрузить</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <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="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <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> | ||||||
|  |  | ||||||
|  | @ -66,37 +66,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="49"/> |         <location filename="../config.h" line="53"/> | ||||||
|         <source>Release</source> |         <source>Release</source> | ||||||
|         <translation>Реліз</translation> |         <translation>Реліз</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="55"/> |         <location filename="../config.h" line="59"/> | ||||||
|         <source>Release Candidate</source> |         <source>Release Candidate</source> | ||||||
|         <translation>Реліз-Кандидат</translation> |         <translation>Реліз-Кандидат</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="61"/> |         <location filename="../config.h" line="65"/> | ||||||
|         <source>Daily Build</source> |         <source>Daily Build</source> | ||||||
|         <translation>Щоденна Збірка</translation> |         <translation>Щоденна Збірка</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="67"/> |         <location filename="../config.h" line="71"/> | ||||||
|         <source>Developer</source> |         <source>Developer</source> | ||||||
|         <translation>Розробник</translation> |         <translation>Розробник</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="73"/> |         <location filename="../config.h" line="77"/> | ||||||
|         <source>Beta</source> |         <source>Beta</source> | ||||||
|         <translation>Бета</translation> |         <translation>Бета</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="79"/> |         <location filename="../config.h" line="83"/> | ||||||
|         <source>Alpha</source> |         <source>Alpha</source> | ||||||
|         <translation>Альфа</translation> |         <translation>Альфа</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="84"/> |         <location filename="../config.h" line="88"/> | ||||||
|         <source>Custom</source> |         <source>Custom</source> | ||||||
|         <translation>Custom</translation> |         <translation>Custom</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -309,14 +309,14 @@ Pictures and Savegames</source> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImportDialog.cpp" line="172"/> |         <location filename="../ImportDialog.cpp" line="172"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="648"/> |         <location filename="../ProfileInterface.cpp" line="658"/> | ||||||
|         <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="198"/> |         <location filename="../ImportDialog.cpp" line="198"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="667"/> |         <location filename="../ProfileInterface.cpp" line="677"/> | ||||||
|         <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> | ||||||
|  | @ -774,37 +774,37 @@ Y: %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="152"/> |         <location filename="../PictureDialog.cpp" line="152"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1267"/> |         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||||
|         <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="1268"/> |         <location filename="../ProfileInterface.cpp" line="1329"/> | ||||||
|         <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="155"/> |         <location filename="../PictureDialog.cpp" line="155"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1261"/> |         <location filename="../ProfileInterface.cpp" line="1322"/> | ||||||
|         <source>&Edit Properties...</source> |         <source>&Edit Properties...</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="1262"/> |         <location filename="../ProfileInterface.cpp" line="1323"/> | ||||||
|         <source>&Overwrite Image...</source> |         <source>&Overwrite Image...</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="1264"/> |         <location filename="../ProfileInterface.cpp" line="1325"/> | ||||||
|         <source>Open &Map Viewer...</source> |         <source>Open &Map Viewer...</source> | ||||||
|         <translation>Відкрити &карту...</translation> |         <translation>Відкрити &карту...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="160"/> |         <location filename="../PictureDialog.cpp" line="160"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1265"/> |         <location filename="../ProfileInterface.cpp" line="1326"/> | ||||||
|         <source>Open &JSON Editor...</source> |         <source>Open &JSON Editor...</source> | ||||||
|         <translation>Відкрити редактор &JSON...</translation> |         <translation>Відкрити редактор &JSON...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1059,8 +1059,9 @@ Press 1 for Default View</source> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="110"/> |         <location filename="../ImageEditorDialog.cpp" line="110"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="328"/> |         <location filename="../ImportDialog.cpp" line="328"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="462"/> |         <location filename="../ProfileInterface.cpp" line="474"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="529"/> |         <location filename="../ProfileInterface.cpp" line="540"/> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1438"/> | ||||||
|         <source>Import...</source> |         <source>Import...</source> | ||||||
|         <translation>Імпортування...</translation> |         <translation>Імпортування...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1071,34 +1072,34 @@ Press 1 for Default View</source> | ||||||
|         <location filename="../ImportDialog.cpp" line="329"/> |         <location filename="../ImportDialog.cpp" line="329"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="463"/> |         <location filename="../ProfileInterface.cpp" line="475"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <source>Import</source> |         <source>Import</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="482"/> |         <location filename="../ProfileInterface.cpp" line="494"/> | ||||||
|         <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="122"/> |         <location filename="../ImageEditorDialog.cpp" line="122"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="340"/> |         <location filename="../ImportDialog.cpp" line="340"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="483"/> |         <location filename="../ProfileInterface.cpp" line="495"/> | ||||||
|         <location filename="../UserInterface.cpp" line="457"/> |         <location filename="../UserInterface.cpp" line="457"/> | ||||||
|         <source>All files (**)</source> |         <source>All files (**)</source> | ||||||
|         <translation>Усі файли (**)</translation> |         <translation>Усі файли (**)</translation> | ||||||
|  | @ -1106,75 +1107,75 @@ Press 1 for Default View</source> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="142"/> |         <location filename="../ImageEditorDialog.cpp" line="142"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <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="151"/> |         <location filename="../ImageEditorDialog.cpp" line="151"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <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="70"/> |         <location filename="../ProfileInterface.cpp" line="79"/> | ||||||
|         <source>Enabled pictures: %1 of %2</source> |         <source>Enabled pictures: %1 of %2</source> | ||||||
|         <translation>Увімкнено фотографії:%1 з%2</translation> |         <translation>Увімкнено фотографії:%1 з%2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="160"/> |         <location filename="../ProfileInterface.cpp" line="172"/> | ||||||
|         <source>Loading...</source> |         <source>Loading...</source> | ||||||
|         <translation>Завантаження...</translation> |         <translation>Завантаження...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <source>Snapmatic Loader</source> |         <source>Snapmatic Loader</source> | ||||||
|         <translation>Snapmatic Loader</translation> |         <translation>Snapmatic Loader</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source> |         <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source> | ||||||
|         <translation><h4>Наступні Snapmatic зображення були відновлені</h4>%1</translation> |         <translation><h4>Наступні Snapmatic зображення були відновлені</h4>%1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="478"/> |         <location filename="../ProfileInterface.cpp" line="490"/> | ||||||
|         <source>Importable files (%1)</source> |         <source>Importable files (%1)</source> | ||||||
|         <translation>Імпортуються файли (%1)</translation> |         <translation>Імпортуються файли (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="479"/> |         <location filename="../ProfileInterface.cpp" line="491"/> | ||||||
|         <location filename="../UserInterface.cpp" line="454"/> |         <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> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="480"/> |         <location filename="../ProfileInterface.cpp" line="492"/> | ||||||
|         <location filename="../UserInterface.cpp" line="455"/> |         <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="481"/> |         <location filename="../ProfileInterface.cpp" line="493"/> | ||||||
|         <location filename="../UserInterface.cpp" line="456"/> |         <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="../ProfileInterface.cpp" line="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../UserInterface.cpp" line="545"/> |         <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="530"/> |         <location filename="../ProfileInterface.cpp" line="541"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="548"/> |         <location filename="../ProfileInterface.cpp" line="558"/> | ||||||
|         <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="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <source>Import failed with... |         <source>Import failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|  | @ -1183,86 +1184,86 @@ Press 1 for Default View</source> | ||||||
| %1</translation> | %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../UserInterface.cpp" line="497"/> |         <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="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../UserInterface.cpp" line="513"/> |         <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="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <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="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <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="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <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="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <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="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <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="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <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="936"/> |         <location filename="../ProfileInterface.cpp" line="997"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1019"/> |         <location filename="../ProfileInterface.cpp" line="1080"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <source>Export selected...</source> |         <source>Export selected...</source> | ||||||
|         <translation>Експорт обраних...</translation> |         <translation>Експорт обраних...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="959"/> |         <location filename="../ProfileInterface.cpp" line="1020"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="977"/> |         <location filename="../ProfileInterface.cpp" line="1038"/> | ||||||
|         <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="960"/> |         <location filename="../ProfileInterface.cpp" line="1021"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="982"/> |         <location filename="../ProfileInterface.cpp" line="1043"/> | ||||||
|         <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="961"/> |         <location filename="../ProfileInterface.cpp" line="1022"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="986"/> |         <location filename="../ProfileInterface.cpp" line="1047"/> | ||||||
|         <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="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <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="1020"/> |         <location filename="../ProfileInterface.cpp" line="1081"/> | ||||||
|         <source>Initialising export...</source> |         <source>Initialising export...</source> | ||||||
|         <translation>Ініціалізація експорту...</translation> |         <translation>Ініціалізація експорту...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <source>Export failed with... |         <source>Export failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|  | @ -1271,45 +1272,45 @@ Press 1 for Default View</source> | ||||||
| %1</translation> | %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <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="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <source>Remove selected</source> |         <source>Remove selected</source> | ||||||
|         <translation>Видалити вибрані</translation> |         <translation>Видалити вибрані</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <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="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <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="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1567"/> |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <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="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>%1 failed with... |         <source>%1 failed with... | ||||||
| 
 | 
 | ||||||
| %2</source> | %2</source> | ||||||
|  | @ -1319,81 +1320,86 @@ Press 1 for Default View</source> | ||||||
| %2</translation> | %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1567"/> |         <location filename="../ProfileInterface.cpp" line="1445"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <source>Prepare Content for Import...</source> | ||||||
|  |         <translation type="unfinished"></translation> | ||||||
|  |     </message> | ||||||
|  |     <message> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <source>Qualify as Avatar</source> |         <source>Qualify as Avatar</source> | ||||||
|         <translation>Позначити як Аватар</translation> |         <translation>Позначити як Аватар</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1578"/> |         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1675"/> |         <location filename="../ProfileInterface.cpp" line="1810"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1793"/> |         <location filename="../ProfileInterface.cpp" line="1928"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1895"/> |         <location filename="../ProfileInterface.cpp" line="2030"/> | ||||||
|         <source>Patch selected...</source> |         <source>Patch selected...</source> | ||||||
|         <translation>Вибір патчу...</translation> |         <translation>Вибір патчу...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1579"/> |         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1598"/> |         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> |         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> |         <location filename="../ProfileInterface.cpp" line="1830"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> |         <location filename="../ProfileInterface.cpp" line="1929"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1813"/> |         <location filename="../ProfileInterface.cpp" line="1948"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1896"/> |         <location filename="../ProfileInterface.cpp" line="2031"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1915"/> |         <location filename="../ProfileInterface.cpp" line="2050"/> | ||||||
|         <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="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <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="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <source>Change Players...</source> |         <source>Change Players...</source> | ||||||
|         <translation>Зміна гравців...</translation> |         <translation>Зміна гравців...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <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="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <source>Change Crew...</source> |         <source>Change Crew...</source> | ||||||
|         <translation>Зміна банди...</translation> |         <translation>Зміна банди...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> |         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||||
|         <translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation> |         <translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <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="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>Change Title...</source> |         <source>Change Title...</source> | ||||||
|         <translation>Зміна назви...</translation> |         <translation>Зміна назви...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <source>Failed to enter a valid Snapmatic title</source> |         <source>Failed to enter a valid Snapmatic title</source> | ||||||
|         <translation>Не вдалося ввести дійсний заголовок Snapmatic</translation> |         <translation>Не вдалося ввести дійсний заголовок Snapmatic</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>Change Title</source> |         <source>Change Title</source> | ||||||
|         <comment>%1 failed with...</comment> |         <comment>%1 failed with...</comment> | ||||||
|         <translation>Змінити назву</translation> |         <translation>Змінити назву</translation> | ||||||
|  | @ -1407,17 +1413,17 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>QApplication</name> |     <name>QApplication</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Font</source> |         <source>Font</source> | ||||||
|         <translation>Шрифт</translation> |         <translation>Шрифт</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Selected Font: %1</source> |         <source>Selected Font: %1</source> | ||||||
|         <translation>Вибраний шрифт:%1</translation> |         <translation>Вибраний шрифт:%1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="127"/> |         <location filename="../main.cpp" line="128"/> | ||||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> |         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||||
|         <translation><h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням?</translation> |         <translation><h4>Ласкаво просимо до %1!</h4>Ви хочете налаштувати %1 перед використанням?</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1495,37 +1501,37 @@ Press 1 for Default View</source> | ||||||
|         <translation>Видалити</translation> |         <translation>Видалити</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1303"/> |         <location filename="../ProfileInterface.cpp" line="1364"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>&Перегляд</translation> |         <translation>&Перегляд</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1304"/> |         <location filename="../ProfileInterface.cpp" line="1365"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>&Експорт</translation> |         <translation>&Експорт</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1305"/> |         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>&Видалення</translation> |         <translation>&Видалення</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1307"/> |         <location filename="../ProfileInterface.cpp" line="1368"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation>&Виділення</translation> |         <translation>&Виділення</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1308"/> |         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation>&Зняти виділення</translation> |         <translation>&Зняти виділення</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1311"/> |         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||||
|         <source>Select &All</source> |         <source>Select &All</source> | ||||||
|         <translation>Вибрати &усі</translation> |         <translation>Вибрати &усі</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1315"/> |         <location filename="../ProfileInterface.cpp" line="1376"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>&Зняти виділення усіх</translation> |         <translation>&Зняти виділення усіх</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1720,25 +1726,25 @@ Press 1 for Default View</source> | ||||||
|         <translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation> |         <translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>Snapmatic Crew</source> |         <source>Snapmatic Crew</source> | ||||||
|         <translation>Snapmatic банда</translation> |         <translation>Snapmatic банда</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>New Snapmatic crew:</source> |         <source>New Snapmatic crew:</source> | ||||||
|         <translation>Нова Snapmatic банда:</translation> |         <translation>Нова Snapmatic банда:</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <source>Snapmatic Title</source> |         <source>Snapmatic Title</source> | ||||||
|         <translation>Snapmatic назва</translation> |         <translation>Snapmatic назва</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <source>New Snapmatic title:</source> |         <source>New Snapmatic title:</source> | ||||||
|         <translation>Новий Snapmatic заголовок:</translation> |         <translation>Новий Snapmatic заголовок:</translation> | ||||||
|  | @ -1795,64 +1801,64 @@ Press 1 for Default View</source> | ||||||
|     <name>SnapmaticPicture</name> |     <name>SnapmaticPicture</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="161"/> |         <location filename="../JsonEditorDialog.cpp" line="161"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="700"/> |         <location filename="../SnapmaticPicture.cpp" line="727"/> | ||||||
|         <source>JSON is incomplete and malformed</source> |         <source>JSON is incomplete and malformed</source> | ||||||
|         <translation>JSON неповний та неправильний</translation> |         <translation>JSON неповний та неправильний</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="165"/> |         <location filename="../JsonEditorDialog.cpp" line="165"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="704"/> |         <location filename="../SnapmaticPicture.cpp" line="731"/> | ||||||
|         <source>JSON is incomplete</source> |         <source>JSON is incomplete</source> | ||||||
|         <translation>JSON неповний</translation> |         <translation>JSON неповний</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="169"/> |         <location filename="../JsonEditorDialog.cpp" line="169"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="708"/> |         <location filename="../SnapmaticPicture.cpp" line="735"/> | ||||||
|         <source>JSON is malformed</source> |         <source>JSON is malformed</source> | ||||||
|         <translation>JSON неправильний</translation> |         <translation>JSON неправильний</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="440"/> |         <location filename="../SnapmaticPicture.cpp" line="466"/> | ||||||
|         <source>PHOTO - %1</source> |         <source>PHOTO - %1</source> | ||||||
|         <translation>ФОТО - %1</translation> |         <translation>ФОТО - %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="660"/> |         <location filename="../SnapmaticPicture.cpp" line="687"/> | ||||||
|         <source>open file %1</source> |         <source>open file %1</source> | ||||||
|         <translation>відкрити файл%1</translation> |         <translation>відкрити файл%1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="676"/> |         <location filename="../SnapmaticPicture.cpp" line="703"/> | ||||||
|         <source>header not exists</source> |         <source>header not exists</source> | ||||||
|         <translation>заголовок не існує</translation> |         <translation>заголовок не існує</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="680"/> |         <location filename="../SnapmaticPicture.cpp" line="707"/> | ||||||
|         <source>header is malformed</source> |         <source>header is malformed</source> | ||||||
|         <translation>заголовок неправильний</translation> |         <translation>заголовок неправильний</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="684"/> |         <location filename="../SnapmaticPicture.cpp" line="711"/> | ||||||
|         <source>picture not exists (%1)</source> |         <source>picture not exists (%1)</source> | ||||||
|         <translation>зображення не існує (%1)</translation> |         <translation>зображення не існує (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="688"/> |         <location filename="../SnapmaticPicture.cpp" line="715"/> | ||||||
|         <source>JSON not exists (%1)</source> |         <source>JSON not exists (%1)</source> | ||||||
|         <translation>JSON не існує (%1)</translation> |         <translation>JSON не існує (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="692"/> |         <location filename="../SnapmaticPicture.cpp" line="719"/> | ||||||
|         <source>title not exists (%1)</source> |         <source>title not exists (%1)</source> | ||||||
|         <translation>заголовок не існує (%1)</translation> |         <translation>заголовок не існує (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="696"/> |         <location filename="../SnapmaticPicture.cpp" line="723"/> | ||||||
|         <source>description not exists (%1)</source> |         <source>description not exists (%1)</source> | ||||||
|         <translation>опис не існує (%1)</translation> |         <translation>опис не існує (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="710"/> |         <location filename="../SnapmaticPicture.cpp" line="737"/> | ||||||
|         <source>reading file %1 because of %2</source> |         <source>reading file %1 because of %2</source> | ||||||
|         <comment>Example for %2: JSON is malformed error</comment> |         <comment>Example for %2: JSON is malformed error</comment> | ||||||
|         <translation>читання файлу %1 тому що %2</translation> |         <translation>читання файлу %1 тому що %2</translation> | ||||||
|  | @ -1913,52 +1919,52 @@ Press 1 for Default View</source> | ||||||
|         <translation>Видалити</translation> |         <translation>Видалити</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1252"/> |         <location filename="../ProfileInterface.cpp" line="1313"/> | ||||||
|         <source>Edi&t</source> |         <source>Edi&t</source> | ||||||
|         <translation>Редагува&ти</translation> |         <translation>Редагува&ти</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1255"/> |         <location filename="../ProfileInterface.cpp" line="1316"/> | ||||||
|         <source>Show &In-game</source> |         <source>Show &In-game</source> | ||||||
|         <translation>Показати &у грі</translation> |         <translation>Показати &у грі</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1259"/> |         <location filename="../ProfileInterface.cpp" line="1320"/> | ||||||
|         <source>Hide &In-game</source> |         <source>Hide &In-game</source> | ||||||
|         <translation>Сховати &у грі</translation> |         <translation>Сховати &у грі</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1266"/> |         <location filename="../ProfileInterface.cpp" line="1327"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>&Експортувати</translation> |         <translation>&Експортувати</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1269"/> |         <location filename="../ProfileInterface.cpp" line="1330"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>&Переглянути</translation> |         <translation>&Переглянути</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1272"/> |         <location filename="../ProfileInterface.cpp" line="1333"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>&Видалити</translation> |         <translation>&Видалити</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1274"/> |         <location filename="../ProfileInterface.cpp" line="1335"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation>&Виділення</translation> |         <translation>&Виділення</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1275"/> |         <location filename="../ProfileInterface.cpp" line="1336"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation>&Зняти виділення</translation> |         <translation>&Зняти виділення</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> |         <location filename="../ProfileInterface.cpp" line="1339"/> | ||||||
|         <source>Select &All</source> |         <source>Select &All</source> | ||||||
|         <translation>Вибрати &усі</translation> |         <translation>Вибрати &усі</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1282"/> |         <location filename="../ProfileInterface.cpp" line="1343"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>&Зняти виділення усіх</translation> |         <translation>&Зняти виділення усіх</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1986,22 +1992,22 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>TelemetryDialog</name> |     <name>TelemetryDialog</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="156"/> |         <location filename="../main.cpp" line="157"/> | ||||||
|         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> |         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="157"/> |         <location filename="../main.cpp" line="158"/> | ||||||
|         <source>%1 User Statistics</source> |         <source>%1 User Statistics</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="161"/> |         <location filename="../main.cpp" line="162"/> | ||||||
|         <source>Yes, I want include personal usage data.</source> |         <source>Yes, I want include personal usage data.</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="170"/> |         <location filename="../main.cpp" line="171"/> | ||||||
|         <source>&OK</source> |         <source>&OK</source> | ||||||
|         <translation type="unfinished">&OK</translation> |         <translation type="unfinished">&OK</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -2177,15 +2183,15 @@ Press 1 for Default View</source> | ||||||
|         <translation>Змінити &гравців...</translation> |         <translation>Змінити &гравців...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <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="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <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> | ||||||
|  |  | ||||||
|  | @ -65,37 +65,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="49"/> |         <location filename="../config.h" line="53"/> | ||||||
|         <source>Release</source> |         <source>Release</source> | ||||||
|         <translation>正式版本</translation> |         <translation>正式版本</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="55"/> |         <location filename="../config.h" line="59"/> | ||||||
|         <source>Release Candidate</source> |         <source>Release Candidate</source> | ||||||
|         <translation>最終發布版本</translation> |         <translation>最終發布版本</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="61"/> |         <location filename="../config.h" line="65"/> | ||||||
|         <source>Daily Build</source> |         <source>Daily Build</source> | ||||||
|         <translation>每日建置版本</translation> |         <translation>每日建置版本</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="67"/> |         <location filename="../config.h" line="71"/> | ||||||
|         <source>Developer</source> |         <source>Developer</source> | ||||||
|         <translation>開發版本</translation> |         <translation>開發版本</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="73"/> |         <location filename="../config.h" line="77"/> | ||||||
|         <source>Beta</source> |         <source>Beta</source> | ||||||
|         <translation>Beta 版本</translation> |         <translation>Beta 版本</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="79"/> |         <location filename="../config.h" line="83"/> | ||||||
|         <source>Alpha</source> |         <source>Alpha</source> | ||||||
|         <translation>Alpha 版本</translation> |         <translation>Alpha 版本</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../config.h" line="84"/> |         <location filename="../config.h" line="88"/> | ||||||
|         <source>Custom</source> |         <source>Custom</source> | ||||||
|         <translation>自訂</translation> |         <translation>自訂</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -308,14 +308,14 @@ Pictures and Savegames</source> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImportDialog.cpp" line="172"/> |         <location filename="../ImportDialog.cpp" line="172"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="648"/> |         <location filename="../ProfileInterface.cpp" line="658"/> | ||||||
|         <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="198"/> |         <location filename="../ImportDialog.cpp" line="198"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="667"/> |         <location filename="../ProfileInterface.cpp" line="677"/> | ||||||
|         <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> | ||||||
|  | @ -772,37 +772,37 @@ Y: %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="152"/> |         <location filename="../PictureDialog.cpp" line="152"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1267"/> |         <location filename="../ProfileInterface.cpp" line="1328"/> | ||||||
|         <source>Export as &Picture...</source> |         <source>Export as &Picture...</source> | ||||||
|         <translation>匯出成圖片(&P)...</translation> |         <translation>匯出成圖片(&P)...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="153"/> |         <location filename="../PictureDialog.cpp" line="153"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1268"/> |         <location filename="../ProfileInterface.cpp" line="1329"/> | ||||||
|         <source>Export as &Snapmatic...</source> |         <source>Export as &Snapmatic...</source> | ||||||
|         <translation>匯出成 Snapmatic(&S)...</translation> |         <translation>匯出成 Snapmatic(&S)...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="155"/> |         <location filename="../PictureDialog.cpp" line="155"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1261"/> |         <location filename="../ProfileInterface.cpp" line="1322"/> | ||||||
|         <source>&Edit Properties...</source> |         <source>&Edit Properties...</source> | ||||||
|         <translation>編輯屬性(&E) ...</translation> |         <translation>編輯屬性(&E) ...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="156"/> |         <location filename="../PictureDialog.cpp" line="156"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1262"/> |         <location filename="../ProfileInterface.cpp" line="1323"/> | ||||||
|         <source>&Overwrite Image...</source> |         <source>&Overwrite Image...</source> | ||||||
|         <translation>修改圖片(&O)...</translation> |         <translation>修改圖片(&O)...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="158"/> |         <location filename="../PictureDialog.cpp" line="158"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1264"/> |         <location filename="../ProfileInterface.cpp" line="1325"/> | ||||||
|         <source>Open &Map Viewer...</source> |         <source>Open &Map Viewer...</source> | ||||||
|         <translation>開啟地圖檢視器(&M)...</translation> |         <translation>開啟地圖檢視器(&M)...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../PictureDialog.cpp" line="160"/> |         <location filename="../PictureDialog.cpp" line="160"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1265"/> |         <location filename="../ProfileInterface.cpp" line="1326"/> | ||||||
|         <source>Open &JSON Editor...</source> |         <source>Open &JSON Editor...</source> | ||||||
|         <translation>開啟 JSON 編輯器(&J)...</translation> |         <translation>開啟 JSON 編輯器(&J)...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1057,8 +1057,9 @@ Press 1 for Default View</source> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="110"/> |         <location filename="../ImageEditorDialog.cpp" line="110"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="328"/> |         <location filename="../ImportDialog.cpp" line="328"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="462"/> |         <location filename="../ProfileInterface.cpp" line="474"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="529"/> |         <location filename="../ProfileInterface.cpp" line="540"/> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1438"/> | ||||||
|         <source>Import...</source> |         <source>Import...</source> | ||||||
|         <translation>匯入...</translation> |         <translation>匯入...</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1069,34 +1070,34 @@ Press 1 for Default View</source> | ||||||
|         <location filename="../ImportDialog.cpp" line="329"/> |         <location filename="../ImportDialog.cpp" line="329"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="463"/> |         <location filename="../ProfileInterface.cpp" line="475"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <source>Import</source> |         <source>Import</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="482"/> |         <location filename="../ProfileInterface.cpp" line="494"/> | ||||||
|         <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="122"/> |         <location filename="../ImageEditorDialog.cpp" line="122"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="340"/> |         <location filename="../ImportDialog.cpp" line="340"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="483"/> |         <location filename="../ProfileInterface.cpp" line="495"/> | ||||||
|         <location filename="../UserInterface.cpp" line="457"/> |         <location filename="../UserInterface.cpp" line="457"/> | ||||||
|         <source>All files (**)</source> |         <source>All files (**)</source> | ||||||
|         <translation>所有檔案 (**)</translation> |         <translation>所有檔案 (**)</translation> | ||||||
|  | @ -1104,206 +1105,206 @@ Press 1 for Default View</source> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ImageEditorDialog.cpp" line="142"/> |         <location filename="../ImageEditorDialog.cpp" line="142"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="360"/> |         <location filename="../ImportDialog.cpp" line="360"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="706"/> |         <location filename="../ProfileInterface.cpp" line="715"/> | ||||||
|         <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="151"/> |         <location filename="../ImageEditorDialog.cpp" line="151"/> | ||||||
|         <location filename="../ImportDialog.cpp" line="369"/> |         <location filename="../ImportDialog.cpp" line="369"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="716"/> |         <location filename="../ProfileInterface.cpp" line="725"/> | ||||||
|         <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="70"/> |         <location filename="../ProfileInterface.cpp" line="79"/> | ||||||
|         <source>Enabled pictures: %1 of %2</source> |         <source>Enabled pictures: %1 of %2</source> | ||||||
|         <translation>開啟圖片 %1 共 %2</translation> |         <translation>開啟圖片 %1 共 %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="160"/> |         <location filename="../ProfileInterface.cpp" line="172"/> | ||||||
|         <source>Loading...</source> |         <source>Loading...</source> | ||||||
|         <translation>載入中...</translation> |         <translation>載入中...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <source>Snapmatic Loader</source> |         <source>Snapmatic Loader</source> | ||||||
|         <translation>Snapmatic 載入器</translation> |         <translation>Snapmatic 載入器</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="389"/> |         <location filename="../ProfileInterface.cpp" line="401"/> | ||||||
|         <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source> |         <source><h4>Following Snapmatic Pictures got repaired</h4>%1</source> | ||||||
|         <translation><h4>下列的 Snapmatic 圖片已被更新</h4>%1</translation> |         <translation><h4>下列的 Snapmatic 圖片已被更新</h4>%1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="478"/> |         <location filename="../ProfileInterface.cpp" line="490"/> | ||||||
|         <source>Importable files (%1)</source> |         <source>Importable files (%1)</source> | ||||||
|         <translation>可匯入的檔案 (%1)</translation> |         <translation>可匯入的檔案 (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="479"/> |         <location filename="../ProfileInterface.cpp" line="491"/> | ||||||
|         <location filename="../UserInterface.cpp" line="454"/> |         <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> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="480"/> |         <location filename="../ProfileInterface.cpp" line="492"/> | ||||||
|         <location filename="../UserInterface.cpp" line="455"/> |         <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="481"/> |         <location filename="../ProfileInterface.cpp" line="493"/> | ||||||
|         <location filename="../UserInterface.cpp" line="456"/> |         <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="../ProfileInterface.cpp" line="508"/> |         <location filename="../ProfileInterface.cpp" line="519"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="801"/> |         <location filename="../ProfileInterface.cpp" line="809"/> | ||||||
|         <location filename="../UserInterface.cpp" line="545"/> |         <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="530"/> |         <location filename="../ProfileInterface.cpp" line="541"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="548"/> |         <location filename="../ProfileInterface.cpp" line="558"/> | ||||||
|         <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="564"/> |         <location filename="../ProfileInterface.cpp" line="574"/> | ||||||
|         <source>Import failed with... |         <source>Import failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|         <translation>%1 匯入失敗</translation> |         <translation>%1 匯入失敗</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="584"/> |         <location filename="../ProfileInterface.cpp" line="594"/> | ||||||
|         <location filename="../UserInterface.cpp" line="497"/> |         <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="600"/> |         <location filename="../ProfileInterface.cpp" line="610"/> | ||||||
|         <location filename="../UserInterface.cpp" line="513"/> |         <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="796"/> |         <location filename="../ProfileInterface.cpp" line="804"/> | ||||||
|         <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="812"/> |         <location filename="../ProfileInterface.cpp" line="873"/> | ||||||
|         <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="817"/> |         <location filename="../ProfileInterface.cpp" line="878"/> | ||||||
|         <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="829"/> |         <location filename="../ProfileInterface.cpp" line="890"/> | ||||||
|         <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="866"/> |         <location filename="../ProfileInterface.cpp" line="927"/> | ||||||
|         <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="872"/> |         <location filename="../ProfileInterface.cpp" line="933"/> | ||||||
|         <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="936"/> |         <location filename="../ProfileInterface.cpp" line="997"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1019"/> |         <location filename="../ProfileInterface.cpp" line="1080"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <source>Export selected...</source> |         <source>Export selected...</source> | ||||||
|         <translation>匯出所選...</translation> |         <translation>匯出所選...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="959"/> |         <location filename="../ProfileInterface.cpp" line="1020"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="977"/> |         <location filename="../ProfileInterface.cpp" line="1038"/> | ||||||
|         <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="960"/> |         <location filename="../ProfileInterface.cpp" line="1021"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="982"/> |         <location filename="../ProfileInterface.cpp" line="1043"/> | ||||||
|         <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="961"/> |         <location filename="../ProfileInterface.cpp" line="1022"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="986"/> |         <location filename="../ProfileInterface.cpp" line="1047"/> | ||||||
|         <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="974"/> |         <location filename="../ProfileInterface.cpp" line="1035"/> | ||||||
|         <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="1020"/> |         <location filename="../ProfileInterface.cpp" line="1081"/> | ||||||
|         <source>Initialising export...</source> |         <source>Initialising export...</source> | ||||||
|         <translation>初始化...</translation> |         <translation>初始化...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1054"/> |         <location filename="../ProfileInterface.cpp" line="1115"/> | ||||||
|         <source>Export failed with... |         <source>Export failed with... | ||||||
| 
 | 
 | ||||||
| %1</source> | %1</source> | ||||||
|         <translation>%1 匯出失敗</translation> |         <translation>%1 匯出失敗</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1074"/> |         <location filename="../ProfileInterface.cpp" line="1135"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <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="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1116"/> |         <location filename="../ProfileInterface.cpp" line="1177"/> | ||||||
|         <source>Remove selected</source> |         <source>Remove selected</source> | ||||||
|         <translation>移除所選</translation> |         <translation>移除所選</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1082"/> |         <location filename="../ProfileInterface.cpp" line="1143"/> | ||||||
|         <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="1110"/> |         <location filename="../ProfileInterface.cpp" line="1171"/> | ||||||
|         <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="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1567"/> |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <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="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>%1 failed with... |         <source>%1 failed with... | ||||||
| 
 | 
 | ||||||
| %2</source> | %2</source> | ||||||
|  | @ -1313,81 +1314,86 @@ Press 1 for Default View</source> | ||||||
| %2</translation> | %2</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1567"/> |         <location filename="../ProfileInterface.cpp" line="1445"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1632"/> |         <source>Prepare Content for Import...</source> | ||||||
|  |         <translation type="unfinished"></translation> | ||||||
|  |     </message> | ||||||
|  |     <message> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1702"/> | ||||||
|  |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <source>Qualify as Avatar</source> |         <source>Qualify as Avatar</source> | ||||||
|         <translation>合格大頭貼</translation> |         <translation>合格大頭貼</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1578"/> |         <location filename="../ProfileInterface.cpp" line="1713"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1675"/> |         <location filename="../ProfileInterface.cpp" line="1810"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1793"/> |         <location filename="../ProfileInterface.cpp" line="1928"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1895"/> |         <location filename="../ProfileInterface.cpp" line="2030"/> | ||||||
|         <source>Patch selected...</source> |         <source>Patch selected...</source> | ||||||
|         <translation>修改所選...</translation> |         <translation>修改所選...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1579"/> |         <location filename="../ProfileInterface.cpp" line="1714"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1598"/> |         <location filename="../ProfileInterface.cpp" line="1733"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1676"/> |         <location filename="../ProfileInterface.cpp" line="1811"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1695"/> |         <location filename="../ProfileInterface.cpp" line="1830"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1794"/> |         <location filename="../ProfileInterface.cpp" line="1929"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1813"/> |         <location filename="../ProfileInterface.cpp" line="1948"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1896"/> |         <location filename="../ProfileInterface.cpp" line="2031"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1915"/> |         <location filename="../ProfileInterface.cpp" line="2050"/> | ||||||
|         <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="1632"/> |         <location filename="../ProfileInterface.cpp" line="1767"/> | ||||||
|         <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="1653"/> |         <location filename="../ProfileInterface.cpp" line="1788"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <source>Change Players...</source> |         <source>Change Players...</source> | ||||||
|         <translation>更改玩家...</translation> |         <translation>更改玩家...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1725"/> |         <location filename="../ProfileInterface.cpp" line="1860"/> | ||||||
|         <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="1746"/> |         <location filename="../ProfileInterface.cpp" line="1881"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <source>Change Crew...</source> |         <source>Change Crew...</source> | ||||||
|         <translation>更改幫會...</translation> |         <translation>更改幫會...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1774"/> |         <location filename="../ProfileInterface.cpp" line="1909"/> | ||||||
|         <source>Failed to enter a valid Snapmatic Crew ID</source> |         <source>Failed to enter a valid Snapmatic Crew ID</source> | ||||||
|         <translation>輸入了無效的幫會 ID</translation> |         <translation>輸入了無效的幫會 ID</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1843"/> |         <location filename="../ProfileInterface.cpp" line="1978"/> | ||||||
|         <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="1864"/> |         <location filename="../ProfileInterface.cpp" line="1999"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>Change Title...</source> |         <source>Change Title...</source> | ||||||
|         <translation>更改標題...</translation> |         <translation>更改標題...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1877"/> |         <location filename="../ProfileInterface.cpp" line="2012"/> | ||||||
|         <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="1942"/> |         <location filename="../ProfileInterface.cpp" line="2077"/> | ||||||
|         <source>Change Title</source> |         <source>Change Title</source> | ||||||
|         <comment>%1 failed with...</comment> |         <comment>%1 failed with...</comment> | ||||||
|         <translation>更改標題</translation> |         <translation>更改標題</translation> | ||||||
|  | @ -1401,17 +1407,17 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>QApplication</name> |     <name>QApplication</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Font</source> |         <source>Font</source> | ||||||
|         <translation>字體</translation> |         <translation>字體</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="100"/> |         <location filename="../main.cpp" line="101"/> | ||||||
|         <source>Selected Font: %1</source> |         <source>Selected Font: %1</source> | ||||||
|         <translation>選擇的字體: %1</translation> |         <translation>選擇的字體: %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="127"/> |         <location filename="../main.cpp" line="128"/> | ||||||
|         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> |         <source><h4>Welcome to %1!</h4>You want to configure %1 before you start using it?</source> | ||||||
|         <translation><h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎?</translation> |         <translation><h4>歡迎使用 %1!</h4> 你想在開始前先設定 %1 嗎?</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1489,37 +1495,37 @@ Press 1 for Default View</source> | ||||||
|         <translation>刪除</translation> |         <translation>刪除</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1303"/> |         <location filename="../ProfileInterface.cpp" line="1364"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>檢視(&V)</translation> |         <translation>檢視(&V)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1304"/> |         <location filename="../ProfileInterface.cpp" line="1365"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>匯出(&E)</translation> |         <translation>匯出(&E)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1305"/> |         <location filename="../ProfileInterface.cpp" line="1366"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>移除(&R)</translation> |         <translation>移除(&R)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1307"/> |         <location filename="../ProfileInterface.cpp" line="1368"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation>選擇(&S)</translation> |         <translation>選擇(&S)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1308"/> |         <location filename="../ProfileInterface.cpp" line="1369"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation>取消選擇(&D)</translation> |         <translation>取消選擇(&D)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1311"/> |         <location filename="../ProfileInterface.cpp" line="1372"/> | ||||||
|         <source>Select &All</source> |         <source>Select &All</source> | ||||||
|         <translation>選擇全部(&A)</translation> |         <translation>選擇全部(&A)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1315"/> |         <location filename="../ProfileInterface.cpp" line="1376"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>取消選擇全部(&D)</translation> |         <translation>取消選擇全部(&D)</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1714,25 +1720,25 @@ Press 1 for Default View</source> | ||||||
|         <translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation> |         <translation>JSON 錯誤,未能更新 Snapmatic 屬性</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>Snapmatic Crew</source> |         <source>Snapmatic Crew</source> | ||||||
|         <translation>幫會</translation> |         <translation>幫會</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1765"/> |         <location filename="../ProfileInterface.cpp" line="1900"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="419"/> |         <location filename="../SnapmaticEditor.cpp" line="419"/> | ||||||
|         <source>New Snapmatic crew:</source> |         <source>New Snapmatic crew:</source> | ||||||
|         <translation>輸入新的幫會:</translation> |         <translation>輸入新的幫會:</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <source>Snapmatic Title</source> |         <source>Snapmatic Title</source> | ||||||
|         <translation>標題</translation> |         <translation>標題</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1872"/> |         <location filename="../ProfileInterface.cpp" line="2007"/> | ||||||
|         <location filename="../SnapmaticEditor.cpp" line="390"/> |         <location filename="../SnapmaticEditor.cpp" line="390"/> | ||||||
|         <source>New Snapmatic title:</source> |         <source>New Snapmatic title:</source> | ||||||
|         <translation>輸入新的標題:</translation> |         <translation>輸入新的標題:</translation> | ||||||
|  | @ -1789,64 +1795,64 @@ Press 1 for Default View</source> | ||||||
|     <name>SnapmaticPicture</name> |     <name>SnapmaticPicture</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="161"/> |         <location filename="../JsonEditorDialog.cpp" line="161"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="700"/> |         <location filename="../SnapmaticPicture.cpp" line="727"/> | ||||||
|         <source>JSON is incomplete and malformed</source> |         <source>JSON is incomplete and malformed</source> | ||||||
|         <translation>JSON 不完整和異常</translation> |         <translation>JSON 不完整和異常</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="165"/> |         <location filename="../JsonEditorDialog.cpp" line="165"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="704"/> |         <location filename="../SnapmaticPicture.cpp" line="731"/> | ||||||
|         <source>JSON is incomplete</source> |         <source>JSON is incomplete</source> | ||||||
|         <translation>JSON 不完整</translation> |         <translation>JSON 不完整</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../JsonEditorDialog.cpp" line="169"/> |         <location filename="../JsonEditorDialog.cpp" line="169"/> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="708"/> |         <location filename="../SnapmaticPicture.cpp" line="735"/> | ||||||
|         <source>JSON is malformed</source> |         <source>JSON is malformed</source> | ||||||
|         <translation>JSON 異常</translation> |         <translation>JSON 異常</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="440"/> |         <location filename="../SnapmaticPicture.cpp" line="466"/> | ||||||
|         <source>PHOTO - %1</source> |         <source>PHOTO - %1</source> | ||||||
|         <translation>照片 - %1</translation> |         <translation>照片 - %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="660"/> |         <location filename="../SnapmaticPicture.cpp" line="687"/> | ||||||
|         <source>open file %1</source> |         <source>open file %1</source> | ||||||
|         <translation>開啟檔案 - %1</translation> |         <translation>開啟檔案 - %1</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="676"/> |         <location filename="../SnapmaticPicture.cpp" line="703"/> | ||||||
|         <source>header not exists</source> |         <source>header not exists</source> | ||||||
|         <translation>標頭不存在</translation> |         <translation>標頭不存在</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="680"/> |         <location filename="../SnapmaticPicture.cpp" line="707"/> | ||||||
|         <source>header is malformed</source> |         <source>header is malformed</source> | ||||||
|         <translation>標頭異常</translation> |         <translation>標頭異常</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="684"/> |         <location filename="../SnapmaticPicture.cpp" line="711"/> | ||||||
|         <source>picture not exists (%1)</source> |         <source>picture not exists (%1)</source> | ||||||
|         <translation>圖片不存在 (%1)</translation> |         <translation>圖片不存在 (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="688"/> |         <location filename="../SnapmaticPicture.cpp" line="715"/> | ||||||
|         <source>JSON not exists (%1)</source> |         <source>JSON not exists (%1)</source> | ||||||
|         <translation>JSON 不存在 (%1)</translation> |         <translation>JSON 不存在 (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="692"/> |         <location filename="../SnapmaticPicture.cpp" line="719"/> | ||||||
|         <source>title not exists (%1)</source> |         <source>title not exists (%1)</source> | ||||||
|         <translation>標題不存在 (%1)</translation> |         <translation>標題不存在 (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="696"/> |         <location filename="../SnapmaticPicture.cpp" line="723"/> | ||||||
|         <source>description not exists (%1)</source> |         <source>description not exists (%1)</source> | ||||||
|         <translation>描述不存在 (%1)</translation> |         <translation>描述不存在 (%1)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../SnapmaticPicture.cpp" line="710"/> |         <location filename="../SnapmaticPicture.cpp" line="737"/> | ||||||
|         <source>reading file %1 because of %2</source> |         <source>reading file %1 because of %2</source> | ||||||
|         <comment>Example for %2: JSON is malformed error</comment> |         <comment>Example for %2: JSON is malformed error</comment> | ||||||
|         <translation>讀取檔案 %1 失敗,因為 %2</translation> |         <translation>讀取檔案 %1 失敗,因為 %2</translation> | ||||||
|  | @ -1907,52 +1913,52 @@ Press 1 for Default View</source> | ||||||
|         <translation>刪除</translation> |         <translation>刪除</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1252"/> |         <location filename="../ProfileInterface.cpp" line="1313"/> | ||||||
|         <source>Edi&t</source> |         <source>Edi&t</source> | ||||||
|         <translation>編輯(&E)</translation> |         <translation>編輯(&E)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1255"/> |         <location filename="../ProfileInterface.cpp" line="1316"/> | ||||||
|         <source>Show &In-game</source> |         <source>Show &In-game</source> | ||||||
|         <translation>在遊戲中顯示(&I)</translation> |         <translation>在遊戲中顯示(&I)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1259"/> |         <location filename="../ProfileInterface.cpp" line="1320"/> | ||||||
|         <source>Hide &In-game</source> |         <source>Hide &In-game</source> | ||||||
|         <translation>在遊戲中隱藏(&I)</translation> |         <translation>在遊戲中隱藏(&I)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1266"/> |         <location filename="../ProfileInterface.cpp" line="1327"/> | ||||||
|         <source>&Export</source> |         <source>&Export</source> | ||||||
|         <translation>匯出(&E)</translation> |         <translation>匯出(&E)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1269"/> |         <location filename="../ProfileInterface.cpp" line="1330"/> | ||||||
|         <source>&View</source> |         <source>&View</source> | ||||||
|         <translation>檢視(&V)</translation> |         <translation>檢視(&V)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1272"/> |         <location filename="../ProfileInterface.cpp" line="1333"/> | ||||||
|         <source>&Remove</source> |         <source>&Remove</source> | ||||||
|         <translation>移除(&R)</translation> |         <translation>移除(&R)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1274"/> |         <location filename="../ProfileInterface.cpp" line="1335"/> | ||||||
|         <source>&Select</source> |         <source>&Select</source> | ||||||
|         <translation>選擇(&S)</translation> |         <translation>選擇(&S)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1275"/> |         <location filename="../ProfileInterface.cpp" line="1336"/> | ||||||
|         <source>&Deselect</source> |         <source>&Deselect</source> | ||||||
|         <translation>取消選擇(&D)</translation> |         <translation>取消選擇(&D)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1278"/> |         <location filename="../ProfileInterface.cpp" line="1339"/> | ||||||
|         <source>Select &All</source> |         <source>Select &All</source> | ||||||
|         <translation>選擇全部(&A)</translation> |         <translation>選擇全部(&A)</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1282"/> |         <location filename="../ProfileInterface.cpp" line="1343"/> | ||||||
|         <source>&Deselect All</source> |         <source>&Deselect All</source> | ||||||
|         <translation>取消選擇全部(&D)</translation> |         <translation>取消選擇全部(&D)</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -1980,22 +1986,22 @@ Press 1 for Default View</source> | ||||||
| <context> | <context> | ||||||
|     <name>TelemetryDialog</name> |     <name>TelemetryDialog</name> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="156"/> |         <location filename="../main.cpp" line="157"/> | ||||||
|         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> |         <source>You want help %1 to improve in the future by including personal usage data in your submission?</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="157"/> |         <location filename="../main.cpp" line="158"/> | ||||||
|         <source>%1 User Statistics</source> |         <source>%1 User Statistics</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="161"/> |         <location filename="../main.cpp" line="162"/> | ||||||
|         <source>Yes, I want include personal usage data.</source> |         <source>Yes, I want include personal usage data.</source> | ||||||
|         <translation type="unfinished"></translation> |         <translation type="unfinished"></translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../main.cpp" line="170"/> |         <location filename="../main.cpp" line="171"/> | ||||||
|         <source>&OK</source> |         <source>&OK</source> | ||||||
|         <translation type="unfinished">確定(&O)</translation> |         <translation type="unfinished">確定(&O)</translation> | ||||||
|     </message> |     </message> | ||||||
|  | @ -2171,15 +2177,15 @@ Press 1 for Default View</source> | ||||||
|         <translation>更改玩家(&P)...</translation> |         <translation>更改玩家(&P)...</translation> | ||||||
|     </message> |     </message> | ||||||
|     <message> |     <message> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1182"/> |         <location filename="../ProfileInterface.cpp" line="1243"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1196"/> |         <location filename="../ProfileInterface.cpp" line="1257"/> | ||||||
|         <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="1216"/> |         <location filename="../ProfileInterface.cpp" line="1277"/> | ||||||
|         <location filename="../ProfileInterface.cpp" line="1230"/> |         <location filename="../ProfileInterface.cpp" line="1291"/> | ||||||
|         <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> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue