add clipboard import

This commit is contained in:
Syping 2018-06-17 09:27:10 +02:00
parent 06a8657423
commit 3b305fb809
10 changed files with 1148 additions and 972 deletions

View File

@ -169,6 +169,10 @@ void DatabaseThread::scanCrewReference(const QStringList &crewList, const int &r
emit crewNameFound(crewID.toInt(), crewName);
}
}
else
{
netReply->abort();
}
if (threadRunning)
{

View File

@ -29,11 +29,15 @@
#include "ProfileLoader.h"
#include "ExportThread.h"
#include "ImportDialog.h"
#include "UiModLabel.h"
#include "pcg_basic.h"
#include "AppEnv.h"
#include "config.h"
#include <QNetworkAccessManager>
#include <QProgressDialog>
#include <QNetworkRequest>
#include <QStringBuilder>
#include <QNetworkReply>
#include <QImageReader>
#include <QProgressBar>
#include <QInputDialog>
@ -42,8 +46,10 @@
#include <QMessageBox>
#include <QMouseEvent>
#include <QFileDialog>
#include <QVBoxLayout>
#include <QEventLoop>
#include <QScrollBar>
#include <QClipboard>
#include <QFileInfo>
#include <QPalette>
#include <QPainter>
@ -710,19 +716,19 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
delete picture;
return false;
}
QImage *importImage = new QImage();
QImage *snapmaticImage = new QImage();
QImageReader snapmaticImageReader;
snapmaticImageReader.setDecideFormatFromContent(true);
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+"\""));
delete importImage;
delete snapmaticImage;
delete picture;
return false;
}
ImportDialog *importDialog = new ImportDialog(this);
importDialog->setImage(importImage);
importDialog->setImage(snapmaticImage);
importDialog->setModal(true);
importDialog->show();
importDialog->exec();
@ -804,6 +810,60 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
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)
{
QString picFileName = picture->getPictureFileName();
@ -1337,7 +1397,6 @@ void ProfileInterface::on_saProfileContent_dropped(const QMimeData *mimeData)
if (pathList.length() == 1)
{
QString selectedFile = pathList.at(0);
QDateTime importDateTime = QDateTime::currentDateTime();
importFile(selectedFile, QDateTime::currentDateTime(), true);
}
else if (pathList.length() > 1)
@ -1354,7 +1413,83 @@ void ProfileInterface::retranslateUi()
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)
{

View File

@ -116,6 +116,7 @@ private:
bool isSupportedImageFile(QString selectedFileName);
bool importFile(QString selectedFile, QDateTime importDateTime, bool notMultiple);
bool importImage(QImage *snapmaticImage, QDateTime importDateTime);
void importFilesProgress(QStringList selectedFiles);
bool importSnapmaticPicture(SnapmaticPicture *picture, bool warn = true);
bool importSavegameData(SavegameData *savegame, QString sgdPath, bool warn = true);

Binary file not shown.

View File

@ -66,37 +66,37 @@ Snapmatic Bilder und Spielständen</translation>
<translation>%1 ist lizenziert unter &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message>
<message>
<location filename="../config.h" line="49"/>
<location filename="../config.h" line="53"/>
<source>Release</source>
<translation>Release</translation>
</message>
<message>
<location filename="../config.h" line="55"/>
<location filename="../config.h" line="59"/>
<source>Release Candidate</source>
<translation>Release Candidate</translation>
</message>
<message>
<location filename="../config.h" line="61"/>
<location filename="../config.h" line="65"/>
<source>Daily Build</source>
<translation>Daily Build</translation>
</message>
<message>
<location filename="../config.h" line="67"/>
<location filename="../config.h" line="71"/>
<source>Developer</source>
<translation>Entwickler</translation>
</message>
<message>
<location filename="../config.h" line="73"/>
<location filename="../config.h" line="77"/>
<source>Beta</source>
<translation>Beta</translation>
</message>
<message>
<location filename="../config.h" line="79"/>
<location filename="../config.h" line="83"/>
<source>Alpha</source>
<translation>Alpha</translation>
</message>
<message>
<location filename="../config.h" line="84"/>
<location filename="../config.h" line="88"/>
<source>Custom</source>
<translation>Eigener</translation>
</message>
@ -314,14 +314,14 @@ Snapmatic Bilder und Spielständen</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="648"/>
<location filename="../ProfileInterface.cpp" line="658"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigener Avatar</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="667"/>
<location filename="../ProfileInterface.cpp" line="677"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigenes Bild</translation>
@ -780,31 +780,31 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="152"/>
<location filename="../ProfileInterface.cpp" line="1267"/>
<location filename="../ProfileInterface.cpp" line="1328"/>
<source>Export as &amp;Picture...</source>
<translation>Als &amp;Bild exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1268"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Als &amp;Snapmatic exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1261"/>
<location filename="../ProfileInterface.cpp" line="1322"/>
<source>&amp;Edit Properties...</source>
<translation>Eigenschaften bearb&amp;eiten...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1262"/>
<location filename="../ProfileInterface.cpp" line="1323"/>
<source>&amp;Overwrite Image...</source>
<translation>Bild &amp;überschreiben...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="158"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1325"/>
<source>Open &amp;Map Viewer...</source>
<translation>&amp;Kartenansicht öffnen...</translation>
</message>
@ -953,7 +953,7 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="1265"/>
<location filename="../ProfileInterface.cpp" line="1326"/>
<source>Open &amp;JSON Editor...</source>
<translation>&amp;JSON Editor öffnen...</translation>
</message>
@ -1051,25 +1051,26 @@ Drücke 1 für Standardmodus</translation>
<translation>S&amp;chließen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="172"/>
<source>Loading...</source>
<translation>Lade...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>Snapmatic Loader</source>
<translation>Snapmatic Lader</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImportDialog.cpp" line="328"/>
<location filename="../ProfileInterface.cpp" line="462"/>
<location filename="../ProfileInterface.cpp" line="529"/>
<location filename="../ProfileInterface.cpp" line="474"/>
<location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="1438"/>
<source>Import...</source>
<translation>Importieren...</translation>
</message>
@ -1080,63 +1081,63 @@ Drücke 1 für Standardmodus</translation>
<location filename="../ImportDialog.cpp" line="329"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="463"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="872"/>
<location filename="../ProfileInterface.cpp" line="475"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<location filename="../ProfileInterface.cpp" line="933"/>
<source>Import</source>
<translation>Importieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="480"/>
<location filename="../ProfileInterface.cpp" line="492"/>
<location filename="../UserInterface.cpp" line="455"/>
<source>Savegames files (SGTA*)</source>
<translation>Spielstanddateien (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="481"/>
<location filename="../ProfileInterface.cpp" line="493"/>
<location filename="../UserInterface.cpp" line="456"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic Bilder (PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="478"/>
<location filename="../ProfileInterface.cpp" line="490"/>
<source>Importable files (%1)</source>
<translation>Importfähige Dateien (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="339"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="494"/>
<source>All image files (%1)</source>
<translation>Alle Bilddateien (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="122"/>
<location filename="../ImportDialog.cpp" line="340"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../UserInterface.cpp" line="457"/>
<source>All files (**)</source>
<translation>Alle Dateien (**)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="530"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Import file %1 of %2 files</source>
<translation>Importiere Datei %1 von %2 Dateien</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<source>Import failed with...
%1</source>
@ -1145,13 +1146,13 @@ Drücke 1 für Standardmodus</translation>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../UserInterface.cpp" line="497"/>
<source>Failed to read Snapmatic picture</source>
<translation>Fehler beim Lesen vom Snapmatic Bild</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../UserInterface.cpp" line="513"/>
<source>Failed to read Savegame file</source>
<translation>Fehler beim Lesen von Spielstanddatei</translation>
@ -1159,135 +1160,135 @@ Drücke 1 für Standardmodus</translation>
<message>
<location filename="../ImageEditorDialog.cpp" line="142"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="151"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Kann %1 nicht importieren weil die Datei nicht richtig gelesen werden kann</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Kann %1 nicht importieren weil das Dateiformat nicht erkannt werden kann</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1081"/>
<source>Initialising export...</source>
<translation>Initialisiere Export...</translation>
</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>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, Datei beginnt nicht mit PGTA oder endet mit .g5e</translation>
</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>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, dieses Bild ist bereits im Spiel</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Exportiere Snapmatic Bilder%2&lt;br&gt;&lt;br&gt;JPG Bilder machen es möglich sie mit ein Bildansicht Programm zu öffnen&lt;br&gt;Das GTA Snapmatic Format macht es möglich sie wieder ins Game zu importieren&lt;br&gt;&lt;br&gt;Exportieren als:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../UserInterface.cpp" line="545"/>
<source>No valid file is selected</source>
<translation>Keine gültige Datei wurde ausgewählt</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="70"/>
<location filename="../ProfileInterface.cpp" line="79"/>
<source>Enabled pictures: %1 of %2</source>
<translation>Aktivierte Bilder: %1 von %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Fehlgeschlagen beim Importieren vom Snapmatic Bild, kann Snapmatic Bild nicht ins Profil kopieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kann Spielstanddatei nicht ins Profil kopieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="872"/>
<location filename="../ProfileInterface.cpp" line="933"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Fehlgeschlagen beim Importieren vom Spielstand, kein Spielstandslot mehr frei</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="959"/>
<location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1038"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG Bilder und GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="960"/>
<location filename="../ProfileInterface.cpp" line="982"/>
<location filename="../ProfileInterface.cpp" line="1021"/>
<location filename="../ProfileInterface.cpp" line="1043"/>
<source>JPG pictures only</source>
<translation>Nur JPG Bilder</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1022"/>
<location filename="../ProfileInterface.cpp" line="1047"/>
<source>GTA Snapmatic only</source>
<translation>Nur GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1578"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1895"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1810"/>
<location filename="../ProfileInterface.cpp" line="1928"/>
<location filename="../ProfileInterface.cpp" line="2030"/>
<source>Patch selected...</source>
<translation>Auswahl patchen...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1579"/>
<location filename="../ProfileInterface.cpp" line="1598"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="1915"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<location filename="../ProfileInterface.cpp" line="1830"/>
<location filename="../ProfileInterface.cpp" line="1929"/>
<location filename="../ProfileInterface.cpp" line="1948"/>
<location filename="../ProfileInterface.cpp" line="2031"/>
<location filename="../ProfileInterface.cpp" line="2050"/>
<source>Patch file %1 of %2 files</source>
<translation>Patche Datei %1 von %2 Dateien</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1567"/>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Qualify as Avatar</source>
<translation>Als Avatar qualifizieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1567"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<source>No Snapmatic pictures are selected</source>
<translation>Keine Snapmatic Bilder sind ausgewählt</translation>
</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>
<translation>Fehlgeschlagen beim Entfernen von allen augewählten Snapmatic Bildern und/oder Spielstanddateien</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>%1 failed with...
%2</source>
@ -1297,88 +1298,93 @@ Drücke 1 für Standardmodus</translation>
%2</translation>
</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>
<comment>%1 failed with...</comment>
<translation>Qualifizieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players...</source>
<translation>Spieler ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Spieler ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew...</source>
<translation>Crew ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Fehlgeschlagen beim Eingeben von einer gültigen Crew ID</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Crew ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title...</source>
<translation>Titel ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Fehlgeschlagen beim Eingeben eines gültigen Snapmatic Titel</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Titel ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Keine Snapmatic Bilder oder Spielstände sind ausgewählt</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1082"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1143"/>
<location filename="../ProfileInterface.cpp" line="1171"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>Remove selected</source>
<translation>Auswahl löschen</translation>
</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>
<translation>Möchtest du wirklich die ausgewählten Snapmatic Bilder und Spielstanddateien löschen?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="936"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1019"/>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="997"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<source>Export selected...</source>
<translation>Auswahl exportieren...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<source>Export failed with...
%1</source>
@ -1397,7 +1403,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Alle Profildateien (*.g5e SGTA* PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="479"/>
<location filename="../ProfileInterface.cpp" line="491"/>
<location filename="../UserInterface.cpp" line="454"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
@ -1406,17 +1412,17 @@ Drücke 1 für Standardmodus</translation>
<context>
<name>QApplication</name>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Font</source>
<translation>Schrift</translation>
</message>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Selected Font: %1</source>
<translation>Ausgewähle Schrift: %1</translation>
</message>
<message>
<location filename="../main.cpp" line="127"/>
<location filename="../main.cpp" line="128"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;Willkommen zu %1!&lt;/h4&gt;Möchtest du %1 einstellen bevor du es nutzt?</translation>
</message>
@ -1532,32 +1538,32 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1303"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<source>&amp;View</source>
<translation>A&amp;nsehen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1305"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1307"/>
<location filename="../ProfileInterface.cpp" line="1368"/>
<source>&amp;Select</source>
<translation>Au&amp;swählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1308"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1311"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<source>Select &amp;All</source>
<translation>&amp;Alles auswählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1315"/>
<location filename="../ProfileInterface.cpp" line="1376"/>
<source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation>
</message>
@ -1572,7 +1578,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Spielstand kopieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1304"/>
<location filename="../ProfileInterface.cpp" line="1365"/>
<source>&amp;Export</source>
<translation>&amp;Exportieren</translation>
</message>
@ -1666,7 +1672,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>Snapmatic Title</source>
<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>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>New Snapmatic title:</source>
<translation>Neuer Snapmatic Titel:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>Snapmatic Crew</source>
<translation>Snapmatic Crew</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>New Snapmatic crew:</source>
<translation>Neue Snapmatic Crew:</translation>
@ -1793,66 +1799,66 @@ Drücke 1 für Standardmodus</translation>
<context>
<name>SnapmaticPicture</name>
<message>
<location filename="../SnapmaticPicture.cpp" line="440"/>
<location filename="../SnapmaticPicture.cpp" line="466"/>
<source>PHOTO - %1</source>
<translation>FOTO - %1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="660"/>
<location filename="../SnapmaticPicture.cpp" line="687"/>
<source>open file %1</source>
<translation>Datei öffnen %1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="676"/>
<location filename="../SnapmaticPicture.cpp" line="703"/>
<source>header not exists</source>
<translation>Header nicht existiert</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="680"/>
<location filename="../SnapmaticPicture.cpp" line="707"/>
<source>header is malformed</source>
<translation>Header fehlerhaft ist</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="684"/>
<location filename="../SnapmaticPicture.cpp" line="711"/>
<source>picture not exists (%1)</source>
<translation>Bild nicht existiert (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="688"/>
<location filename="../SnapmaticPicture.cpp" line="715"/>
<source>JSON not exists (%1)</source>
<translation>JSON nicht existiert (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="692"/>
<location filename="../SnapmaticPicture.cpp" line="719"/>
<source>title not exists (%1)</source>
<translation>Titel nicht existiert (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="696"/>
<location filename="../SnapmaticPicture.cpp" line="723"/>
<source>description not exists (%1)</source>
<translation>Beschreibung nicht existiert (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="710"/>
<location filename="../SnapmaticPicture.cpp" line="737"/>
<source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment>
<translation>Datei lesen von %1 weil %2</translation>
</message>
<message>
<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>
<translation>JSON ist unvollständig und Fehlerhaft</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="704"/>
<location filename="../SnapmaticPicture.cpp" line="731"/>
<source>JSON is incomplete</source>
<translation>JSON ist unvollständig</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="169"/>
<location filename="../SnapmaticPicture.cpp" line="708"/>
<location filename="../SnapmaticPicture.cpp" line="735"/>
<source>JSON is malformed</source>
<translation>JSON ist Fehlerhaft</translation>
</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>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1252"/>
<location filename="../ProfileInterface.cpp" line="1313"/>
<source>Edi&amp;t</source>
<translation>Bearbei&amp;ten</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1266"/>
<location filename="../ProfileInterface.cpp" line="1327"/>
<source>&amp;Export</source>
<translation>&amp;Exportieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1316"/>
<source>Show &amp;In-game</source>
<translation>&amp;Im Spiel anzeigen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1259"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>Hide &amp;In-game</source>
<translation>&amp;Im Spiel ausblenden</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1269"/>
<location filename="../ProfileInterface.cpp" line="1330"/>
<source>&amp;View</source>
<translation>A&amp;nsehen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1272"/>
<location filename="../ProfileInterface.cpp" line="1333"/>
<source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1274"/>
<location filename="../ProfileInterface.cpp" line="1335"/>
<source>&amp;Select</source>
<translation>Au&amp;swählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1275"/>
<location filename="../ProfileInterface.cpp" line="1336"/>
<source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1339"/>
<source>Select &amp;All</source>
<translation>Alles &amp;auswählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1282"/>
<location filename="../ProfileInterface.cpp" line="1343"/>
<source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation>
</message>
@ -1985,22 +1991,22 @@ Drücke 1 für Standardmodus</translation>
<context>
<name>TelemetryDialog</name>
<message>
<location filename="../main.cpp" line="157"/>
<location filename="../main.cpp" line="158"/>
<source>%1 User Statistics</source>
<translation>%1 Benutzerstatistik</translation>
</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>
<translation>Sollen bei Einreichungen Persönliche Nutzungsdaten einbezogen werden um %1 in der Zukunft zu unterstützen?</translation>
</message>
<message>
<location filename="../main.cpp" line="161"/>
<location filename="../main.cpp" line="162"/>
<source>Yes, I want include personal usage data.</source>
<translation>Ja, ich möchte Persönliche Nutzungsdaten einbeziehen.</translation>
</message>
<message>
<location filename="../main.cpp" line="170"/>
<location filename="../main.cpp" line="171"/>
<source>&amp;OK</source>
<translation>&amp;OK</translation>
</message>
@ -2201,15 +2207,15 @@ Drücke 1 für Standardmodus</translation>
<translation>&amp;Neuladen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../SnapmaticWidget.cpp" line="298"/>
<source>Show In-game</source>
<translation>Im Spiel anzeigen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../SnapmaticWidget.cpp" line="290"/>
<source>Hide In-game</source>
<translation>Im Spiel ausblenden</translation>

View File

@ -56,37 +56,37 @@ Pictures and Savegames</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="49"/>
<location filename="../config.h" line="53"/>
<source>Release</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="55"/>
<location filename="../config.h" line="59"/>
<source>Release Candidate</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="61"/>
<location filename="../config.h" line="65"/>
<source>Daily Build</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="67"/>
<location filename="../config.h" line="71"/>
<source>Developer</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="73"/>
<location filename="../config.h" line="77"/>
<source>Beta</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="79"/>
<location filename="../config.h" line="83"/>
<source>Alpha</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="84"/>
<location filename="../config.h" line="88"/>
<source>Custom</source>
<translation></translation>
</message>
@ -304,14 +304,14 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="648"/>
<location filename="../ProfileInterface.cpp" line="658"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="667"/>
<location filename="../ProfileInterface.cpp" line="677"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation></translation>
@ -759,31 +759,31 @@ Y: %2</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="152"/>
<location filename="../ProfileInterface.cpp" line="1267"/>
<location filename="../ProfileInterface.cpp" line="1328"/>
<source>Export as &amp;Picture...</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1268"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<source>Export as &amp;Snapmatic...</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1262"/>
<location filename="../ProfileInterface.cpp" line="1323"/>
<source>&amp;Overwrite Image...</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1261"/>
<location filename="../ProfileInterface.cpp" line="1322"/>
<source>&amp;Edit Properties...</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="158"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1325"/>
<source>Open &amp;Map Viewer...</source>
<translation></translation>
</message>
@ -935,7 +935,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="1265"/>
<location filename="../ProfileInterface.cpp" line="1326"/>
<source>Open &amp;JSON Editor...</source>
<translation></translation>
</message>
@ -1039,30 +1039,31 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="70"/>
<location filename="../ProfileInterface.cpp" line="79"/>
<source>Enabled pictures: %1 of %2</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="172"/>
<source>Loading...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>Snapmatic Loader</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImportDialog.cpp" line="328"/>
<location filename="../ProfileInterface.cpp" line="462"/>
<location filename="../ProfileInterface.cpp" line="529"/>
<location filename="../ProfileInterface.cpp" line="474"/>
<location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="1438"/>
<source>Import...</source>
<translation></translation>
</message>
@ -1073,42 +1074,42 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="329"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="463"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="872"/>
<location filename="../ProfileInterface.cpp" line="475"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<location filename="../ProfileInterface.cpp" line="933"/>
<source>Import</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="478"/>
<location filename="../ProfileInterface.cpp" line="490"/>
<source>Importable files (%1)</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="479"/>
<location filename="../ProfileInterface.cpp" line="491"/>
<location filename="../UserInterface.cpp" line="454"/>
<source>GTA V Export (*.g5e)</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="480"/>
<location filename="../ProfileInterface.cpp" line="492"/>
<location filename="../UserInterface.cpp" line="455"/>
<source>Savegames files (SGTA*)</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="481"/>
<location filename="../ProfileInterface.cpp" line="493"/>
<location filename="../UserInterface.cpp" line="456"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation></translation>
@ -1116,46 +1117,46 @@ Press 1 for Default View</source>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="339"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="494"/>
<source>All image files (%1)</source>
<translation></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="122"/>
<location filename="../ImportDialog.cpp" line="340"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../UserInterface.cpp" line="457"/>
<source>All files (**)</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../UserInterface.cpp" line="545"/>
<source>No valid file is selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="530"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Import file %1 of %2 files</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<source>Import failed with...
%1</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../UserInterface.cpp" line="497"/>
<source>Failed to read Snapmatic picture</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../UserInterface.cpp" line="513"/>
<source>Failed to read Savegame file</source>
<translation></translation>
@ -1163,152 +1164,152 @@ Press 1 for Default View</source>
<message>
<location filename="../ImageEditorDialog.cpp" line="142"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="151"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation></translation>
</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>
<translation></translation>
</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>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation></translation>
</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>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="959"/>
<location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1038"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="960"/>
<location filename="../ProfileInterface.cpp" line="982"/>
<location filename="../ProfileInterface.cpp" line="1021"/>
<location filename="../ProfileInterface.cpp" line="1043"/>
<source>JPG pictures only</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1022"/>
<location filename="../ProfileInterface.cpp" line="1047"/>
<source>GTA Snapmatic only</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="936"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1019"/>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="997"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<source>Export selected...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1081"/>
<source>Initialising export...</source>
<translation>Initializing export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<source>Export failed with...
%1</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1082"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1143"/>
<location filename="../ProfileInterface.cpp" line="1171"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>Remove selected</source>
<translation></translation>
</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>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1567"/>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Qualify as Avatar</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1567"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<source>No Snapmatic pictures are selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1578"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1895"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1810"/>
<location filename="../ProfileInterface.cpp" line="1928"/>
<location filename="../ProfileInterface.cpp" line="2030"/>
<source>Patch selected...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1579"/>
<location filename="../ProfileInterface.cpp" line="1598"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="1915"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<location filename="../ProfileInterface.cpp" line="1830"/>
<location filename="../ProfileInterface.cpp" line="1929"/>
<location filename="../ProfileInterface.cpp" line="1948"/>
<location filename="../ProfileInterface.cpp" line="2031"/>
<location filename="../ProfileInterface.cpp" line="2050"/>
<source>Patch file %1 of %2 files</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>%1 failed with...
%2</source>
@ -1316,60 +1317,65 @@ Press 1 for Default View</source>
<translation></translation>
</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>
<translation></translation>
</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>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title...</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation></translation>
@ -1383,17 +1389,17 @@ Press 1 for Default View</source>
<context>
<name>QApplication</name>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Font</source>
<translation></translation>
</message>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Selected Font: %1</source>
<translation></translation>
</message>
<message>
<location filename="../main.cpp" line="127"/>
<location filename="../main.cpp" line="128"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation></translation>
</message>
@ -1471,37 +1477,37 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1303"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<source>&amp;View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1304"/>
<location filename="../ProfileInterface.cpp" line="1365"/>
<source>&amp;Export</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1305"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>&amp;Remove</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1307"/>
<location filename="../ProfileInterface.cpp" line="1368"/>
<source>&amp;Select</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1308"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<source>&amp;Deselect</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1311"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<source>Select &amp;All</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1315"/>
<location filename="../ProfileInterface.cpp" line="1376"/>
<source>&amp;Deselect All</source>
<translation></translation>
</message>
@ -1741,25 +1747,25 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>Snapmatic Title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>New Snapmatic title:</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>Snapmatic Crew</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>New Snapmatic crew:</source>
<translation></translation>
@ -1768,66 +1774,66 @@ Press 1 for Default View</source>
<context>
<name>SnapmaticPicture</name>
<message>
<location filename="../SnapmaticPicture.cpp" line="440"/>
<location filename="../SnapmaticPicture.cpp" line="466"/>
<source>PHOTO - %1</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="660"/>
<location filename="../SnapmaticPicture.cpp" line="687"/>
<source>open file %1</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="676"/>
<location filename="../SnapmaticPicture.cpp" line="703"/>
<source>header not exists</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="680"/>
<location filename="../SnapmaticPicture.cpp" line="707"/>
<source>header is malformed</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="684"/>
<location filename="../SnapmaticPicture.cpp" line="711"/>
<source>picture not exists (%1)</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="688"/>
<location filename="../SnapmaticPicture.cpp" line="715"/>
<source>JSON not exists (%1)</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="692"/>
<location filename="../SnapmaticPicture.cpp" line="719"/>
<source>title not exists (%1)</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="696"/>
<location filename="../SnapmaticPicture.cpp" line="723"/>
<source>description not exists (%1)</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="710"/>
<location filename="../SnapmaticPicture.cpp" line="737"/>
<source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment>
<translation></translation>
</message>
<message>
<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>
<translation></translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="704"/>
<location filename="../SnapmaticPicture.cpp" line="731"/>
<source>JSON is incomplete</source>
<translation></translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="169"/>
<location filename="../SnapmaticPicture.cpp" line="708"/>
<location filename="../SnapmaticPicture.cpp" line="735"/>
<source>JSON is malformed</source>
<translation></translation>
</message>
@ -1887,52 +1893,52 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1252"/>
<location filename="../ProfileInterface.cpp" line="1313"/>
<source>Edi&amp;t</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1316"/>
<source>Show &amp;In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1259"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>Hide &amp;In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1266"/>
<location filename="../ProfileInterface.cpp" line="1327"/>
<source>&amp;Export</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1269"/>
<location filename="../ProfileInterface.cpp" line="1330"/>
<source>&amp;View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1272"/>
<location filename="../ProfileInterface.cpp" line="1333"/>
<source>&amp;Remove</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1274"/>
<location filename="../ProfileInterface.cpp" line="1335"/>
<source>&amp;Select</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1275"/>
<location filename="../ProfileInterface.cpp" line="1336"/>
<source>&amp;Deselect</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1339"/>
<source>Select &amp;All</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1282"/>
<location filename="../ProfileInterface.cpp" line="1343"/>
<source>&amp;Deselect All</source>
<translation></translation>
</message>
@ -1960,22 +1966,22 @@ Press 1 for Default View</source>
<context>
<name>TelemetryDialog</name>
<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>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="157"/>
<location filename="../main.cpp" line="158"/>
<source>%1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="161"/>
<location filename="../main.cpp" line="162"/>
<source>Yes, I want include personal usage data.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="170"/>
<location filename="../main.cpp" line="171"/>
<source>&amp;OK</source>
<translation type="unfinished"></translation>
</message>
@ -2176,15 +2182,15 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../SnapmaticWidget.cpp" line="298"/>
<source>Show In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../SnapmaticWidget.cpp" line="290"/>
<source>Hide In-game</source>
<translation></translation>

View File

@ -66,37 +66,37 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<translation>%1 est distribué sous license &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message>
<message>
<location filename="../config.h" line="49"/>
<location filename="../config.h" line="53"/>
<source>Release</source>
<translation>Release</translation>
</message>
<message>
<location filename="../config.h" line="55"/>
<location filename="../config.h" line="59"/>
<source>Release Candidate</source>
<translation>Release Candidate</translation>
</message>
<message>
<location filename="../config.h" line="61"/>
<location filename="../config.h" line="65"/>
<source>Daily Build</source>
<translation>Daily Build</translation>
</message>
<message>
<location filename="../config.h" line="67"/>
<location filename="../config.h" line="71"/>
<source>Developer</source>
<translation>Developer</translation>
</message>
<message>
<location filename="../config.h" line="73"/>
<location filename="../config.h" line="77"/>
<source>Beta</source>
<translation>Beta</translation>
</message>
<message>
<location filename="../config.h" line="79"/>
<location filename="../config.h" line="83"/>
<source>Alpha</source>
<translation>Alpha</translation>
</message>
<message>
<location filename="../config.h" line="84"/>
<location filename="../config.h" line="88"/>
<source>Custom</source>
<translation>Personnalisé</translation>
</message>
@ -314,14 +314,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="648"/>
<location filename="../ProfileInterface.cpp" line="658"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Avatar personnalisé</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="667"/>
<location filename="../ProfileInterface.cpp" line="677"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Image personnalisé</translation>
@ -860,31 +860,31 @@ Y : %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="152"/>
<location filename="../ProfileInterface.cpp" line="1267"/>
<location filename="../ProfileInterface.cpp" line="1328"/>
<source>Export as &amp;Picture...</source>
<translation>Exporter comme &amp;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1268"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Exporter comme &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1262"/>
<location filename="../ProfileInterface.cpp" line="1323"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Remplacer l&apos;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1261"/>
<location filename="../ProfileInterface.cpp" line="1322"/>
<source>&amp;Edit Properties...</source>
<translation>Modifier les &amp;propriétés...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="158"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1325"/>
<source>Open &amp;Map Viewer...</source>
<translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
</message>
@ -953,7 +953,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="1265"/>
<location filename="../ProfileInterface.cpp" line="1326"/>
<source>Open &amp;JSON Editor...</source>
<translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
</message>
@ -1057,30 +1057,31 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Copie du fichier %1 sur %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="70"/>
<location filename="../ProfileInterface.cpp" line="79"/>
<source>Enabled pictures: %1 of %2</source>
<translation>Photos activées : %1 sur %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="172"/>
<source>Loading...</source>
<translation>Chargement...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Les Snapmatic suivants ont é répaés&lt;/h4&gt;%1</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImportDialog.cpp" line="328"/>
<location filename="../ProfileInterface.cpp" line="462"/>
<location filename="../ProfileInterface.cpp" line="529"/>
<location filename="../ProfileInterface.cpp" line="474"/>
<location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="1438"/>
<source>Import...</source>
<translation>Importer...</translation>
</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="360"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="463"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="872"/>
<location filename="../ProfileInterface.cpp" line="475"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<location filename="../ProfileInterface.cpp" line="933"/>
<source>Import</source>
<translation>Importer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="480"/>
<location filename="../ProfileInterface.cpp" line="492"/>
<location filename="../UserInterface.cpp" line="455"/>
<source>Savegames files (SGTA*)</source>
<translation>Fichiers de sauvegarde GTA (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="481"/>
<location filename="../ProfileInterface.cpp" line="493"/>
<location filename="../UserInterface.cpp" line="456"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Photos Snapmatic (PGTA*)</translation>
@ -1123,26 +1124,26 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="339"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="494"/>
<source>All image files (%1)</source>
<translation>Toutes les images (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="122"/>
<location filename="../ImportDialog.cpp" line="340"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../UserInterface.cpp" line="457"/>
<source>All files (**)</source>
<translation>Tous les fichiers (**)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="530"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Import file %1 of %2 files</source>
<translation>Importation du fichier %1 sur %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<source>Import failed with...
%1</source>
@ -1151,25 +1152,25 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../UserInterface.cpp" line="545"/>
<source>No valid file is selected</source>
<translation>Fichier invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="478"/>
<location filename="../ProfileInterface.cpp" line="490"/>
<source>Importable files (%1)</source>
<translation>Fichiers importables (%1)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../UserInterface.cpp" line="497"/>
<source>Failed to read Snapmatic picture</source>
<translation>Impossible d&apos;ouvrir la photo Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../UserInterface.cpp" line="513"/>
<source>Failed to read Savegame file</source>
<translation>Impossible de lire le fichier de sauvegarde</translation>
@ -1177,127 +1178,127 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message>
<location filename="../ImageEditorDialog.cpp" line="142"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="151"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être parsé correctement</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Impossible d&apos;importer %1, le format du fichier n&apos;est pas détecté</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Impossible d&apos;importer la photo Snapmatic,nom de fichier incorrect (PGTA*, *.g5e)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Impossible d&apos;importer la photo Snapmatic, un fichier du même nom existe déjà</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Impossible d&apos;importer la photo Snapmatic, impossible de copier le fichier dans le profil</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Impossible d&apos;importer la sauvegarde, impossible de copier le fichier dans le profil</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="872"/>
<location filename="../ProfileInterface.cpp" line="933"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Impossible d&apos;importer la sauvegarde, aucun emplacement libre</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="959"/>
<location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1038"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>Images JPG et GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="960"/>
<location filename="../ProfileInterface.cpp" line="982"/>
<location filename="../ProfileInterface.cpp" line="1021"/>
<location filename="../ProfileInterface.cpp" line="1043"/>
<source>JPG pictures only</source>
<translation>Images JPG seulement</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1022"/>
<location filename="../ProfileInterface.cpp" line="1047"/>
<source>GTA Snapmatic only</source>
<translation>GTA Snapmatic seulement</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Exporter les photos Snapmatic%2&lt;br&gt;&lt;br&gt;Les fichiers JPG permettent d&apos;ouvrir les photos avec une visionneuse d&apos;images&lt;br&gt;Les GTA Snapmatic permettent d&apos;importer les photos dans le jeu&lt;br&gt;&lt;br&gt;Exporter comme :</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="936"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1019"/>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="997"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<source>Export selected...</source>
<translation>Exporter la sélection...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1081"/>
<source>Initialising export...</source>
<translation>Initialisation de l&apos;export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1567"/>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Qualify as Avatar</source>
<translation>Qualifier comme Avatar</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1567"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<source>No Snapmatic pictures are selected</source>
<translation>Aucun Snapmatic sélectionné</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1578"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1895"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1810"/>
<location filename="../ProfileInterface.cpp" line="1928"/>
<location filename="../ProfileInterface.cpp" line="2030"/>
<source>Patch selected...</source>
<translation>Patcher la sélection...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1579"/>
<location filename="../ProfileInterface.cpp" line="1598"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="1915"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<location filename="../ProfileInterface.cpp" line="1830"/>
<location filename="../ProfileInterface.cpp" line="1929"/>
<location filename="../ProfileInterface.cpp" line="1948"/>
<location filename="../ProfileInterface.cpp" line="2031"/>
<location filename="../ProfileInterface.cpp" line="2050"/>
<source>Patch file %1 of %2 files</source>
<translation>Patch du fichier %1 sur %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>%1 failed with...
%2</source>
@ -1307,66 +1308,71 @@ Appuyer sur 1 pour le mode par défaut</translation>
%2</translation>
</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>
<translation>Échec de la supression des Snapmatic et/ou des fichiers de sauvegarde sélectionnés</translation>
</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>
<comment>%1 failed with...</comment>
<translation>Qualifier</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players...</source>
<translation>Modifier les joueurs...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Modifier les joueurs</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew...</source>
<translation>Modifier le Crew...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Snapmatic Crew ID invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Changer le Crew</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title...</source>
<translation>Changer le titre...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Titre Snapmatic invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Changer le titre</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<source>Export failed with...
%1</source>
@ -1375,20 +1381,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Aucun fichier de sauvegarde ou photo Snapmatic sélectionné</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1082"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1143"/>
<location filename="../ProfileInterface.cpp" line="1171"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>Remove selected</source>
<translation>Supprimer la sélection</translation>
</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>
<translation>Supprimer la sélection ?</translation>
</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>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="479"/>
<location filename="../ProfileInterface.cpp" line="491"/>
<location filename="../UserInterface.cpp" line="454"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
@ -1407,17 +1413,17 @@ Appuyer sur 1 pour le mode par défaut</translation>
<context>
<name>QApplication</name>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Font</source>
<translation>Police</translation>
</message>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Selected Font: %1</source>
<translation>Police sélectionnée : %1</translation>
</message>
<message>
<location filename="../main.cpp" line="127"/>
<location filename="../main.cpp" line="128"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;Bienvenue sur %1!&lt;/h4&gt;Voulez-vous configurer %1 avant de l&apos;utiliser t?</translation>
</message>
@ -1495,7 +1501,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1304"/>
<location filename="../ProfileInterface.cpp" line="1365"/>
<source>&amp;Export</source>
<translation>&amp;Exporter</translation>
</message>
@ -1586,32 +1592,32 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible de supprimer %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1303"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<source>&amp;View</source>
<translation>&amp;Voir</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1305"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>&amp;Remove</source>
<translation>&amp;Supprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1307"/>
<location filename="../ProfileInterface.cpp" line="1368"/>
<source>&amp;Select</source>
<translation>&amp;Sélectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1308"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1311"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<source>Select &amp;All</source>
<translation>Sélectionner to&amp;ut</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1315"/>
<location filename="../ProfileInterface.cpp" line="1376"/>
<source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation>
</message>
@ -1667,7 +1673,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>Snapmatic Title</source>
<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&apos;entrée/sortie</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>New Snapmatic title:</source>
<translation>Nouveau titre Snapmatic :</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>Snapmatic Crew</source>
<translation>Crew Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>New Snapmatic crew:</source>
<translation>Nouveau crew Snapmatic :</translation>
@ -1796,66 +1802,66 @@ Appuyer sur 1 pour le mode par défaut</translation>
<context>
<name>SnapmaticPicture</name>
<message>
<location filename="../SnapmaticPicture.cpp" line="440"/>
<location filename="../SnapmaticPicture.cpp" line="466"/>
<source>PHOTO - %1</source>
<translation>PHOTO - %1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="660"/>
<location filename="../SnapmaticPicture.cpp" line="687"/>
<source>open file %1</source>
<translation>ouverture du fichier %1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="676"/>
<location filename="../SnapmaticPicture.cpp" line="703"/>
<source>header not exists</source>
<translation>les headers n&apos;existent pas</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="680"/>
<location filename="../SnapmaticPicture.cpp" line="707"/>
<source>header is malformed</source>
<translation>les headers sont incorrects</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="684"/>
<location filename="../SnapmaticPicture.cpp" line="711"/>
<source>picture not exists (%1)</source>
<translation>l&apos;image n&apos;existe pas (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="688"/>
<location filename="../SnapmaticPicture.cpp" line="715"/>
<source>JSON not exists (%1)</source>
<translation>le JSON n&apos;existe pas (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="692"/>
<location filename="../SnapmaticPicture.cpp" line="719"/>
<source>title not exists (%1)</source>
<translation>le titre n&apos;existe pas (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="696"/>
<location filename="../SnapmaticPicture.cpp" line="723"/>
<source>description not exists (%1)</source>
<translation>la description n&apos;existe pas (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="710"/>
<location filename="../SnapmaticPicture.cpp" line="737"/>
<source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment>
<translation>lecture du fichier %1 : %2</translation>
</message>
<message>
<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>
<translation>JSON incomplet ou incorrect</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="704"/>
<location filename="../SnapmaticPicture.cpp" line="731"/>
<source>JSON is incomplete</source>
<translation>JSON incomplet</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="169"/>
<location filename="../SnapmaticPicture.cpp" line="708"/>
<location filename="../SnapmaticPicture.cpp" line="735"/>
<source>JSON is malformed</source>
<translation>JSON incorrect</translation>
</message>
@ -1935,52 +1941,52 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>%1 n&apos;a pas pu être rendu visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1252"/>
<location filename="../ProfileInterface.cpp" line="1313"/>
<source>Edi&amp;t</source>
<translation>Édi&amp;ter</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1316"/>
<source>Show &amp;In-game</source>
<translation>&amp;Visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1259"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>Hide &amp;In-game</source>
<translation>&amp;Invisible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1266"/>
<location filename="../ProfileInterface.cpp" line="1327"/>
<source>&amp;Export</source>
<translation>&amp;Exporter</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1269"/>
<location filename="../ProfileInterface.cpp" line="1330"/>
<source>&amp;View</source>
<translation>&amp;Voir</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1272"/>
<location filename="../ProfileInterface.cpp" line="1333"/>
<source>&amp;Remove</source>
<translation>S&amp;upprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1274"/>
<location filename="../ProfileInterface.cpp" line="1335"/>
<source>&amp;Select</source>
<translation>&amp;Sélectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1275"/>
<location filename="../ProfileInterface.cpp" line="1336"/>
<source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1339"/>
<source>Select &amp;All</source>
<translation>Sélectionner &amp;tout</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1282"/>
<location filename="../ProfileInterface.cpp" line="1343"/>
<source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation>
</message>
@ -1988,22 +1994,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
<context>
<name>TelemetryDialog</name>
<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>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="157"/>
<location filename="../main.cpp" line="158"/>
<source>%1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="161"/>
<location filename="../main.cpp" line="162"/>
<source>Yes, I want include personal usage data.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="170"/>
<location filename="../main.cpp" line="171"/>
<source>&amp;OK</source>
<translation type="unfinished">&amp;OK</translation>
</message>
@ -2204,15 +2210,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible d&apos;ouvrir %1, format invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../SnapmaticWidget.cpp" line="298"/>
<source>Show In-game</source>
<translation>Visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../SnapmaticWidget.cpp" line="290"/>
<source>Hide In-game</source>
<translation>Invisible en jeu</translation>

View File

@ -66,37 +66,37 @@ Pictures and Savegames</source>
<translation>%1 под лицензией &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message>
<message>
<location filename="../config.h" line="49"/>
<location filename="../config.h" line="53"/>
<source>Release</source>
<translation>Релиз</translation>
</message>
<message>
<location filename="../config.h" line="55"/>
<location filename="../config.h" line="59"/>
<source>Release Candidate</source>
<translation>Предварительный выпуск</translation>
</message>
<message>
<location filename="../config.h" line="61"/>
<location filename="../config.h" line="65"/>
<source>Daily Build</source>
<translation>Дневная сборка</translation>
</message>
<message>
<location filename="../config.h" line="67"/>
<location filename="../config.h" line="71"/>
<source>Developer</source>
<translation>Разработчик</translation>
</message>
<message>
<location filename="../config.h" line="73"/>
<location filename="../config.h" line="77"/>
<source>Beta</source>
<translation>Бета</translation>
</message>
<message>
<location filename="../config.h" line="79"/>
<location filename="../config.h" line="83"/>
<source>Alpha</source>
<translation>Альфа</translation>
</message>
<message>
<location filename="../config.h" line="84"/>
<location filename="../config.h" line="88"/>
<source>Custom</source>
<translatorcomment>Не известен контекст</translatorcomment>
<translation>Своя</translation>
@ -318,14 +318,14 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="648"/>
<location filename="../ProfileInterface.cpp" line="658"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Свой Аватар</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="667"/>
<location filename="../ProfileInterface.cpp" line="677"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Своя Картинка</translation>
@ -785,31 +785,31 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="152"/>
<location filename="../ProfileInterface.cpp" line="1267"/>
<location filename="../ProfileInterface.cpp" line="1328"/>
<source>Export as &amp;Picture...</source>
<translation>Экспортировать как &amp;картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1268"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Экспортировать как &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1262"/>
<location filename="../ProfileInterface.cpp" line="1323"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписать картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1261"/>
<location filename="../ProfileInterface.cpp" line="1322"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Изменить свойства...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="158"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1325"/>
<source>Open &amp;Map Viewer...</source>
<translation>Открыть &amp;карту...</translation>
</message>
@ -958,7 +958,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../PictureDialog.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="1265"/>
<location filename="../ProfileInterface.cpp" line="1326"/>
<source>Open &amp;JSON Editor...</source>
<translation>Открыть &amp;редактор JSON...</translation>
</message>
@ -1055,17 +1055,17 @@ Press 1 for Default View</source>
<translation>&amp;Закрыть</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="172"/>
<source>Loading...</source>
<translation>Загрузка...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>Snapmatic Loader</source>
<translation>Загрузчик Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translatorcomment>Change wording if the %1 is not a multiline beginning at new line</translatorcomment>
<translation>&lt;h4&gt;Нижеследующие картинки Snapmatic были восстановлены&lt;/h4&gt;%1</translation>
@ -1073,8 +1073,9 @@ Press 1 for Default View</source>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImportDialog.cpp" line="328"/>
<location filename="../ProfileInterface.cpp" line="462"/>
<location filename="../ProfileInterface.cpp" line="529"/>
<location filename="../ProfileInterface.cpp" line="474"/>
<location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="1438"/>
<source>Import...</source>
<translation>Импортировать...</translation>
</message>
@ -1085,31 +1086,31 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="329"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="463"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="872"/>
<location filename="../ProfileInterface.cpp" line="475"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<location filename="../ProfileInterface.cpp" line="933"/>
<source>Import</source>
<translation>Импортировать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="480"/>
<location filename="../ProfileInterface.cpp" line="492"/>
<location filename="../UserInterface.cpp" line="455"/>
<source>Savegames files (SGTA*)</source>
<translation>Файлы сохранения (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="481"/>
<location filename="../ProfileInterface.cpp" line="493"/>
<location filename="../UserInterface.cpp" line="456"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Картинка Snapmatic (PGTA*)</translation>
@ -1117,19 +1118,19 @@ Press 1 for Default View</source>
<message>
<location filename="../ImageEditorDialog.cpp" line="122"/>
<location filename="../ImportDialog.cpp" line="340"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../UserInterface.cpp" line="457"/>
<source>All files (**)</source>
<translation>Все файлы (**)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="530"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Import file %1 of %2 files</source>
<translation>Импортируются файлы %1 из %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<source>Import failed with...
%1</source>
@ -1138,169 +1139,174 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../UserInterface.cpp" line="497"/>
<source>Failed to read Snapmatic picture</source>
<translation>Не удалось загрузить картинку Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../UserInterface.cpp" line="513"/>
<source>Failed to read Savegame file</source>
<translation>Не удалось загрузить файл сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../UserInterface.cpp" line="545"/>
<source>No valid file is selected</source>
<translation>Выбранный файл неверен</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="70"/>
<location filename="../ProfileInterface.cpp" line="79"/>
<source>Enabled pictures: %1 of %2</source>
<translation>Включенные картинки: %1 из %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="478"/>
<location filename="../ProfileInterface.cpp" line="490"/>
<source>Importable files (%1)</source>
<translation>Файлы для импорта (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="339"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="494"/>
<source>All image files (%1)</source>
<translation>Все файлы изображений (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="142"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="151"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Не получилось импортировать %1, не удалось определить формат файла</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Не удалось импортировать картинку Snapmatic, название не начинается с PGTA или не заканчивается с .g5e</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Не удалось импортировать картинку Snapmatic, картинка уже в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать картинку Snapmatic, не получилось скопировать файл в профиль</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
</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>
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="959"/>
<location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1038"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>Картинки JPG и GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="960"/>
<location filename="../ProfileInterface.cpp" line="982"/>
<location filename="../ProfileInterface.cpp" line="1021"/>
<location filename="../ProfileInterface.cpp" line="1043"/>
<source>JPG pictures only</source>
<translation>Только картинки JPG</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1022"/>
<location filename="../ProfileInterface.cpp" line="1047"/>
<source>GTA Snapmatic only</source>
<translation>Только GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1081"/>
<source>Initialising export...</source>
<translation>Подготовка к экспорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не выделены ни один Snapmatic или сохранение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1082"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1143"/>
<location filename="../ProfileInterface.cpp" line="1171"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>Remove selected</source>
<translation>Снять выделение</translation>
</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>
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1567"/>
<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="1702"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Qualify as Avatar</source>
<translation>Пометить как Аватар</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1567"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<source>No Snapmatic pictures are selected</source>
<translation>Не выделена ни одна картинка Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1578"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1895"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1810"/>
<location filename="../ProfileInterface.cpp" line="1928"/>
<location filename="../ProfileInterface.cpp" line="2030"/>
<source>Patch selected...</source>
<translation>Пропатчить выделенные...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1579"/>
<location filename="../ProfileInterface.cpp" line="1598"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="1915"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<location filename="../ProfileInterface.cpp" line="1830"/>
<location filename="../ProfileInterface.cpp" line="1929"/>
<location filename="../ProfileInterface.cpp" line="1948"/>
<location filename="../ProfileInterface.cpp" line="2031"/>
<location filename="../ProfileInterface.cpp" line="2050"/>
<source>Patch file %1 of %2 files</source>
<translation>Изменяется файл %1 из %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>%1 failed with...
%2</source>
@ -1310,80 +1316,80 @@ Press 1 for Default View</source>
%2</translation>
</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>
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Помечание</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players...</source>
<translation>Изменить игроков...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Измение игроков</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew...</source>
<translation>Изменить банду...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Введённый идентификатор банды не верен</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Изменение банды</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title...</source>
<translation>Изменить заголовок...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Введённый заголовок не верен</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Изменение заголовка</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1Эскпортировать картинки Snapmatic%2&lt;br&gt;&lt;br&gt;Картинки JPG можно открыть любым просмотрщиком&lt;br&gt;Картинки формата GTA Snapmatic можно снова импортировать в игру&lt;br&gt;&lt;br&gt;Экспортировать как:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="936"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1019"/>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="997"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<source>Export selected...</source>
<translation>Экпортировать выделенное...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<source>Export failed with...
%1</source>
@ -1404,7 +1410,7 @@ Press 1 for Default View</source>
<translation>Все файлы профиля (*.g5e SGTA* PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="479"/>
<location filename="../ProfileInterface.cpp" line="491"/>
<location filename="../UserInterface.cpp" line="454"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
@ -1413,17 +1419,17 @@ Press 1 for Default View</source>
<context>
<name>QApplication</name>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Font</source>
<translation>Шрифт</translation>
</message>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Selected Font: %1</source>
<translation>Выбранный шрифт: %1</translation>
</message>
<message>
<location filename="../main.cpp" line="127"/>
<location filename="../main.cpp" line="128"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;Добро пожаловать в %1!&lt;/h4&gt;Хочешь изменить настройки %1 перед использованием?</translation>
</message>
@ -1544,32 +1550,32 @@ Press 1 for Default View</source>
<translation>Не удалось удалить сохранение %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1303"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<source>&amp;View</source>
<translation>&amp;Просмотр</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1305"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>&amp;Remove</source>
<translation>&amp;Удалить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1307"/>
<location filename="../ProfileInterface.cpp" line="1368"/>
<source>&amp;Select</source>
<translation>&amp;Выбрать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1308"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<source>&amp;Deselect</source>
<translation>Сн&amp;ять выбор</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1311"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1315"/>
<location filename="../ProfileInterface.cpp" line="1376"/>
<source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation>
</message>
@ -1579,7 +1585,7 @@ Press 1 for Default View</source>
<translation>Копировать сохранение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1304"/>
<location filename="../ProfileInterface.cpp" line="1365"/>
<source>&amp;Export</source>
<translation>&amp;Экспортировать</translation>
</message>
@ -1683,7 +1689,7 @@ Press 1 for Default View</source>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>Snapmatic Title</source>
<translation>Заголовок Snapmatic</translation>
@ -1779,19 +1785,19 @@ Press 1 for Default View</source>
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>New Snapmatic title:</source>
<translation>Новый заголовок Snapmatic:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>Snapmatic Crew</source>
<translation>Банда на Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>New Snapmatic crew:</source>
<translation>Новая банда на Snapmatic:</translation>
@ -1800,66 +1806,66 @@ Press 1 for Default View</source>
<context>
<name>SnapmaticPicture</name>
<message>
<location filename="../SnapmaticPicture.cpp" line="440"/>
<location filename="../SnapmaticPicture.cpp" line="466"/>
<source>PHOTO - %1</source>
<translation>ФОТО - %1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="660"/>
<location filename="../SnapmaticPicture.cpp" line="687"/>
<source>open file %1</source>
<translation>Открыть файл %1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="676"/>
<location filename="../SnapmaticPicture.cpp" line="703"/>
<source>header not exists</source>
<translation>Отсутствует шапка (header)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="680"/>
<location filename="../SnapmaticPicture.cpp" line="707"/>
<source>header is malformed</source>
<translation>Шапка (header) повреждена</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="684"/>
<location filename="../SnapmaticPicture.cpp" line="711"/>
<source>picture not exists (%1)</source>
<translation>Картинки не существует (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="688"/>
<location filename="../SnapmaticPicture.cpp" line="715"/>
<source>JSON not exists (%1)</source>
<translation>JSON не существует (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="692"/>
<location filename="../SnapmaticPicture.cpp" line="719"/>
<source>title not exists (%1)</source>
<translation>Заголовок отсутствует (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="696"/>
<location filename="../SnapmaticPicture.cpp" line="723"/>
<source>description not exists (%1)</source>
<translation>Описание отсутствует (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="710"/>
<location filename="../SnapmaticPicture.cpp" line="737"/>
<source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment>
<translation>Чтение из файла %1 из-за %2</translation>
</message>
<message>
<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>
<translation>JSON не полный и повреждён</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="704"/>
<location filename="../SnapmaticPicture.cpp" line="731"/>
<source>JSON is incomplete</source>
<translation>JSON частично отсутствует</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="169"/>
<location filename="../SnapmaticPicture.cpp" line="708"/>
<location filename="../SnapmaticPicture.cpp" line="735"/>
<source>JSON is malformed</source>
<translation>JSON повреждён</translation>
</message>
@ -1929,52 +1935,52 @@ Press 1 for Default View</source>
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1252"/>
<location filename="../ProfileInterface.cpp" line="1313"/>
<source>Edi&amp;t</source>
<translation>&amp;Правка</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1316"/>
<source>Show &amp;In-game</source>
<translation>Показывать в &amp;игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1259"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>Hide &amp;In-game</source>
<translation>Ск&amp;рыть в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1266"/>
<location filename="../ProfileInterface.cpp" line="1327"/>
<source>&amp;Export</source>
<translation>&amp;Экспорт</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1269"/>
<location filename="../ProfileInterface.cpp" line="1330"/>
<source>&amp;View</source>
<translation>По&amp;казать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1272"/>
<location filename="../ProfileInterface.cpp" line="1333"/>
<source>&amp;Remove</source>
<translation>У&amp;далить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1274"/>
<location filename="../ProfileInterface.cpp" line="1335"/>
<source>&amp;Select</source>
<translation>&amp;Выделить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1275"/>
<location filename="../ProfileInterface.cpp" line="1336"/>
<source>&amp;Deselect</source>
<translation>Сн&amp;ять выделение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1339"/>
<source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1282"/>
<location filename="../ProfileInterface.cpp" line="1343"/>
<source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation>
</message>
@ -1992,22 +1998,22 @@ Press 1 for Default View</source>
<context>
<name>TelemetryDialog</name>
<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>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="157"/>
<location filename="../main.cpp" line="158"/>
<source>%1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="161"/>
<location filename="../main.cpp" line="162"/>
<source>Yes, I want include personal usage data.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="170"/>
<location filename="../main.cpp" line="171"/>
<source>&amp;OK</source>
<translation type="unfinished">&amp;ОК</translation>
</message>
@ -2208,15 +2214,15 @@ Press 1 for Default View</source>
<translation>Пере&amp;загрузить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../SnapmaticWidget.cpp" line="298"/>
<source>Show In-game</source>
<translation>Показывать в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../SnapmaticWidget.cpp" line="290"/>
<source>Hide In-game</source>
<translation>Скрыть в игре</translation>

View File

@ -66,37 +66,37 @@ Pictures and Savegames</source>
<translation>%1 ліцензовано під &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message>
<message>
<location filename="../config.h" line="49"/>
<location filename="../config.h" line="53"/>
<source>Release</source>
<translation>Реліз</translation>
</message>
<message>
<location filename="../config.h" line="55"/>
<location filename="../config.h" line="59"/>
<source>Release Candidate</source>
<translation>Реліз-Кандидат</translation>
</message>
<message>
<location filename="../config.h" line="61"/>
<location filename="../config.h" line="65"/>
<source>Daily Build</source>
<translation>Щоденна Збірка</translation>
</message>
<message>
<location filename="../config.h" line="67"/>
<location filename="../config.h" line="71"/>
<source>Developer</source>
<translation>Розробник</translation>
</message>
<message>
<location filename="../config.h" line="73"/>
<location filename="../config.h" line="77"/>
<source>Beta</source>
<translation>Бета</translation>
</message>
<message>
<location filename="../config.h" line="79"/>
<location filename="../config.h" line="83"/>
<source>Alpha</source>
<translation>Альфа</translation>
</message>
<message>
<location filename="../config.h" line="84"/>
<location filename="../config.h" line="88"/>
<source>Custom</source>
<translation>Custom</translation>
</message>
@ -309,14 +309,14 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="648"/>
<location filename="../ProfileInterface.cpp" line="658"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацький Аватар</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="667"/>
<location filename="../ProfileInterface.cpp" line="677"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацьке Зображення</translation>
@ -774,37 +774,37 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="152"/>
<location filename="../ProfileInterface.cpp" line="1267"/>
<location filename="../ProfileInterface.cpp" line="1328"/>
<source>Export as &amp;Picture...</source>
<translation>Експортувати як &amp;зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1268"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Експортувати як &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1261"/>
<location filename="../ProfileInterface.cpp" line="1322"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Змінити властивості...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1262"/>
<location filename="../ProfileInterface.cpp" line="1323"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписати зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="158"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1325"/>
<source>Open &amp;Map Viewer...</source>
<translation>Відкрити &amp;карту...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="1265"/>
<location filename="../ProfileInterface.cpp" line="1326"/>
<source>Open &amp;JSON Editor...</source>
<translation>Відкрити редактор &amp;JSON...</translation>
</message>
@ -1059,8 +1059,9 @@ Press 1 for Default View</source>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImportDialog.cpp" line="328"/>
<location filename="../ProfileInterface.cpp" line="462"/>
<location filename="../ProfileInterface.cpp" line="529"/>
<location filename="../ProfileInterface.cpp" line="474"/>
<location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="1438"/>
<source>Import...</source>
<translation>Імпортування...</translation>
</message>
@ -1071,34 +1072,34 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="329"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="463"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="872"/>
<location filename="../ProfileInterface.cpp" line="475"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<location filename="../ProfileInterface.cpp" line="933"/>
<source>Import</source>
<translation>Імпорт</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="339"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="494"/>
<source>All image files (%1)</source>
<translation>Файли зображень (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="122"/>
<location filename="../ImportDialog.cpp" line="340"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../UserInterface.cpp" line="457"/>
<source>All files (**)</source>
<translation>Усі файли (**)</translation>
@ -1106,75 +1107,75 @@ Press 1 for Default View</source>
<message>
<location filename="../ImageEditorDialog.cpp" line="142"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="151"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="70"/>
<location filename="../ProfileInterface.cpp" line="79"/>
<source>Enabled pictures: %1 of %2</source>
<translation>Увімкнено фотографії:%1 з%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="172"/>
<source>Loading...</source>
<translation>Завантаження...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>Snapmatic Loader</source>
<translation>Snapmatic Loader</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt;Наступні Snapmatic зображення були відновлені&lt;/h4&gt;%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="478"/>
<location filename="../ProfileInterface.cpp" line="490"/>
<source>Importable files (%1)</source>
<translation>Імпортуються файли (%1)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="479"/>
<location filename="../ProfileInterface.cpp" line="491"/>
<location filename="../UserInterface.cpp" line="454"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="480"/>
<location filename="../ProfileInterface.cpp" line="492"/>
<location filename="../UserInterface.cpp" line="455"/>
<source>Savegames files (SGTA*)</source>
<translation>Файли збереження гри (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="481"/>
<location filename="../ProfileInterface.cpp" line="493"/>
<location filename="../UserInterface.cpp" line="456"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic зображення (PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../UserInterface.cpp" line="545"/>
<source>No valid file is selected</source>
<translation>Вибрані недійсні файли</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="530"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Import file %1 of %2 files</source>
<translation>Імпортується файл %1 з %2 файлів</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<source>Import failed with...
%1</source>
@ -1183,86 +1184,86 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../UserInterface.cpp" line="497"/>
<source>Failed to read Snapmatic picture</source>
<translation>Не вдалося прочитати Snapmatic картинку</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../UserInterface.cpp" line="513"/>
<source>Failed to read Savegame file</source>
<translation>Не вдалося прочитати файл збереження гри</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation>Неможливо імпортувати%1, оскільки формат файлу не може бути виявлений</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation>Не вдалося імпортувати зображення Snapmatic, файл не починається з PGTA або закінчується .g5e</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation>Не вдалося імпортувати знімок Snapmatic, картинка вже в грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати зображення Snapmatic, не можна скопіювати файл у профіль</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
</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>
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="936"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1019"/>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="997"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<source>Export selected...</source>
<translation>Експорт обраних...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="959"/>
<location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1038"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG картинки і GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="960"/>
<location filename="../ProfileInterface.cpp" line="982"/>
<location filename="../ProfileInterface.cpp" line="1021"/>
<location filename="../ProfileInterface.cpp" line="1043"/>
<source>JPG pictures only</source>
<translation>Тільки JPG картинки</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1022"/>
<location filename="../ProfileInterface.cpp" line="1047"/>
<source>GTA Snapmatic only</source>
<translation>Тільки GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 Експортувати Snapmatic фотографії %2 &lt;br&gt;&lt;br&gt; Фотографії JPG дозволяють відкривати зображення за допомогою засобу перегляду зображень&lt;br&gt;GTA Snapmatic дає змогу імпортувати зображення в гру&lt;br&gt;&lt;br&gt;Експортувати як:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1081"/>
<source>Initialising export...</source>
<translation>Ініціалізація експорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<source>Export failed with...
%1</source>
@ -1271,45 +1272,45 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1082"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1143"/>
<location filename="../ProfileInterface.cpp" line="1171"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>Remove selected</source>
<translation>Видалити вибрані</translation>
</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>
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
</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>
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1567"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<source>No Snapmatic pictures are selected</source>
<translation>Не вибрано жодного Snapmatic зображення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>%1 failed with...
%2</source>
@ -1319,81 +1320,86 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1567"/>
<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="1702"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Qualify as Avatar</source>
<translation>Позначити як Аватар</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1578"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1895"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1810"/>
<location filename="../ProfileInterface.cpp" line="1928"/>
<location filename="../ProfileInterface.cpp" line="2030"/>
<source>Patch selected...</source>
<translation>Вибір патчу...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1579"/>
<location filename="../ProfileInterface.cpp" line="1598"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="1915"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<location filename="../ProfileInterface.cpp" line="1830"/>
<location filename="../ProfileInterface.cpp" line="1929"/>
<location filename="../ProfileInterface.cpp" line="1948"/>
<location filename="../ProfileInterface.cpp" line="2031"/>
<location filename="../ProfileInterface.cpp" line="2050"/>
<source>Patch file %1 of %2 files</source>
<translation>Патч файлу %1 з %2 файлів</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Якість</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players...</source>
<translation>Зміна гравців...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Змінити гравців</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew...</source>
<translation>Зміна банди...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Змінити банду</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title...</source>
<translation>Зміна назви...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Змінити назву</translation>
@ -1407,17 +1413,17 @@ Press 1 for Default View</source>
<context>
<name>QApplication</name>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Font</source>
<translation>Шрифт</translation>
</message>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Selected Font: %1</source>
<translation>Вибраний шрифт:%1</translation>
</message>
<message>
<location filename="../main.cpp" line="127"/>
<location filename="../main.cpp" line="128"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;Ласкаво просимо до %1!&lt;/h4&gt;Ви хочете налаштувати %1 перед використанням?</translation>
</message>
@ -1495,37 +1501,37 @@ Press 1 for Default View</source>
<translation>Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1303"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<source>&amp;View</source>
<translation>&amp;Перегляд</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1304"/>
<location filename="../ProfileInterface.cpp" line="1365"/>
<source>&amp;Export</source>
<translation>&amp;Експорт</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1305"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>&amp;Remove</source>
<translation>&amp;Видалення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1307"/>
<location filename="../ProfileInterface.cpp" line="1368"/>
<source>&amp;Select</source>
<translation>&amp;Виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1308"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1311"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1315"/>
<location filename="../ProfileInterface.cpp" line="1376"/>
<source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation>
</message>
@ -1720,25 +1726,25 @@ Press 1 for Default View</source>
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>Snapmatic Crew</source>
<translation>Snapmatic банда</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>New Snapmatic crew:</source>
<translation>Нова Snapmatic банда:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>Snapmatic Title</source>
<translation>Snapmatic назва</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>New Snapmatic title:</source>
<translation>Новий Snapmatic заголовок:</translation>
@ -1795,64 +1801,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name>
<message>
<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>
<translation>JSON неповний та неправильний</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="704"/>
<location filename="../SnapmaticPicture.cpp" line="731"/>
<source>JSON is incomplete</source>
<translation>JSON неповний</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="169"/>
<location filename="../SnapmaticPicture.cpp" line="708"/>
<location filename="../SnapmaticPicture.cpp" line="735"/>
<source>JSON is malformed</source>
<translation>JSON неправильний</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="440"/>
<location filename="../SnapmaticPicture.cpp" line="466"/>
<source>PHOTO - %1</source>
<translation>ФОТО - %1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="660"/>
<location filename="../SnapmaticPicture.cpp" line="687"/>
<source>open file %1</source>
<translation>відкрити файл%1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="676"/>
<location filename="../SnapmaticPicture.cpp" line="703"/>
<source>header not exists</source>
<translation>заголовок не існує</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="680"/>
<location filename="../SnapmaticPicture.cpp" line="707"/>
<source>header is malformed</source>
<translation>заголовок неправильний</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="684"/>
<location filename="../SnapmaticPicture.cpp" line="711"/>
<source>picture not exists (%1)</source>
<translation>зображення не існує (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="688"/>
<location filename="../SnapmaticPicture.cpp" line="715"/>
<source>JSON not exists (%1)</source>
<translation>JSON не існує (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="692"/>
<location filename="../SnapmaticPicture.cpp" line="719"/>
<source>title not exists (%1)</source>
<translation>заголовок не існує (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="696"/>
<location filename="../SnapmaticPicture.cpp" line="723"/>
<source>description not exists (%1)</source>
<translation>опис не існує (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="710"/>
<location filename="../SnapmaticPicture.cpp" line="737"/>
<source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment>
<translation>читання файлу %1 тому що %2</translation>
@ -1913,52 +1919,52 @@ Press 1 for Default View</source>
<translation>Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1252"/>
<location filename="../ProfileInterface.cpp" line="1313"/>
<source>Edi&amp;t</source>
<translation>Редагува&amp;ти</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1316"/>
<source>Show &amp;In-game</source>
<translation>Показати &amp;у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1259"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>Hide &amp;In-game</source>
<translation>Сховати &amp;у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1266"/>
<location filename="../ProfileInterface.cpp" line="1327"/>
<source>&amp;Export</source>
<translation>&amp;Експортувати</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1269"/>
<location filename="../ProfileInterface.cpp" line="1330"/>
<source>&amp;View</source>
<translation>&amp;Переглянути</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1272"/>
<location filename="../ProfileInterface.cpp" line="1333"/>
<source>&amp;Remove</source>
<translation>&amp;Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1274"/>
<location filename="../ProfileInterface.cpp" line="1335"/>
<source>&amp;Select</source>
<translation>&amp;Виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1275"/>
<location filename="../ProfileInterface.cpp" line="1336"/>
<source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1339"/>
<source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1282"/>
<location filename="../ProfileInterface.cpp" line="1343"/>
<source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation>
</message>
@ -1986,22 +1992,22 @@ Press 1 for Default View</source>
<context>
<name>TelemetryDialog</name>
<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>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="157"/>
<location filename="../main.cpp" line="158"/>
<source>%1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="161"/>
<location filename="../main.cpp" line="162"/>
<source>Yes, I want include personal usage data.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="170"/>
<location filename="../main.cpp" line="171"/>
<source>&amp;OK</source>
<translation type="unfinished">&amp;OK</translation>
</message>
@ -2177,15 +2183,15 @@ Press 1 for Default View</source>
<translation>Змінити &amp;гравців...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../SnapmaticWidget.cpp" line="298"/>
<source>Show In-game</source>
<translation>Показати у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../SnapmaticWidget.cpp" line="290"/>
<source>Hide In-game</source>
<translation>Сховати у грі</translation>

View File

@ -65,37 +65,37 @@ Pictures and Savegames</source>
<translation>%1 使 &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt; 授權條款發布</translation>
</message>
<message>
<location filename="../config.h" line="49"/>
<location filename="../config.h" line="53"/>
<source>Release</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="55"/>
<location filename="../config.h" line="59"/>
<source>Release Candidate</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="61"/>
<location filename="../config.h" line="65"/>
<source>Daily Build</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="67"/>
<location filename="../config.h" line="71"/>
<source>Developer</source>
<translation></translation>
</message>
<message>
<location filename="../config.h" line="73"/>
<location filename="../config.h" line="77"/>
<source>Beta</source>
<translation>Beta </translation>
</message>
<message>
<location filename="../config.h" line="79"/>
<location filename="../config.h" line="83"/>
<source>Alpha</source>
<translation>Alpha </translation>
</message>
<message>
<location filename="../config.h" line="84"/>
<location filename="../config.h" line="88"/>
<source>Custom</source>
<translation></translation>
</message>
@ -308,14 +308,14 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="648"/>
<location filename="../ProfileInterface.cpp" line="658"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="198"/>
<location filename="../ProfileInterface.cpp" line="667"/>
<location filename="../ProfileInterface.cpp" line="677"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation></translation>
@ -772,37 +772,37 @@ Y: %2</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="152"/>
<location filename="../ProfileInterface.cpp" line="1267"/>
<location filename="../ProfileInterface.cpp" line="1328"/>
<source>Export as &amp;Picture...</source>
<translation>(&amp;P)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="153"/>
<location filename="../ProfileInterface.cpp" line="1268"/>
<location filename="../ProfileInterface.cpp" line="1329"/>
<source>Export as &amp;Snapmatic...</source>
<translation> Snapmatic(&amp;S)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="155"/>
<location filename="../ProfileInterface.cpp" line="1261"/>
<location filename="../ProfileInterface.cpp" line="1322"/>
<source>&amp;Edit Properties...</source>
<translation>(&amp;E) ...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="156"/>
<location filename="../ProfileInterface.cpp" line="1262"/>
<location filename="../ProfileInterface.cpp" line="1323"/>
<source>&amp;Overwrite Image...</source>
<translation>(&amp;O)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="158"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1325"/>
<source>Open &amp;Map Viewer...</source>
<translation>(&amp;M)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="1265"/>
<location filename="../ProfileInterface.cpp" line="1326"/>
<source>Open &amp;JSON Editor...</source>
<translation> JSON (&amp;J)...</translation>
</message>
@ -1057,8 +1057,9 @@ Press 1 for Default View</source>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImportDialog.cpp" line="328"/>
<location filename="../ProfileInterface.cpp" line="462"/>
<location filename="../ProfileInterface.cpp" line="529"/>
<location filename="../ProfileInterface.cpp" line="474"/>
<location filename="../ProfileInterface.cpp" line="540"/>
<location filename="../ProfileInterface.cpp" line="1438"/>
<source>Import...</source>
<translation>...</translation>
</message>
@ -1069,34 +1070,34 @@ Press 1 for Default View</source>
<location filename="../ImportDialog.cpp" line="329"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="463"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="872"/>
<location filename="../ProfileInterface.cpp" line="475"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<location filename="../ProfileInterface.cpp" line="933"/>
<source>Import</source>
<translation></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="339"/>
<location filename="../ProfileInterface.cpp" line="482"/>
<location filename="../ProfileInterface.cpp" line="494"/>
<source>All image files (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="122"/>
<location filename="../ImportDialog.cpp" line="340"/>
<location filename="../ProfileInterface.cpp" line="483"/>
<location filename="../ProfileInterface.cpp" line="495"/>
<location filename="../UserInterface.cpp" line="457"/>
<source>All files (**)</source>
<translation> (**)</translation>
@ -1104,206 +1105,206 @@ Press 1 for Default View</source>
<message>
<location filename="../ImageEditorDialog.cpp" line="142"/>
<location filename="../ImportDialog.cpp" line="360"/>
<location filename="../ProfileInterface.cpp" line="706"/>
<location filename="../ProfileInterface.cpp" line="715"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="151"/>
<location filename="../ImportDialog.cpp" line="369"/>
<location filename="../ProfileInterface.cpp" line="716"/>
<location filename="../ProfileInterface.cpp" line="725"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="70"/>
<location filename="../ProfileInterface.cpp" line="79"/>
<source>Enabled pictures: %1 of %2</source>
<translation> %1 %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="160"/>
<location filename="../ProfileInterface.cpp" line="172"/>
<source>Loading...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>Snapmatic Loader</source>
<translation>Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="389"/>
<location filename="../ProfileInterface.cpp" line="401"/>
<source>&lt;h4&gt;Following Snapmatic Pictures got repaired&lt;/h4&gt;%1</source>
<translation>&lt;h4&gt; Snapmatic &lt;/h4&gt;%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="478"/>
<location filename="../ProfileInterface.cpp" line="490"/>
<source>Importable files (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="479"/>
<location filename="../ProfileInterface.cpp" line="491"/>
<location filename="../UserInterface.cpp" line="454"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="480"/>
<location filename="../ProfileInterface.cpp" line="492"/>
<location filename="../UserInterface.cpp" line="455"/>
<source>Savegames files (SGTA*)</source>
<translation> (SGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="481"/>
<location filename="../ProfileInterface.cpp" line="493"/>
<location filename="../UserInterface.cpp" line="456"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic (PGTA*)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../ProfileInterface.cpp" line="801"/>
<location filename="../ProfileInterface.cpp" line="519"/>
<location filename="../ProfileInterface.cpp" line="809"/>
<location filename="../UserInterface.cpp" line="545"/>
<source>No valid file is selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="530"/>
<location filename="../ProfileInterface.cpp" line="548"/>
<location filename="../ProfileInterface.cpp" line="541"/>
<location filename="../ProfileInterface.cpp" line="558"/>
<source>Import file %1 of %2 files</source>
<translation> %1 %2 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="564"/>
<location filename="../ProfileInterface.cpp" line="574"/>
<source>Import failed with...
%1</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="584"/>
<location filename="../ProfileInterface.cpp" line="594"/>
<location filename="../UserInterface.cpp" line="497"/>
<source>Failed to read Snapmatic picture</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="600"/>
<location filename="../ProfileInterface.cpp" line="610"/>
<location filename="../UserInterface.cpp" line="513"/>
<source>Failed to read Savegame file</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="796"/>
<location filename="../ProfileInterface.cpp" line="804"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation> %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="812"/>
<location filename="../ProfileInterface.cpp" line="873"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation> Snapmatic PGTA .g5e</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="817"/>
<location filename="../ProfileInterface.cpp" line="878"/>
<source>Failed to import the Snapmatic picture, the picture is already in the game</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="829"/>
<location filename="../ProfileInterface.cpp" line="890"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="866"/>
<location filename="../ProfileInterface.cpp" line="927"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation></translation>
</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>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="936"/>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1019"/>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="997"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<location filename="../ProfileInterface.cpp" line="1080"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<source>Export selected...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="959"/>
<location filename="../ProfileInterface.cpp" line="977"/>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1038"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="960"/>
<location filename="../ProfileInterface.cpp" line="982"/>
<location filename="../ProfileInterface.cpp" line="1021"/>
<location filename="../ProfileInterface.cpp" line="1043"/>
<source>JPG pictures only</source>
<translation> JPG </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="961"/>
<location filename="../ProfileInterface.cpp" line="986"/>
<location filename="../ProfileInterface.cpp" line="1022"/>
<location filename="../ProfileInterface.cpp" line="1047"/>
<source>GTA Snapmatic only</source>
<translation> GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="974"/>
<location filename="../ProfileInterface.cpp" line="1035"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 Snapmatic %2&lt;br&gt;&lt;br&gt;JPG 使&lt;br&gt;GTA Snapmatic &lt;br&gt;&lt;br&gt;:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1020"/>
<location filename="../ProfileInterface.cpp" line="1081"/>
<source>Initialising export...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1054"/>
<location filename="../ProfileInterface.cpp" line="1115"/>
<source>Export failed with...
%1</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1074"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1135"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1082"/>
<location filename="../ProfileInterface.cpp" line="1110"/>
<location filename="../ProfileInterface.cpp" line="1116"/>
<location filename="../ProfileInterface.cpp" line="1143"/>
<location filename="../ProfileInterface.cpp" line="1171"/>
<location filename="../ProfileInterface.cpp" line="1177"/>
<source>Remove selected</source>
<translation></translation>
</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>
<translation> Snapmatic /?</translation>
</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>
<translation> Snapmatic /</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1567"/>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<source>No Snapmatic pictures are selected</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>%1 failed with...
%2</source>
@ -1313,81 +1314,86 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1567"/>
<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="1702"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Qualify as Avatar</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1578"/>
<location filename="../ProfileInterface.cpp" line="1675"/>
<location filename="../ProfileInterface.cpp" line="1793"/>
<location filename="../ProfileInterface.cpp" line="1895"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1810"/>
<location filename="../ProfileInterface.cpp" line="1928"/>
<location filename="../ProfileInterface.cpp" line="2030"/>
<source>Patch selected...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1579"/>
<location filename="../ProfileInterface.cpp" line="1598"/>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1813"/>
<location filename="../ProfileInterface.cpp" line="1896"/>
<location filename="../ProfileInterface.cpp" line="1915"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<location filename="../ProfileInterface.cpp" line="1830"/>
<location filename="../ProfileInterface.cpp" line="1929"/>
<location filename="../ProfileInterface.cpp" line="1948"/>
<location filename="../ProfileInterface.cpp" line="2031"/>
<location filename="../ProfileInterface.cpp" line="2050"/>
<source>Patch file %1 of %2 files</source>
<translation> %1 %2 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1632"/>
<location filename="../ProfileInterface.cpp" line="1767"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1653"/>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1725"/>
<location filename="../ProfileInterface.cpp" line="1860"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1746"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1881"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1774"/>
<location filename="../ProfileInterface.cpp" line="1909"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> ID</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1843"/>
<location filename="../ProfileInterface.cpp" line="1978"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1864"/>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="1999"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1877"/>
<location filename="../ProfileInterface.cpp" line="2012"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1942"/>
<location filename="../ProfileInterface.cpp" line="2077"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation></translation>
@ -1401,17 +1407,17 @@ Press 1 for Default View</source>
<context>
<name>QApplication</name>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Font</source>
<translation></translation>
</message>
<message>
<location filename="../main.cpp" line="100"/>
<location filename="../main.cpp" line="101"/>
<source>Selected Font: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../main.cpp" line="127"/>
<location filename="../main.cpp" line="128"/>
<source>&lt;h4&gt;Welcome to %1!&lt;/h4&gt;You want to configure %1 before you start using it?</source>
<translation>&lt;h4&gt;使 %1!&lt;/h4&gt; %1 ?</translation>
</message>
@ -1489,37 +1495,37 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1303"/>
<location filename="../ProfileInterface.cpp" line="1364"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1304"/>
<location filename="../ProfileInterface.cpp" line="1365"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1305"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1307"/>
<location filename="../ProfileInterface.cpp" line="1368"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1308"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<source>&amp;Deselect</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1311"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<source>Select &amp;All</source>
<translation>(&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1315"/>
<location filename="../ProfileInterface.cpp" line="1376"/>
<source>&amp;Deselect All</source>
<translation>(&amp;D)</translation>
</message>
@ -1714,25 +1720,25 @@ Press 1 for Default View</source>
<translation>JSON Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>Snapmatic Crew</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1900"/>
<location filename="../SnapmaticEditor.cpp" line="419"/>
<source>New Snapmatic crew:</source>
<translation>:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>Snapmatic Title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1872"/>
<location filename="../ProfileInterface.cpp" line="2007"/>
<location filename="../SnapmaticEditor.cpp" line="390"/>
<source>New Snapmatic title:</source>
<translation>:</translation>
@ -1789,64 +1795,64 @@ Press 1 for Default View</source>
<name>SnapmaticPicture</name>
<message>
<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>
<translation>JSON </translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="165"/>
<location filename="../SnapmaticPicture.cpp" line="704"/>
<location filename="../SnapmaticPicture.cpp" line="731"/>
<source>JSON is incomplete</source>
<translation>JSON </translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="169"/>
<location filename="../SnapmaticPicture.cpp" line="708"/>
<location filename="../SnapmaticPicture.cpp" line="735"/>
<source>JSON is malformed</source>
<translation>JSON </translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="440"/>
<location filename="../SnapmaticPicture.cpp" line="466"/>
<source>PHOTO - %1</source>
<translation> - %1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="660"/>
<location filename="../SnapmaticPicture.cpp" line="687"/>
<source>open file %1</source>
<translation> - %1</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="676"/>
<location filename="../SnapmaticPicture.cpp" line="703"/>
<source>header not exists</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="680"/>
<location filename="../SnapmaticPicture.cpp" line="707"/>
<source>header is malformed</source>
<translation></translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="684"/>
<location filename="../SnapmaticPicture.cpp" line="711"/>
<source>picture not exists (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="688"/>
<location filename="../SnapmaticPicture.cpp" line="715"/>
<source>JSON not exists (%1)</source>
<translation>JSON (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="692"/>
<location filename="../SnapmaticPicture.cpp" line="719"/>
<source>title not exists (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="696"/>
<location filename="../SnapmaticPicture.cpp" line="723"/>
<source>description not exists (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../SnapmaticPicture.cpp" line="710"/>
<location filename="../SnapmaticPicture.cpp" line="737"/>
<source>reading file %1 because of %2</source>
<comment>Example for %2: JSON is malformed error</comment>
<translation> %1 %2</translation>
@ -1907,52 +1913,52 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1252"/>
<location filename="../ProfileInterface.cpp" line="1313"/>
<source>Edi&amp;t</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1255"/>
<location filename="../ProfileInterface.cpp" line="1316"/>
<source>Show &amp;In-game</source>
<translation>(&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1259"/>
<location filename="../ProfileInterface.cpp" line="1320"/>
<source>Hide &amp;In-game</source>
<translation>(&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1266"/>
<location filename="../ProfileInterface.cpp" line="1327"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1269"/>
<location filename="../ProfileInterface.cpp" line="1330"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1272"/>
<location filename="../ProfileInterface.cpp" line="1333"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1274"/>
<location filename="../ProfileInterface.cpp" line="1335"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1275"/>
<location filename="../ProfileInterface.cpp" line="1336"/>
<source>&amp;Deselect</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1339"/>
<source>Select &amp;All</source>
<translation>(&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1282"/>
<location filename="../ProfileInterface.cpp" line="1343"/>
<source>&amp;Deselect All</source>
<translation>(&amp;D)</translation>
</message>
@ -1980,22 +1986,22 @@ Press 1 for Default View</source>
<context>
<name>TelemetryDialog</name>
<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>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="157"/>
<location filename="../main.cpp" line="158"/>
<source>%1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="161"/>
<location filename="../main.cpp" line="162"/>
<source>Yes, I want include personal usage data.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../main.cpp" line="170"/>
<location filename="../main.cpp" line="171"/>
<source>&amp;OK</source>
<translation type="unfinished">(&amp;O)</translation>
</message>
@ -2171,15 +2177,15 @@ Press 1 for Default View</source>
<translation>(&amp;P)...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1182"/>
<location filename="../ProfileInterface.cpp" line="1196"/>
<location filename="../ProfileInterface.cpp" line="1243"/>
<location filename="../ProfileInterface.cpp" line="1257"/>
<location filename="../SnapmaticWidget.cpp" line="298"/>
<source>Show In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1216"/>
<location filename="../ProfileInterface.cpp" line="1230"/>
<location filename="../ProfileInterface.cpp" line="1277"/>
<location filename="../ProfileInterface.cpp" line="1291"/>
<location filename="../SnapmaticWidget.cpp" line="290"/>
<source>Hide In-game</source>
<translation></translation>