Qt6 telemetry build fix, PictureDialog crash fix
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Syping 2021-01-27 14:35:42 +01:00
parent d4a6db068b
commit 2f7e4a154d
15 changed files with 1821 additions and 1839 deletions

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2017-2018 Syping
* Copyright (C) 2017-2021 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -212,7 +212,11 @@ bool JsonEditorDialog::saveJsonContent()
QJsonObject jsonObject;
jsonObject["Type"] = "JSONEdited";
jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2020 Syping
* Copyright (C) 2016-2021 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -457,7 +457,11 @@ void OptionsDialog::applySettings()
QJsonDocument jsonDocument;
QJsonObject jsonObject;
jsonObject["Type"] = "SettingsUpdated";
#if QT_VERSION >= 0x060000
jsonObject["UpdateTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["UpdateTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2020 Syping
* Copyright (C) 2016-2021 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -148,12 +148,10 @@ void PictureDialog::setupPictureDialog()
// Avatar area
qreal screenRatio = AppEnv::screenRatio();
qreal screenRatioPR = AppEnv::screenRatioPR();
if (screenRatio != 1 || screenRatioPR != 1)
{
if (screenRatio != 1 || screenRatioPR != 1) {
avatarAreaPicture = QImage(":/img/avatararea.png").scaledToHeight(snapmaticResolution.height() * screenRatio * screenRatioPR, Qt::FastTransformation);
}
else
{
else {
avatarAreaPicture = QImage(":/img/avatararea.png");
}
avatarLocX = 145;
@ -189,17 +187,14 @@ void PictureDialog::setupPictureDialog()
connect(ui->labJSON, SIGNAL(resized(QSize)), this, SLOT(adaptNewDialogSize(QSize)));
// Set Icon for Close Button
if (QIcon::hasThemeIcon("dialog-close"))
{
if (QIcon::hasThemeIcon("dialog-close")) {
ui->cmdClose->setIcon(QIcon::fromTheme("dialog-close"));
}
else if (QIcon::hasThemeIcon("gtk-close"))
{
else if (QIcon::hasThemeIcon("gtk-close")) {
ui->cmdClose->setIcon(QIcon::fromTheme("gtk-close"));
}
installEventFilter(this);
installEventFilter(ui->labPicture);
// DPI calculation
ui->hlButtons->setSpacing(6 * screenRatio);
@ -214,32 +209,6 @@ void PictureDialog::setupPictureDialog()
PictureDialog::~PictureDialog()
{
#ifdef Q_OS_WIN
#if QT_VERSION >= 0x050200
if (naviEnabled)
{
for (QObject *obj : layout()->menuBar()->children())
{
delete obj;
}
delete layout()->menuBar();
}
#endif
#else
if (naviEnabled)
{
for (QObject *obj : layout()->menuBar()->children())
{
delete obj;
}
delete layout()->menuBar();
}
#endif
for (QObject *obj : manageMenu->children())
{
delete obj;
}
delete manageMenu;
delete ui;
}
@ -247,10 +216,8 @@ void PictureDialog::closeEvent(QCloseEvent *ev)
{
Q_UNUSED(ev)
if (primaryWindow)
{
emit endDatabaseThread();
}
}
void PictureDialog::addPreviousNextButtons()
{
@ -343,10 +310,8 @@ void PictureDialog::previousPictureRequestedSlot()
bool PictureDialog::eventFilter(QObject *obj, QEvent *ev)
{
bool returnValue = false;
if (obj == this || obj == ui->labPicture)
{
if (ev->type() == QEvent::KeyPress)
{
if (obj == this || obj == ui->labPicture) {
if (ev->type() == QEvent::KeyPress) {
QKeyEvent *keyEvent = dynamic_cast<QKeyEvent*>(ev);
switch (keyEvent->key()) {
case Qt::Key_Left:
@ -358,25 +323,21 @@ bool PictureDialog::eventFilter(QObject *obj, QEvent *ev)
returnValue = true;
break;
case Qt::Key_1:
if (previewMode)
{
if (previewMode) {
previewMode = false;
renderPicture();
}
else
{
else {
previewMode = true;
renderPicture();
}
break;
case Qt::Key_2:
if (overlayEnabled)
{
if (overlayEnabled) {
overlayEnabled = false;
if (!previewMode) renderPicture();
}
else
{
else {
overlayEnabled = true;
if (!previewMode) renderPicture();
}
@ -403,38 +364,28 @@ bool PictureDialog::eventFilter(QObject *obj, QEvent *ev)
}
#ifdef Q_OS_WIN
#if QT_VERSION >= 0x050200
if (obj != ui->labPicture && naviEnabled)
{
if (ev->type() == QEvent::MouseButtonPress)
{
if (obj != ui->labPicture && naviEnabled) {
if (ev->type() == QEvent::MouseButtonPress) {
QMouseEvent *mouseEvent = dynamic_cast<QMouseEvent*>(ev);
if (mouseEvent->pos().y() <= layout()->menuBar()->height())
{
if (mouseEvent->button() == Qt::LeftButton)
{
if (mouseEvent->pos().y() <= layout()->menuBar()->height()) {
if (mouseEvent->button() == Qt::LeftButton) {
dragPosition = mouseEvent->pos();
dragStart = true;
}
}
}
if (ev->type() == QEvent::MouseButtonRelease)
{
if (ev->type() == QEvent::MouseButtonRelease) {
QMouseEvent *mouseEvent = dynamic_cast<QMouseEvent*>(ev);
if (mouseEvent->pos().y() <= layout()->menuBar()->height())
{
if (mouseEvent->button() == Qt::LeftButton)
{
if (mouseEvent->pos().y() <= layout()->menuBar()->height()) {
if (mouseEvent->button() == Qt::LeftButton) {
dragStart = false;
}
}
}
if (ev->type() == QEvent::MouseMove && dragStart)
{
if (ev->type() == QEvent::MouseMove && dragStart) {
QMouseEvent *mouseEvent = dynamic_cast<QMouseEvent*>(ev);
if (mouseEvent->pos().y() <= layout()->menuBar()->height())
{
if (mouseEvent->buttons() & Qt::LeftButton)
{
if (mouseEvent->pos().y() <= layout()->menuBar()->height()) {
if (mouseEvent->buttons() & Qt::LeftButton) {
QPoint diff = mouseEvent->pos() - dragPosition;
move(QPoint(pos() + diff));
updateGeometry();
@ -493,14 +444,12 @@ void PictureDialog::renderOverlayPicture()
QRect overlaySpace = fontMetrics.boundingRect(preferedRect, Qt::AlignLeft | Qt::AlignTop | Qt::TextDontClip | Qt::TextWordWrap, overlayText);
int hOverlay = Qt::AlignTop;
if (overlaySpace.height() < 74 * screenRatio * screenRatioPR)
{
if (overlaySpace.height() < 74 * screenRatio * screenRatioPR) {
hOverlay = Qt::AlignVCenter;
preferedRect.setHeight(71 * screenRatio * screenRatioPR);
overlaySpace.setHeight(80 * screenRatio * screenRatioPR);
}
else
{
else {
overlaySpace.setHeight(overlaySpace.height() + 6 * screenRatio * screenRatioPR);
}
@ -513,12 +462,10 @@ void PictureDialog::renderOverlayPicture()
overlayPainter.drawText(preferedRect, Qt::AlignLeft | hOverlay | Qt::TextDontClip | Qt::TextWordWrap, overlayText);
overlayPainter.end();
if (overlaySpace.width() < 194 * screenRatio * screenRatioPR)
{
if (overlaySpace.width() < 194 * screenRatio * screenRatioPR) {
overlaySpace.setWidth(200 * screenRatio * screenRatioPR);
}
else
{
else {
overlaySpace.setWidth(overlaySpace.width() + 6 * screenRatio * screenRatioPR);
}
@ -633,8 +580,7 @@ void PictureDialog::crewNameUpdated()
{
SnapmaticPicture *picture = smpic; // used by macro
QString crewIDStr = crewID;
if (crewIDStr == crewStr)
{
if (crewIDStr == crewStr) {
crewStr = crewDB->getCrewName(crewIDStr);
ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, generatePlayersString(), generateCrewString(), picTitl, picAreaStr, created));
}
@ -643,8 +589,7 @@ void PictureDialog::crewNameUpdated()
void PictureDialog::playerNameUpdated()
{
SnapmaticPicture *picture = smpic; // used by macro
if (plyrsList.count() >= 1)
{
if (plyrsList.count() >= 1) {
ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, generatePlayersString(), generateCrewString(), picTitl, picAreaStr, created));
}
}
@ -653,8 +598,7 @@ QString PictureDialog::generateCrewString()
{
SnapmaticPicture *picture = smpic; // used by macro
const QString crewIDStr = crewID; // save operation time
if (crewIDStr != "0" && !crewIDStr.isEmpty())
{
if (crewIDStr != "0" && !crewIDStr.isEmpty()) {
if (crewIDStr != crewStr) {
return QString("<a href=\"https://socialclub.rockstargames.com/crew/" % QString(crewStr).replace(" ", "_") % "/" % crewIDStr % "\">" % crewStr % "</a>");
}
@ -769,12 +713,10 @@ void PictureDialog::openPreviewMap()
{
SnapmaticPicture *picture = smpic;
MapLocationDialog *mapLocDialog;
if (rqFullscreen && fullscreenWidget != nullptr)
{
if (rqFullscreen && fullscreenWidget != nullptr) {
mapLocDialog = new MapLocationDialog(picture->getSnapmaticProperties().location.x, picture->getSnapmaticProperties().location.y, fullscreenWidget);
}
else
{
else {
mapLocDialog = new MapLocationDialog(picture->getSnapmaticProperties().location.x, picture->getSnapmaticProperties().location.y, this);
}
mapLocDialog->setWindowIcon(windowIcon());
@ -785,8 +727,7 @@ void PictureDialog::openPreviewMap()
mapLocDialog->showMaximized();
#endif
mapLocDialog->exec();
if (mapLocDialog->propUpdated())
{
if (mapLocDialog->propUpdated()) {
// Update Snapmatic Properties
SnapmaticProperties localSpJson = picture->getSnapmaticProperties();
localSpJson.location.x = mapLocDialog->getXpos();
@ -797,33 +738,33 @@ void PictureDialog::openPreviewMap()
QString currentFilePath = picture->getPictureFilePath();
QString originalFilePath = picture->getOriginalPictureFilePath();
QString backupFileName = originalFilePath % ".bak";
if (!QFile::exists(backupFileName))
{
if (!QFile::exists(backupFileName)) {
QFile::copy(currentFilePath, backupFileName);
}
SnapmaticProperties fallbackProperties = picture->getSnapmaticProperties();
picture->setSnapmaticProperties(localSpJson);
if (!picture->exportPicture(currentFilePath))
{
if (!picture->exportPicture(currentFilePath)) {
QMessageBox::warning(this, SnapmaticEditor::tr("Snapmatic Properties"), SnapmaticEditor::tr("Patching of Snapmatic Properties failed because of I/O Error"));
picture->setSnapmaticProperties(fallbackProperties);
}
else
{
else {
updated();
#ifdef GTA5SYNC_TELEMETRY
QSettings telemetrySettings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
telemetrySettings.beginGroup("Telemetry");
bool pushUsageData = telemetrySettings.value("PushUsageData", false).toBool();
telemetrySettings.endGroup();
if (pushUsageData && Telemetry->canPush())
{
if (pushUsageData && Telemetry->canPush()) {
QJsonDocument jsonDocument;
QJsonObject jsonObject;
jsonObject["Type"] = "LocationEdited";
jsonObject["ExtraFlags"] = "Viewer";
jsonObject["EditedSize"] = QString::number(picture->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}
@ -837,12 +778,10 @@ void PictureDialog::editSnapmaticProperties()
{
SnapmaticPicture *picture = smpic;
SnapmaticEditor *snapmaticEditor;
if (rqFullscreen && fullscreenWidget != nullptr)
{
if (rqFullscreen && fullscreenWidget != nullptr) {
snapmaticEditor = new SnapmaticEditor(crewDB, profileDB, fullscreenWidget);
}
else
{
else {
snapmaticEditor = new SnapmaticEditor(crewDB, profileDB, this);
}
snapmaticEditor->setWindowIcon(windowIcon());
@ -861,12 +800,10 @@ void PictureDialog::editSnapmaticImage()
{
QImage *currentImage = new QImage(smpic->getImage());
ImportDialog *importDialog;
if (rqFullscreen && fullscreenWidget != nullptr)
{
if (rqFullscreen && fullscreenWidget != nullptr) {
importDialog = new ImportDialog(profileName, fullscreenWidget);
}
else
{
else {
importDialog = new ImportDialog(profileName, this);
}
importDialog->setWindowIcon(windowIcon());
@ -874,21 +811,17 @@ void PictureDialog::editSnapmaticImage()
importDialog->enableOverwriteMode();
importDialog->setModal(true);
importDialog->exec();
if (importDialog->isImportAgreed())
{
if (importDialog->isImportAgreed()) {
const QByteArray previousPicture = smpic->getPictureStream();
bool success = smpic->setImage(importDialog->image());
if (success)
{
if (success) {
QString currentFilePath = smpic->getPictureFilePath();
QString originalFilePath = smpic->getOriginalPictureFilePath();
QString backupFileName = originalFilePath % ".bak";
if (!QFile::exists(backupFileName))
{
if (!QFile::exists(backupFileName)) {
QFile::copy(currentFilePath, backupFileName);
}
if (!smpic->exportPicture(currentFilePath))
{
if (!smpic->exportPicture(currentFilePath)) {
smpic->setPictureStream(previousPicture);
QMessageBox::warning(this, QApplication::translate("ImageEditorDialog", "Snapmatic Image Editor"), QApplication::translate("ImageEditorDialog", "Patching of Snapmatic Image failed because of I/O Error"));
return;
@ -899,21 +832,23 @@ void PictureDialog::editSnapmaticImage()
telemetrySettings.beginGroup("Telemetry");
bool pushUsageData = telemetrySettings.value("PushUsageData", false).toBool();
telemetrySettings.endGroup();
if (pushUsageData && Telemetry->canPush())
{
if (pushUsageData && Telemetry->canPush()) {
QJsonDocument jsonDocument;
QJsonObject jsonObject;
jsonObject["Type"] = "ImageEdited";
jsonObject["ExtraFlags"] = "Viewer";
jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}
#endif
}
else
{
else {
QMessageBox::warning(this, QApplication::translate("ImageEditorDialog", "Snapmatic Image Editor"), QApplication::translate("ImageEditorDialog", "Patching of Snapmatic Image failed because of Image Error"));
return;
}
@ -925,12 +860,10 @@ void PictureDialog::editSnapmaticRawJson()
{
SnapmaticPicture *picture = smpic;
JsonEditorDialog *jsonEditor;
if (rqFullscreen && fullscreenWidget != nullptr)
{
if (rqFullscreen && fullscreenWidget != nullptr) {
jsonEditor = new JsonEditorDialog(picture, fullscreenWidget);
}
else
{
else {
jsonEditor = new JsonEditorDialog(picture, this);
}
jsonEditor->setWindowIcon(windowIcon());
@ -948,12 +881,10 @@ void PictureDialog::updated()
{
SnapmaticPicture *picture = smpic; // used by macro
crewStr = crewDB->getCrewName(crewID);
if (globalMap.contains(picArea))
{
if (globalMap.contains(picArea)) {
picAreaStr = globalMap[picArea];
}
else
{
else {
picAreaStr = picArea;
}
setWindowTitle(windowTitleStr.arg(picTitl));
@ -963,8 +894,7 @@ void PictureDialog::updated()
void PictureDialog::customSignal(QString signal)
{
SnapmaticPicture *picture = smpic; // used by macro
if (signal == "PictureUpdated")
{
if (signal == "PictureUpdated") {
snapmaticPicture = picture->getImage();
renderPicture();
}

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2020 Syping
* Copyright (C) 2016-2021 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -625,7 +625,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
QJsonObject jsonObject;
jsonObject["Type"] = "ImportSuccess";
jsonObject["ImportSize"] = QString::number(picture->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Snapmatic";
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
@ -660,7 +664,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
QJsonDocument jsonDocument;
QJsonObject jsonObject;
jsonObject["Type"] = "ImportSuccess";
#if QT_VERSION >= 0x060000
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Savegame";
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
@ -851,7 +859,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
jsonObject["Type"] = "ImportSuccess";
jsonObject["ExtraFlag"] = "Dialog";
jsonObject["ImportSize"] = QString::number(picture->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Image";
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
@ -898,7 +910,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
QJsonObject jsonObject;
jsonObject["Type"] = "ImportSuccess";
jsonObject["ImportSize"] = QString::number(picture->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Snapmatic";
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
@ -924,7 +940,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
QJsonDocument jsonDocument;
QJsonObject jsonObject;
jsonObject["Type"] = "ImportSuccess";
#if QT_VERSION >= 0x060000
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Savegame";
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2018 Syping
* Copyright (C) 2016-2021 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -152,7 +152,11 @@ void SavegameWidget::on_cmdDelete_clicked()
QJsonObject jsonObject;
jsonObject["Type"] = "DeleteSuccess";
jsonObject["ExtraFlags"] = "Savegame";
#if QT_VERSION >= 0x060000
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}
@ -171,7 +175,11 @@ void SavegameWidget::on_cmdDelete_clicked()
QJsonObject jsonObject;
jsonObject["Type"] = "DeleteSuccess";
jsonObject["ExtraFlags"] = "Savegame";
#if QT_VERSION >= 0x060000
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2018 Syping
* Copyright (C) 2016-2021 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -349,7 +349,11 @@ void SnapmaticEditor::on_cmdApply_clicked()
QJsonObject jsonObject;
jsonObject["Type"] = "PropertyEdited";
jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2020 Syping
* Copyright (C) 2016-2021 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -197,7 +197,11 @@ bool SnapmaticWidget::deletePicture()
jsonObject["Type"] = "DeleteSuccess";
jsonObject["ExtraFlags"] = "Snapmatic";
jsonObject["DeletedSize"] = QString::number(smpic->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}
@ -403,7 +407,11 @@ void SnapmaticWidget::editSnapmaticImage()
jsonObject["Type"] = "ImageEdited";
jsonObject["ExtraFlags"] = "Interface";
jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}
@ -462,7 +470,11 @@ void SnapmaticWidget::openMapViewer()
jsonObject["Type"] = "LocationEdited";
jsonObject["ExtraFlags"] = "Interface";
jsonObject["EditedSize"] = QString::number(picture->getContentMaxLength());
#if QT_VERSION >= 0x060000
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
}

View File

@ -192,22 +192,22 @@ Pictures and Savegames</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Snapmatic Image Editor</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation type="unfinished"></translation>
</message>
@ -368,14 +368,14 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="195"/>
<location filename="../ProfileInterface.cpp" line="722"/>
<location filename="../ProfileInterface.cpp" line="730"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="218"/>
<location filename="../ProfileInterface.cpp" line="741"/>
<location filename="../ProfileInterface.cpp" line="749"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation>
@ -722,26 +722,26 @@ Y: %2</source>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Language: %1</source>
<translation type="unfinished"></translation>
</message>
@ -762,7 +762,7 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="601"/>
<location filename="../OptionsDialog.cpp" line="605"/>
<source>Participate in %1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
@ -798,8 +798,8 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="617"/>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Participation ID: %1</source>
<translation type="unfinished"></translation>
</message>
@ -917,62 +917,62 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>%1</source>
<comment>%1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="499"/>
<location filename="../OptionsDialog.cpp" line="503"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="507"/>
<location filename="../OptionsDialog.cpp" line="511"/>
<location filename="../OptionsDialog.cpp" line="513"/>
<location filename="../OptionsDialog.cpp" line="515"/>
<location filename="../OptionsDialog.cpp" line="517"/>
<source>Profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>View %1 User Statistics Online</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Not registered</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Yes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<source>No</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<source>OS defined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Steam defined</source>
<translation type="unfinished"></translation>
</message>
@ -1013,78 +1013,78 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1707"/>
<source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../ProfileInterface.cpp" line="1708"/>
<source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1701"/>
<source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../PictureDialog.cpp" line="176"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1704"/>
<source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="488"/>
<location filename="../PictureDialog.cpp" line="439"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Snapmatic Picture Viewer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Failed at %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="686"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="630"/>
<location filename="../SnapmaticEditor.cpp" line="246"/>
<source>No Players</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="665"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="609"/>
<source>No Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="514"/>
<source>Unknown Location</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="620"/>
<location filename="../PictureDialog.cpp" line="567"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation type="unfinished"></translation>
@ -1299,18 +1299,18 @@ Press 1 for Default View</source>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Import...</source>
<translation type="unfinished"></translation>
</message>
@ -1342,14 +1342,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="509"/>
<location filename="../ImportDialog.cpp" line="836"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="518"/>
<location filename="../ImportDialog.cpp" line="845"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation>
</message>
@ -1398,7 +1398,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../UserInterface.cpp" line="558"/>
<source>No valid file is selected</source>
<translation type="unfinished"></translation>
@ -1417,136 +1417,136 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../UserInterface.cpp" line="510"/>
<source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../UserInterface.cpp" line="526"/>
<source>Failed to read Savegame file</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1003"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1328"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1411"/>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Export selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<location filename="../ProfileInterface.cpp" line="1371"/>
<location filename="../ProfileInterface.cpp" line="1389"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1374"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<location filename="../ProfileInterface.cpp" line="1394"/>
<source>JPG pictures only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1378"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<location filename="../ProfileInterface.cpp" line="1398"/>
<source>GTA Snapmatic only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1412"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<source>Initialising export...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<source>Export failed with...
%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>Remove selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>%1 failed with...
%2</source>
@ -1554,81 +1554,81 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2355"/>
<location filename="../ProfileInterface.cpp" line="2461"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<source>Patch selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2122"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2356"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2462"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<location filename="../ProfileInterface.cpp" line="2142"/>
<location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2245"/>
<location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2376"/>
<location filename="../ProfileInterface.cpp" line="2395"/>
<location filename="../ProfileInterface.cpp" line="2482"/>
<location filename="../ProfileInterface.cpp" line="2501"/>
<source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
@ -1720,45 +1720,45 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1754"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1775"/>
<location filename="../ProfileInterface.cpp" line="1805"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1786"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1806"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1789"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1809"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1762"/>
<location filename="../ProfileInterface.cpp" line="1791"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1814"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1768"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1817"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -1832,7 +1832,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="138"/>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Delete Savegame</source>
<translation type="unfinished"></translation>
</message>
@ -1842,7 +1842,7 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Failed at deleting %1 from your savegames</source>
<translation type="unfinished"></translation>
</message>
@ -1855,10 +1855,10 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="126"/>
<location filename="../JsonEditorDialog.cpp" line="191"/>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Snapmatic Properties</source>
<translation type="unfinished"></translation>
</message>
@ -1949,38 +1949,38 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>Snapmatic Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>New Snapmatic crew:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>Snapmatic Title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>New Snapmatic title:</source>
<translation type="unfinished"></translation>
</message>
@ -2144,7 +2144,7 @@ Press 1 for Default View</source>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="183"/>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Delete picture</source>
<translation type="unfinished"></translation>
</message>
@ -2154,62 +2154,62 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1711"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1731"/>
<location filename="../ProfileInterface.cpp" line="1796"/>
<source>Edi&amp;t</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<location filename="../ProfileInterface.cpp" line="1737"/>
<location filename="../ProfileInterface.cpp" line="1802"/>
<source>Show &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1783"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1803"/>
<source>Hide &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1709"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1697"/>
<location filename="../ProfileInterface.cpp" line="1726"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1700"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1703"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1723"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -2219,17 +2219,17 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
@ -2392,7 +2392,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="748"/>
<location filename="../OptionsDialog.cpp" line="752"/>
<location filename="../UserInterface.cpp" line="194"/>
<location filename="../UserInterface.cpp" line="729"/>
<source>Select GTA V Folder...</source>
@ -2410,43 +2410,43 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1780"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1800"/>
<source>Change &amp;Title...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1734"/>
<location filename="../ProfileInterface.cpp" line="1799"/>
<source>Change &amp;Crew...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<location filename="../ProfileInterface.cpp" line="1777"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<source>&amp;Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1778"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1798"/>
<source>Change &amp;Players...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Show In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Hide In-game</source>
<translation type="unfinished"></translation>
</message>

View File

@ -177,10 +177,10 @@ Snapmatic Bilder und Spielständen</translation>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Snapmatic Image Editor</source>
<translation>Snapmatic Bild Editor</translation>
</message>
@ -210,14 +210,14 @@ Snapmatic Bilder und Spielständen</translation>
<translation>S&amp;chließen</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation>
</message>
@ -392,14 +392,14 @@ Snapmatic Bilder und Spielständen</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="195"/>
<location filename="../ProfileInterface.cpp" line="722"/>
<location filename="../ProfileInterface.cpp" line="730"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigener Avatar</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="218"/>
<location filename="../ProfileInterface.cpp" line="741"/>
<location filename="../ProfileInterface.cpp" line="749"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Eigenes Bild</translation>
@ -750,26 +750,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Found: %1</source>
<translation>Gefunden: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Language: %1</source>
<translation>Sprache: %1</translation>
</message>
@ -790,7 +790,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="601"/>
<location filename="../OptionsDialog.cpp" line="605"/>
<source>Participate in %1 User Statistics</source>
<translation>An %1 Benutzerstatistik teilnehmen</translation>
</message>
@ -821,8 +821,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="617"/>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Participation ID: %1</source>
<translation>Teilnahme ID: %1</translation>
</message>
@ -916,7 +916,7 @@ Y: %2</translation>
<translation>Abbre&amp;chen</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
@ -955,56 +955,56 @@ Y: %2</translation>
<translation>%1 (Sprachenpriorität)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>Der eigene Ordner wird initialisiert sobald du %1 neugestartet hast.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>View %1 User Statistics Online</source>
<translation>%1 Benutzerstatistik Online ansehen</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Not registered</source>
<translation>Nicht registriert</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Yes</source>
<translation>Ja</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<source>No</source>
<translation>Nein</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<source>OS defined</source>
<translation>OS-defined</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Steam defined</source>
<translation>Steam-definiert</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="499"/>
<location filename="../OptionsDialog.cpp" line="503"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation>Kein Profil</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="507"/>
<location filename="../OptionsDialog.cpp" line="511"/>
<location filename="../OptionsDialog.cpp" line="513"/>
<location filename="../OptionsDialog.cpp" line="515"/>
<location filename="../OptionsDialog.cpp" line="517"/>
<source>Profile: %1</source>
<translation>Profil: %1</translation>
</message>
@ -1054,37 +1054,37 @@ Y: %2</translation>
<translation>Exportieren</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1707"/>
<source>Export as &amp;Picture...</source>
<translation>Als &amp;Bild exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../ProfileInterface.cpp" line="1708"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Als &amp;Snapmatic exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1701"/>
<source>&amp;Edit Properties...</source>
<translation>Eigenschaften bearb&amp;eiten...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../PictureDialog.cpp" line="176"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>&amp;Overwrite Image...</source>
<translation>Bild &amp;überschreiben...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1704"/>
<source>Open &amp;Map Viewer...</source>
<translation>&amp;Kartenansicht öffnen...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="488"/>
<location filename="../PictureDialog.cpp" line="439"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1093,37 +1093,37 @@ Taste 2 - Overlay umschalten
Pfeiltasten - Navigieren</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Snapmatic Picture Viewer</source>
<translation>Snapmatic Bildansicht</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Failed at %1</source>
<translation>Fehlgeschlagen beim %1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="665"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="609"/>
<source>No Crew</source>
<translation>Keine Crew</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="686"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="630"/>
<location filename="../SnapmaticEditor.cpp" line="246"/>
<source>No Players</source>
<translation>Keine Spieler</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="620"/>
<location filename="../PictureDialog.cpp" line="567"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>Avatar Vorschaumodus
Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="514"/>
<source>Unknown Location</source>
<translation>Unbekannter Standort</translation>
</message>
@ -1225,8 +1225,8 @@ Drücke 1 für Standardmodus</translation>
<translation>Keine gültige Datei wurde ausgewählt</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>Open &amp;JSON Editor...</source>
<translation>&amp;JSON Editor öffnen...</translation>
</message>
@ -1346,18 +1346,18 @@ Drücke 1 für Standardmodus</translation>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Import...</source>
<translation>Importieren...</translation>
</message>
@ -1419,13 +1419,13 @@ Drücke 1 für Standardmodus</translation>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../UserInterface.cpp" line="510"/>
<source>Failed to read Snapmatic picture</source>
<translation>Fehler beim Lesen vom Snapmatic Bild</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../UserInterface.cpp" line="526"/>
<source>Failed to read Savegame file</source>
<translation>Fehler beim Lesen von Spielstanddatei</translation>
@ -1433,40 +1433,40 @@ Drücke 1 für Standardmodus</translation>
<message>
<location filename="../ImportDialog.cpp" line="509"/>
<location filename="../ImportDialog.cpp" line="836"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="518"/>
<location filename="../ImportDialog.cpp" line="845"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<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="944"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<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="1412"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<source>Initialising export...</source>
<translation>Initialisiere Export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<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="1366"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<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="542"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../UserInterface.cpp" line="558"/>
<source>No valid file is selected</source>
<translation>Keine gültige Datei wurde ausgewählt</translation>
@ -1477,91 +1477,91 @@ Drücke 1 für Standardmodus</translation>
<translation>Aktivierte Bilder: %1 von %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Ein Snapmatic Bild mit der Uid %1 existiert bereits, möchtest du dein Import eine neue Uid und Zeitstempel zuweisen?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<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="1258"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<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="1264"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<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="1351"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<location filename="../ProfileInterface.cpp" line="1371"/>
<location filename="../ProfileInterface.cpp" line="1389"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG Bilder und GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1374"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<location filename="../ProfileInterface.cpp" line="1394"/>
<source>JPG pictures only</source>
<translation>Nur JPG Bilder</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1378"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<location filename="../ProfileInterface.cpp" line="1398"/>
<source>GTA Snapmatic only</source>
<translation>Nur GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2355"/>
<location filename="../ProfileInterface.cpp" line="2461"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<source>Patch selected...</source>
<translation>Auswahl patchen...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2122"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2356"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2462"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<location filename="../ProfileInterface.cpp" line="2142"/>
<location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2245"/>
<location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2376"/>
<location filename="../ProfileInterface.cpp" line="2395"/>
<location filename="../ProfileInterface.cpp" line="2482"/>
<location filename="../ProfileInterface.cpp" line="2501"/>
<source>Patch file %1 of %2 files</source>
<translation>Patche Datei %1 von %2 Dateien</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify as Avatar</source>
<translation>Als Avatar qualifizieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<source>No Snapmatic pictures are selected</source>
<translation>Keine Snapmatic Bilder sind ausgewählt</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<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="1618"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>%1 failed with...
%2</source>
@ -1571,93 +1571,93 @@ Drücke 1 für Standardmodus</translation>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1003"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>Bereite Inhalt für Import vor...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Qualifizieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players...</source>
<translation>Spieler ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Spieler ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew...</source>
<translation>Crew ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<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="2405"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Crew ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title...</source>
<translation>Titel ändern...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<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="2508"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Titel ändern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<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="1474"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>Remove selected</source>
<translation>Auswahl löschen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<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="1328"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1411"/>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Export selected...</source>
<translation>Auswahl exportieren...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<source>Export failed with...
%1</source>
@ -1791,48 +1791,48 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="138"/>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Delete Savegame</source>
<translation>Savegame löschen</translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Failed at deleting %1 from your savegames</source>
<translation>Fehlgeschlagen beim Löschen %1 von deinen Spielständen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1754"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<source>&amp;View</source>
<translation>A&amp;nsehen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1786"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1806"/>
<source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1789"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1809"/>
<source>&amp;Select</source>
<translation>Au&amp;swählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1762"/>
<location filename="../ProfileInterface.cpp" line="1791"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1814"/>
<source>Select &amp;All</source>
<translation>&amp;Alles auswählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1768"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1817"/>
<source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation>
</message>
@ -1847,9 +1847,9 @@ Drücke 1 für Standardmodus</translation>
<translation>Spielstand kopieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1775"/>
<location filename="../ProfileInterface.cpp" line="1805"/>
<source>&amp;Export</source>
<translation>&amp;Exportieren</translation>
</message>
@ -1900,10 +1900,10 @@ Drücke 1 für Standardmodus</translation>
<location filename="../JsonEditorDialog.cpp" line="126"/>
<location filename="../JsonEditorDialog.cpp" line="191"/>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Snapmatic Properties</source>
<translation>Snapmatic Eigenschaften</translation>
</message>
@ -1943,8 +1943,8 @@ Drücke 1 für Standardmodus</translation>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>Snapmatic Title</source>
<translation>Snapmatic Titel</translation>
</message>
@ -2046,33 +2046,33 @@ Drücke 1 für Standardmodus</translation>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen %1</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen JSON Fehler</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>New Snapmatic title:</source>
<translation>Neuer Snapmatic Titel:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>Snapmatic Crew</source>
<translation>Snapmatic Crew</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>New Snapmatic crew:</source>
<translation>Neue Snapmatic Crew:</translation>
</message>
@ -2179,7 +2179,7 @@ Drücke 1 für Standardmodus</translation>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="183"/>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Delete picture</source>
<translation>Bild löschen</translation>
</message>
@ -2189,72 +2189,72 @@ Drücke 1 für Standardmodus</translation>
<translation>Bist du sicher %1 von deine Snapmatic Bilder zu löschen?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation>Fehlgeschlagen beim Ausblenden von %1 im Spiel von deinen Snapmatic Bildern</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1711"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1731"/>
<location filename="../ProfileInterface.cpp" line="1796"/>
<source>Edi&amp;t</source>
<translation>Bearbei&amp;ten</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Export</source>
<translation>&amp;Exportieren</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<location filename="../ProfileInterface.cpp" line="1737"/>
<location filename="../ProfileInterface.cpp" line="1802"/>
<source>Show &amp;In-game</source>
<translation>&amp;Im Spiel anzeigen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1783"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1803"/>
<source>Hide &amp;In-game</source>
<translation>&amp;Im Spiel ausblenden</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1709"/>
<source>&amp;View</source>
<translation>A&amp;nsehen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<source>&amp;Remove</source>
<translation>Entfe&amp;rnen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<source>&amp;Select</source>
<translation>Au&amp;swählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1697"/>
<location filename="../ProfileInterface.cpp" line="1726"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<source>&amp;Deselect</source>
<translation>A&amp;bwählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1700"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Select &amp;All</source>
<translation>Alles &amp;auswählen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1703"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1723"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>&amp;Deselect All</source>
<translation>Alles a&amp;bwählen</translation>
</message>
@ -2274,7 +2274,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Bild exportieren</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation>Fehlgeschlagen beim Löschen von %1 von deinen Snapmatic Bildern</translation>
</message>
@ -2367,29 +2367,29 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1780"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1800"/>
<source>Change &amp;Title...</source>
<translation>&amp;Titel ändern...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<location filename="../ProfileInterface.cpp" line="1777"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<source>&amp;Qualify as Avatar</source>
<translation>Als Avatar &amp;qualifizieren</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1778"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1798"/>
<source>Change &amp;Players...</source>
<translation>S&amp;pieler ändern...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1734"/>
<location filename="../ProfileInterface.cpp" line="1799"/>
<source>Change &amp;Crew...</source>
<translation>&amp;Crew ändern...</translation>
</message>
@ -2464,7 +2464,7 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="748"/>
<location filename="../OptionsDialog.cpp" line="752"/>
<location filename="../UserInterface.cpp" line="194"/>
<location filename="../UserInterface.cpp" line="729"/>
<source>Select GTA V Folder...</source>
@ -2512,16 +2512,16 @@ Drücke 1 für Standardmodus</translation>
<translation>&amp;Neuladen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Show In-game</source>
<translation>Im Spiel anzeigen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Hide In-game</source>
<translation>Im Spiel ausblenden</translation>
</message>

View File

@ -167,10 +167,10 @@ Pictures and Savegames</source>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Snapmatic Image Editor</source>
<translation type="unfinished"></translation>
</message>
@ -200,14 +200,14 @@ Pictures and Savegames</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation type="unfinished"></translation>
</message>
@ -374,14 +374,14 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="195"/>
<location filename="../ProfileInterface.cpp" line="722"/>
<location filename="../ProfileInterface.cpp" line="730"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="218"/>
<location filename="../ProfileInterface.cpp" line="741"/>
<location filename="../ProfileInterface.cpp" line="749"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation type="unfinished"></translation>
@ -722,26 +722,26 @@ Y: %2</source>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Language: %1</source>
<translation type="unfinished"></translation>
</message>
@ -757,7 +757,7 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="601"/>
<location filename="../OptionsDialog.cpp" line="605"/>
<source>Participate in %1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
@ -778,8 +778,8 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="617"/>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Participation ID: %1</source>
<translation type="unfinished"></translation>
</message>
@ -917,62 +917,62 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>%1</source>
<comment>%1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>The new Custom Folder will initialize after you restart %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="499"/>
<location filename="../OptionsDialog.cpp" line="503"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="507"/>
<location filename="../OptionsDialog.cpp" line="511"/>
<location filename="../OptionsDialog.cpp" line="513"/>
<location filename="../OptionsDialog.cpp" line="515"/>
<location filename="../OptionsDialog.cpp" line="517"/>
<source>Profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>View %1 User Statistics Online</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Not registered</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Yes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<source>No</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<source>OS defined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Steam defined</source>
<translation type="unfinished"></translation>
</message>
@ -1013,72 +1013,72 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1707"/>
<source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../ProfileInterface.cpp" line="1708"/>
<source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../PictureDialog.cpp" line="176"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1701"/>
<source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1704"/>
<source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="488"/>
<location filename="../PictureDialog.cpp" line="439"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Snapmatic Picture Viewer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Failed at %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="686"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="630"/>
<location filename="../SnapmaticEditor.cpp" line="246"/>
<source>No Players</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="665"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="609"/>
<source>No Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="514"/>
<source>Unknown Location</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="620"/>
<location filename="../PictureDialog.cpp" line="567"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation type="unfinished"></translation>
@ -1187,8 +1187,8 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation>
</message>
@ -1319,18 +1319,18 @@ Press 1 for Default View</source>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Import...</source>
<translation type="unfinished"></translation>
</message>
@ -1384,7 +1384,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../UserInterface.cpp" line="558"/>
<source>No valid file is selected</source>
<translation type="unfinished"></translation>
@ -1403,13 +1403,13 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../UserInterface.cpp" line="510"/>
<source>Failed to read Snapmatic picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../UserInterface.cpp" line="526"/>
<source>Failed to read Savegame file</source>
<translation type="unfinished"></translation>
@ -1417,147 +1417,147 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="509"/>
<location filename="../ImportDialog.cpp" line="836"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="518"/>
<location filename="../ImportDialog.cpp" line="845"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<source>Can&apos;t import %1 because file format can&apos;t be detected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<source>Failed to import the Snapmatic picture, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<location filename="../ProfileInterface.cpp" line="1371"/>
<location filename="../ProfileInterface.cpp" line="1389"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1374"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<location filename="../ProfileInterface.cpp" line="1394"/>
<source>JPG pictures only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1378"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<location filename="../ProfileInterface.cpp" line="1398"/>
<source>GTA Snapmatic only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1328"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1411"/>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Export selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1412"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<source>Initialising export...</source>
<translation>Initializing export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<source>Export failed with...
%1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>Remove selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<source>No Snapmatic pictures are selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2355"/>
<location filename="../ProfileInterface.cpp" line="2461"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<source>Patch selected...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2122"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2356"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2462"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<location filename="../ProfileInterface.cpp" line="2142"/>
<location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2245"/>
<location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2376"/>
<location filename="../ProfileInterface.cpp" line="2395"/>
<location filename="../ProfileInterface.cpp" line="2482"/>
<location filename="../ProfileInterface.cpp" line="2501"/>
<source>Patch file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>%1 failed with...
%2</source>
@ -1565,70 +1565,70 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1003"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation type="unfinished"></translation>
@ -1720,45 +1720,45 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1754"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1775"/>
<location filename="../ProfileInterface.cpp" line="1805"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1786"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1806"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1789"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1809"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1762"/>
<location filename="../ProfileInterface.cpp" line="1791"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1814"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1768"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1817"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -1837,12 +1837,12 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="138"/>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Delete Savegame</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Failed at deleting %1 from your savegames</source>
<translation type="unfinished"></translation>
</message>
@ -1855,10 +1855,10 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="126"/>
<location filename="../JsonEditorDialog.cpp" line="191"/>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Snapmatic Properties</source>
<translation type="unfinished"></translation>
</message>
@ -1995,39 +1995,39 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>Snapmatic Title</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>New Snapmatic title:</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>Snapmatic Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>New Snapmatic crew:</source>
<translation type="unfinished"></translation>
</message>
@ -2144,7 +2144,7 @@ Press 1 for Default View</source>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="183"/>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Delete picture</source>
<translation type="unfinished"></translation>
</message>
@ -2154,62 +2154,62 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1711"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1731"/>
<location filename="../ProfileInterface.cpp" line="1796"/>
<source>Edi&amp;t</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<location filename="../ProfileInterface.cpp" line="1737"/>
<location filename="../ProfileInterface.cpp" line="1802"/>
<source>Show &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1783"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1803"/>
<source>Hide &amp;In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1709"/>
<source>&amp;View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<source>&amp;Remove</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<source>&amp;Select</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1697"/>
<location filename="../ProfileInterface.cpp" line="1726"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<source>&amp;Deselect</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1700"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Select &amp;All</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1703"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1723"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>&amp;Deselect All</source>
<translation type="unfinished"></translation>
</message>
@ -2219,17 +2219,17 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
@ -2387,7 +2387,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="748"/>
<location filename="../OptionsDialog.cpp" line="752"/>
<location filename="../UserInterface.cpp" line="194"/>
<location filename="../UserInterface.cpp" line="729"/>
<source>Select GTA V Folder...</source>
@ -2405,8 +2405,8 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1778"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1798"/>
<source>Change &amp;Players...</source>
<translation type="unfinished"></translation>
</message>
@ -2417,22 +2417,22 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1780"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1800"/>
<source>Change &amp;Title...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1734"/>
<location filename="../ProfileInterface.cpp" line="1799"/>
<source>Change &amp;Crew...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<location filename="../ProfileInterface.cpp" line="1777"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<source>&amp;Qualify as Avatar</source>
<translation type="unfinished"></translation>
</message>
@ -2467,16 +2467,16 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Show In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Hide In-game</source>
<translation type="unfinished"></translation>
</message>

View File

@ -178,10 +178,10 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Snapmatic Image Editor</source>
<translation>Éditeur d&apos;images Snapmatic</translation>
</message>
@ -211,14 +211,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<translation>&amp;Fermer</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>Échec du patch Snapmatic : I/O Error</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Échec du patch Snapmatic : Image Error</translation>
</message>
@ -393,14 +393,14 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="195"/>
<location filename="../ProfileInterface.cpp" line="722"/>
<location filename="../ProfileInterface.cpp" line="730"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Avatar personnalisé</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="218"/>
<location filename="../ProfileInterface.cpp" line="741"/>
<location filename="../ProfileInterface.cpp" line="749"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Image personnalisé</translation>
@ -751,26 +751,26 @@ Y : %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Found: %1</source>
<translation>Trouvé : %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Language: %1</source>
<translation>Langue : %1</translation>
</message>
@ -791,7 +791,7 @@ Y : %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="601"/>
<location filename="../OptionsDialog.cpp" line="605"/>
<source>Participate in %1 User Statistics</source>
<translation>Participer aux statistiques d&apos;usage %1</translation>
</message>
@ -822,8 +822,8 @@ Y : %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="617"/>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Participation ID: %1</source>
<translation>ID de participation : %1</translation>
</message>
@ -950,62 +950,62 @@ Y : %2</translation>
<translation>%1 (Priorité de la langue)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>Le nouveau Dossier personnalisé sera initialisé au redémarrage de %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>View %1 User Statistics Online</source>
<translation>Voir les statistiques d&apos;usage %1 en ligne</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Not registered</source>
<translation>Pas enregistré</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Yes</source>
<translation>Oui</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<source>No</source>
<translation>Non</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<source>OS defined</source>
<translation>Défini par le système d&apos;exploitation</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Steam defined</source>
<translation>Défini par Steam</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="499"/>
<location filename="../OptionsDialog.cpp" line="503"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation>Aucun profil</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="507"/>
<location filename="../OptionsDialog.cpp" line="511"/>
<location filename="../OptionsDialog.cpp" line="513"/>
<location filename="../OptionsDialog.cpp" line="515"/>
<location filename="../OptionsDialog.cpp" line="517"/>
<source>Profile: %1</source>
<translation>Profil : %1</translation>
</message>
@ -1135,37 +1135,37 @@ Y : %2</translation>
<translation>Fichier invalide</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1707"/>
<source>Export as &amp;Picture...</source>
<translation>Exporter comme &amp;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../ProfileInterface.cpp" line="1708"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Exporter comme &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../PictureDialog.cpp" line="176"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Remplacer l&apos;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1701"/>
<source>&amp;Edit Properties...</source>
<translation>Modifier les &amp;propriétés...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1704"/>
<source>Open &amp;Map Viewer...</source>
<translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="488"/>
<location filename="../PictureDialog.cpp" line="439"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1174,37 +1174,37 @@ Touche 2 - Activer/désactiver l&apos;overlay
Touches fléchées - Naviguer</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Snapmatic Picture Viewer</source>
<translation>Visionneuse de photo Snapmatic</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Failed at %1</source>
<translation>Echec de %1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="665"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="609"/>
<source>No Crew</source>
<translation>Aucun crew</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="686"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="630"/>
<location filename="../SnapmaticEditor.cpp" line="246"/>
<source>No Players</source>
<translation>Aucun joueurs</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="620"/>
<location filename="../PictureDialog.cpp" line="567"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>Mode Aperçu Avatar
Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="514"/>
<source>Unknown Location</source>
<translation>Emplacement inconnu</translation>
</message>
@ -1226,8 +1226,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Échec de l&apos;export de la photo Snapmatic</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>Open &amp;JSON Editor...</source>
<translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
</message>
@ -1358,18 +1358,18 @@ Appuyer sur 1 pour le mode par défaut</translation>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Import...</source>
<translation>Importer...</translation>
</message>
@ -1427,7 +1427,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../UserInterface.cpp" line="558"/>
<source>No valid file is selected</source>
<translation>Fichier invalide</translation>
@ -1438,13 +1438,13 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Fichiers importables (%1)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../UserInterface.cpp" line="510"/>
<source>Failed to read Snapmatic picture</source>
<translation>Impossible d&apos;ouvrir la photo Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../UserInterface.cpp" line="526"/>
<source>Failed to read Savegame file</source>
<translation>Impossible de lire le fichier de sauvegarde</translation>
@ -1452,122 +1452,122 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message>
<location filename="../ImportDialog.cpp" line="509"/>
<location filename="../ImportDialog.cpp" line="836"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="518"/>
<location filename="../ImportDialog.cpp" line="845"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<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="944"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<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="1117"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<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="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<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="1258"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<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="1264"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<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="1351"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<location filename="../ProfileInterface.cpp" line="1371"/>
<location filename="../ProfileInterface.cpp" line="1389"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>Images JPG et GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1374"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<location filename="../ProfileInterface.cpp" line="1394"/>
<source>JPG pictures only</source>
<translation>Images JPG seulement</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1378"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<location filename="../ProfileInterface.cpp" line="1398"/>
<source>GTA Snapmatic only</source>
<translation>GTA Snapmatic seulement</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<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="1328"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1411"/>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Export selected...</source>
<translation>Exporter la sélection...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1412"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<source>Initialising export...</source>
<translation>Initialisation de l&apos;export...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify as Avatar</source>
<translation>Qualifier comme Avatar</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<source>No Snapmatic pictures are selected</source>
<translation>Aucun Snapmatic sélectionné</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2355"/>
<location filename="../ProfileInterface.cpp" line="2461"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<source>Patch selected...</source>
<translation>Patcher la sélection...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2122"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2356"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2462"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<location filename="../ProfileInterface.cpp" line="2142"/>
<location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2245"/>
<location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2376"/>
<location filename="../ProfileInterface.cpp" line="2395"/>
<location filename="../ProfileInterface.cpp" line="2482"/>
<location filename="../ProfileInterface.cpp" line="2501"/>
<source>Patch file %1 of %2 files</source>
<translation>Patch du fichier %1 sur %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>%1 failed with...
%2</source>
@ -1577,76 +1577,76 @@ Appuyer sur 1 pour le mode par défaut</translation>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<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="1003"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>Préparation du contenu pour l&apos;import...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Un Snapmatic existe déjà avec le uid %1, voulez-vous assigner à votre import un nouvel uid et timestamp ?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Qualifier</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players...</source>
<translation>Modifier les joueurs...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Modifier les joueurs</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew...</source>
<translation>Modifier le Crew...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Snapmatic Crew ID invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Changer le Crew</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title...</source>
<translation>Changer le titre...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Titre Snapmatic invalide</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Changer le titre</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<source>Export failed with...
%1</source>
@ -1655,20 +1655,20 @@ Appuyer sur 1 pour le mode par défaut</translation>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<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="1474"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>Remove selected</source>
<translation>Supprimer la sélection</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Supprimer la sélection ?</translation>
</message>
@ -1773,9 +1773,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1775"/>
<location filename="../ProfileInterface.cpp" line="1805"/>
<source>&amp;Export</source>
<translation>&amp;Exporter</translation>
</message>
@ -1856,48 +1856,48 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="138"/>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Delete Savegame</source>
<translation>Supprimer la sauvegarde</translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Failed at deleting %1 from your savegames</source>
<translation>Impossible de supprimer %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1754"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<source>&amp;View</source>
<translation>&amp;Voir</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1786"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1806"/>
<source>&amp;Remove</source>
<translation>&amp;Supprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1789"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1809"/>
<source>&amp;Select</source>
<translation>&amp;Sélectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1762"/>
<location filename="../ProfileInterface.cpp" line="1791"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1814"/>
<source>Select &amp;All</source>
<translation>Sélectionner to&amp;ut</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1768"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1817"/>
<source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation>
</message>
@ -1910,10 +1910,10 @@ Appuyer sur 1 pour le mode par défaut</translation>
<location filename="../JsonEditorDialog.cpp" line="126"/>
<location filename="../JsonEditorDialog.cpp" line="191"/>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Snapmatic Properties</source>
<translation>Propriétés Snapmatic</translation>
</message>
@ -1953,8 +1953,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>Snapmatic Title</source>
<translation>Titre Snapmatic</translation>
</message>
@ -2058,33 +2058,33 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Patch des propriétés Snapmatic échoué : %1</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>Patch des propriétés Snapmatic échoué : erreur JSON</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>New Snapmatic title:</source>
<translation>Nouveau titre Snapmatic :</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>Snapmatic Crew</source>
<translation>Crew Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>New Snapmatic crew:</source>
<translation>Nouveau crew Snapmatic :</translation>
</message>
@ -2201,7 +2201,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="183"/>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Delete picture</source>
<translation>Supprimer la photo</translation>
</message>
@ -2216,77 +2216,77 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer %1 ?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation>Impossible de supprimer %1</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation>%1 n&apos;a pas pu être rendu invisible en jeu</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation>%1 n&apos;a pas pu être rendu visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1711"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1731"/>
<location filename="../ProfileInterface.cpp" line="1796"/>
<source>Edi&amp;t</source>
<translation>Édi&amp;ter</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<location filename="../ProfileInterface.cpp" line="1737"/>
<location filename="../ProfileInterface.cpp" line="1802"/>
<source>Show &amp;In-game</source>
<translation>&amp;Visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1783"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1803"/>
<source>Hide &amp;In-game</source>
<translation>&amp;Invisible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Export</source>
<translation>&amp;Exporter</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1709"/>
<source>&amp;View</source>
<translation>&amp;Voir</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<source>&amp;Remove</source>
<translation>S&amp;upprimer</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<source>&amp;Select</source>
<translation>&amp;Sélectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1697"/>
<location filename="../ProfileInterface.cpp" line="1726"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<source>&amp;Deselect</source>
<translation>&amp;Déselectionner</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1700"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Select &amp;All</source>
<translation>Sélectionner &amp;tout</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1703"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1723"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>&amp;Deselect All</source>
<translation>&amp;Déselectionner tout</translation>
</message>
@ -2426,7 +2426,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="748"/>
<location filename="../OptionsDialog.cpp" line="752"/>
<location filename="../UserInterface.cpp" line="194"/>
<location filename="../UserInterface.cpp" line="729"/>
<source>Select GTA V Folder...</source>
@ -2439,8 +2439,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1778"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1798"/>
<source>Change &amp;Players...</source>
<translation>Modifier les &amp;joueurs...</translation>
</message>
@ -2451,22 +2451,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1780"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1800"/>
<source>Change &amp;Title...</source>
<translation>Changer le &amp;titre...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1734"/>
<location filename="../ProfileInterface.cpp" line="1799"/>
<source>Change &amp;Crew...</source>
<translation>Changer le &amp;Crew...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<location filename="../ProfileInterface.cpp" line="1777"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<source>&amp;Qualify as Avatar</source>
<translation>&amp;Qualifier comme Avatar</translation>
</message>
@ -2524,16 +2524,16 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>%1 - Nouvelles</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Show In-game</source>
<translation>Visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Hide In-game</source>
<translation>Invisible en jeu</translation>
</message>

View File

@ -202,22 +202,22 @@ Pictures and Savegames</source>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Snapmatic Image Editor</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>I/O .</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation> .</translation>
</message>
@ -386,7 +386,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="195"/>
<location filename="../ProfileInterface.cpp" line="722"/>
<location filename="../ProfileInterface.cpp" line="730"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment>
@ -394,7 +394,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="218"/>
<location filename="../ProfileInterface.cpp" line="741"/>
<location filename="../ProfileInterface.cpp" line="749"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translatorcomment> . !</translatorcomment>
@ -757,26 +757,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Found: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Language: %1</source>
<translation>: %1</translation>
</message>
@ -797,7 +797,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="601"/>
<location filename="../OptionsDialog.cpp" line="605"/>
<source>Participate in %1 User Statistics</source>
<translation> %1</translation>
</message>
@ -833,8 +833,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="617"/>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Participation ID: %1</source>
<translation> : %1</translation>
</message>
@ -961,64 +961,64 @@ Y: %2</translation>
<translation>%1 ( )</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>%1</source>
<comment>%1</comment>
<translatorcomment>%1</translatorcomment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation> . %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="499"/>
<location filename="../OptionsDialog.cpp" line="503"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translatorcomment> ()</translatorcomment>
<translation> </translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="507"/>
<location filename="../OptionsDialog.cpp" line="511"/>
<location filename="../OptionsDialog.cpp" line="513"/>
<location filename="../OptionsDialog.cpp" line="515"/>
<location filename="../OptionsDialog.cpp" line="517"/>
<source>Profile: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>View %1 User Statistics Online</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Not registered</source>
<translation> .</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Yes</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<source>No</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<source>OS defined</source>
<translation>OS </translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Steam defined</source>
<translation> </translation>
</message>
@ -1062,43 +1062,43 @@ Y: %2</translation>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1707"/>
<source>Export as &amp;Picture...</source>
<translation> PC에 (&amp;P)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../ProfileInterface.cpp" line="1708"/>
<source>Export as &amp;Snapmatic...</source>
<translation> PC에 (&amp;S)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1701"/>
<source>&amp;Edit Properties...</source>
<translation> (&amp;E)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../PictureDialog.cpp" line="176"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>&amp;Overwrite Image...</source>
<translation> (&amp;O)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1704"/>
<source>Open &amp;Map Viewer...</source>
<translation> (&amp;M)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>Open &amp;JSON Editor...</source>
<translation>JSON (&amp;J)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="488"/>
<location filename="../PictureDialog.cpp" line="439"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1107,35 +1107,35 @@ Arrow Keys - Navigate</source>
- </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Snapmatic Picture Viewer</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Failed at %1</source>
<translation>%1 .</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="686"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="630"/>
<location filename="../SnapmaticEditor.cpp" line="246"/>
<source>No Players</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="665"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="609"/>
<source>No Crew</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="514"/>
<source>Unknown Location</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="620"/>
<location filename="../PictureDialog.cpp" line="567"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation> .
@ -1351,18 +1351,18 @@ Press 1 for Default View</source>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Import...</source>
<translation></translation>
</message>
@ -1394,14 +1394,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="509"/>
<location filename="../ImportDialog.cpp" line="836"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1 .</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="518"/>
<location filename="../ImportDialog.cpp" line="845"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1 .</translation>
</message>
@ -1450,7 +1450,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../UserInterface.cpp" line="558"/>
<source>No valid file is selected</source>
<translation> .</translation>
@ -1471,91 +1471,91 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../UserInterface.cpp" line="510"/>
<source>Failed to read Snapmatic picture</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../UserInterface.cpp" line="526"/>
<source>Failed to read Savegame file</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<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="1003"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<source>Failed to import the Snapmatic picture, file not begin with PGTA or end with .g5e</source>
<translation> . PGTA로 .g5e로 .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>uid %1() . uid ?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<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="1258"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation> . .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation> . .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1328"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1411"/>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Export selected...</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<location filename="../ProfileInterface.cpp" line="1371"/>
<location filename="../ProfileInterface.cpp" line="1389"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1374"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<location filename="../ProfileInterface.cpp" line="1394"/>
<source>JPG pictures only</source>
<translation>JPG </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1378"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<location filename="../ProfileInterface.cpp" line="1398"/>
<source>GTA Snapmatic only</source>
<translation>GTA </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<source>%1Export Snapmatic pictures%2&lt;br&gt;&lt;br&gt;JPG pictures make it possible to open the picture with a Image Viewer&lt;br&gt;GTA Snapmatic make it possible to import the picture into the game&lt;br&gt;&lt;br&gt;Export as:</source>
<translation>%1 .%2 &lt;br&gt;&lt;br&gt;JPG .&lt;br&gt;GTA .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1412"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<source>Initialising export...</source>
<translation> ...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<source>Export failed with...
%1</source>
@ -1564,45 +1564,45 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>Remove selected</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> ?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<source>No Snapmatic pictures are selected</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>%1 failed with...
%2</source>
@ -1613,84 +1613,84 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify as Avatar</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2355"/>
<location filename="../ProfileInterface.cpp" line="2461"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<source>Patch selected...</source>
<translation> ...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2122"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2356"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2462"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<location filename="../ProfileInterface.cpp" line="2142"/>
<location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2245"/>
<location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2376"/>
<location filename="../ProfileInterface.cpp" line="2395"/>
<location filename="../ProfileInterface.cpp" line="2482"/>
<location filename="../ProfileInterface.cpp" line="2501"/>
<source>Patch file %1 of %2 files</source>
<translation>%2 %1 .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players...</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew...</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title...</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation> .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translatorcomment>%1() ...</translatorcomment>
@ -1791,45 +1791,45 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1754"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1775"/>
<location filename="../ProfileInterface.cpp" line="1805"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1786"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1806"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1789"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1809"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1762"/>
<location filename="../ProfileInterface.cpp" line="1791"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<source>&amp;Deselect</source>
<translation> (&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1814"/>
<source>Select &amp;All</source>
<translation> (&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1768"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1817"/>
<source>&amp;Deselect All</source>
<translation> (&amp;D)</translation>
</message>
@ -1905,7 +1905,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="138"/>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Delete Savegame</source>
<translation> </translation>
</message>
@ -1915,7 +1915,7 @@ Press 1 for Default View</source>
<translation>%1() ?</translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Failed at deleting %1 from your savegames</source>
<translation>%1() .</translation>
</message>
@ -1928,10 +1928,10 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="126"/>
<location filename="../JsonEditorDialog.cpp" line="191"/>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Snapmatic Properties</source>
<translation> </translation>
</message>
@ -2022,38 +2022,38 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>I/O .</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>JSON .</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>Snapmatic Crew</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>New Snapmatic crew:</source>
<translation> :</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>Snapmatic Title</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>New Snapmatic title:</source>
<translation> :</translation>
</message>
@ -2222,7 +2222,7 @@ Press 1 for Default View</source>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="183"/>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Delete picture</source>
<translation> </translation>
</message>
@ -2232,62 +2232,62 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1711"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1731"/>
<location filename="../ProfileInterface.cpp" line="1796"/>
<source>Edi&amp;t</source>
<translation>(&amp;T)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<location filename="../ProfileInterface.cpp" line="1737"/>
<location filename="../ProfileInterface.cpp" line="1802"/>
<source>Show &amp;In-game</source>
<translation> (&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1783"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1803"/>
<source>Hide &amp;In-game</source>
<translation> (&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1709"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1697"/>
<location filename="../ProfileInterface.cpp" line="1726"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<source>&amp;Deselect</source>
<translation> (&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1700"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Select &amp;All</source>
<translation> (&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1703"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1723"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>&amp;Deselect All</source>
<translation> (&amp;D)</translation>
</message>
@ -2297,17 +2297,17 @@ Press 1 for Default View</source>
<translation> %1 ?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation> %1 .</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation> %1 .</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation> %1 .</translation>
</message>
@ -2471,7 +2471,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="748"/>
<location filename="../OptionsDialog.cpp" line="752"/>
<location filename="../UserInterface.cpp" line="194"/>
<location filename="../UserInterface.cpp" line="729"/>
<source>Select GTA V Folder...</source>
@ -2489,43 +2489,43 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1780"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1800"/>
<source>Change &amp;Title...</source>
<translation> (&amp;T)</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1734"/>
<location filename="../ProfileInterface.cpp" line="1799"/>
<source>Change &amp;Crew...</source>
<translation>&amp; (&amp;C)</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<location filename="../ProfileInterface.cpp" line="1777"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<source>&amp;Qualify as Avatar</source>
<translation> (&amp;Q)</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1778"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1798"/>
<source>Change &amp;Players...</source>
<translation> (&amp;P)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Show In-game</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Hide In-game</source>
<translation> </translation>
</message>

View File

@ -181,10 +181,10 @@ Pictures and Savegames</source>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Snapmatic Image Editor</source>
<translation>Редактор картинок Snapmatic</translation>
</message>
@ -214,14 +214,14 @@ Pictures and Savegames</source>
<translation>&amp;Закрыть</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation>
</message>
@ -400,14 +400,14 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="195"/>
<location filename="../ProfileInterface.cpp" line="722"/>
<location filename="../ProfileInterface.cpp" line="730"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Свой Аватар</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="218"/>
<location filename="../ProfileInterface.cpp" line="741"/>
<location filename="../ProfileInterface.cpp" line="749"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Своя Картинка</translation>
@ -757,26 +757,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Found: %1</source>
<translation>Найдено: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Language: %1</source>
<translation>Язык: %1</translation>
</message>
@ -797,7 +797,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="601"/>
<location filename="../OptionsDialog.cpp" line="605"/>
<source>Participate in %1 User Statistics</source>
<translation>Участвовать в пользовательской статистике %1</translation>
</message>
@ -830,8 +830,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="617"/>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Participation ID: %1</source>
<translation>Номер участника: %1</translation>
</message>
@ -960,62 +960,62 @@ Y: %2</translation>
<translation>%1 (Приоритетный язык)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>Другая папка будет загружена после перезапуска %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>View %1 User Statistics Online</source>
<translation>Посмотреть пользовательскую статистику %1 онлайн</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Not registered</source>
<translation>Не зарегистрирован</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Yes</source>
<translation>Да</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<source>No</source>
<translation>Нет</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<source>OS defined</source>
<translation>Настройка от ОС</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Steam defined</source>
<translation>Настройка от Steam</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="499"/>
<location filename="../OptionsDialog.cpp" line="503"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation>Нет профиля</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="507"/>
<location filename="../OptionsDialog.cpp" line="511"/>
<location filename="../OptionsDialog.cpp" line="513"/>
<location filename="../OptionsDialog.cpp" line="515"/>
<location filename="../OptionsDialog.cpp" line="517"/>
<source>Profile: %1</source>
<translation>Профиль: %1</translation>
</message>
@ -1065,37 +1065,37 @@ Y: %2</translation>
<translation>Экспортировать</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1707"/>
<source>Export as &amp;Picture...</source>
<translation>Экспортировать как &amp;картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../ProfileInterface.cpp" line="1708"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Экспортировать как &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../PictureDialog.cpp" line="176"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписать картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1701"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Изменить свойства...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1704"/>
<source>Open &amp;Map Viewer...</source>
<translation>Открыть &amp;карту...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="488"/>
<location filename="../PictureDialog.cpp" line="439"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1104,37 +1104,37 @@ Arrow Keys - Navigate</source>
Стрелки - Навигация</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Snapmatic Picture Viewer</source>
<translation>Просмотрщик фотографий Snapmatic</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Failed at %1</source>
<translation>Ошибка при %1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="665"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="609"/>
<source>No Crew</source>
<translation>Вне банды</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="686"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="630"/>
<location filename="../SnapmaticEditor.cpp" line="246"/>
<source>No Players</source>
<translation>Игроков нет</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="620"/>
<location filename="../PictureDialog.cpp" line="567"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>Режим просмотра аватарок
Нажмите 1 для стандартного просмотра</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="514"/>
<source>Unknown Location</source>
<translation>Неизвестное место</translation>
</message>
@ -1236,8 +1236,8 @@ Press 1 for Default View</source>
<translation>Картинки Snapmatic (PGTA*)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>Open &amp;JSON Editor...</source>
<translation>Открыть &amp;редактор JSON...</translation>
</message>
@ -1358,18 +1358,18 @@ Press 1 for Default View</source>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Import...</source>
<translation>Импортировать...</translation>
</message>
@ -1419,20 +1419,20 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../UserInterface.cpp" line="510"/>
<source>Failed to read Snapmatic picture</source>
<translation>Не удалось загрузить картинку Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../UserInterface.cpp" line="526"/>
<source>Failed to read Savegame file</source>
<translation>Не удалось загрузить файл сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../UserInterface.cpp" line="558"/>
<source>No valid file is selected</source>
<translation>Выбранный файл неверен</translation>
@ -1457,131 +1457,131 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="509"/>
<location filename="../ImportDialog.cpp" line="836"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="518"/>
<location filename="../ImportDialog.cpp" line="845"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<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="944"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<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="1117"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<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="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<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="1258"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не удалось импортировать сохранение, не получилось скопировать файл в профиль</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не удалось импортировать сохранение, нет пустых ячеек под сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<location filename="../ProfileInterface.cpp" line="1371"/>
<location filename="../ProfileInterface.cpp" line="1389"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>Картинки JPG и GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1374"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<location filename="../ProfileInterface.cpp" line="1394"/>
<source>JPG pictures only</source>
<translation>Только картинки JPG</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1378"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<location filename="../ProfileInterface.cpp" line="1398"/>
<source>GTA Snapmatic only</source>
<translation>Только GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1412"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<source>Initialising export...</source>
<translation>Подготовка к экспорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не выделены ни один Snapmatic или сохранение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>Remove selected</source>
<translation>Снять выделение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Точно ли хочешь удалить выбранные картинки Snapmatic и файлы сохранений?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1003"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>Подготовка данных к импорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify as Avatar</source>
<translation>Пометить как Аватар</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<source>No Snapmatic pictures are selected</source>
<translation>Не выделена ни одна картинка Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2355"/>
<location filename="../ProfileInterface.cpp" line="2461"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<source>Patch selected...</source>
<translation>Пропатчить выделенные...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2122"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2356"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2462"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<location filename="../ProfileInterface.cpp" line="2142"/>
<location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2245"/>
<location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2376"/>
<location filename="../ProfileInterface.cpp" line="2395"/>
<location filename="../ProfileInterface.cpp" line="2482"/>
<location filename="../ProfileInterface.cpp" line="2501"/>
<source>Patch file %1 of %2 files</source>
<translation>Изменяется файл %1 из %2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>%1 failed with...
%2</source>
@ -1591,86 +1591,86 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translatorcomment>Можно использовать слово &quot;приписать&quot;</translatorcomment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не удалось удалить все выделенные картинки Snapmatic и/или сохранения</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Помечание</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players...</source>
<translation>Изменить игроков...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Измение игроков</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew...</source>
<translation>Изменить банду...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Введённый идентификатор банды не верен</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Изменение банды</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title...</source>
<translation>Изменить заголовок...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Введённый заголовок не верен</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Изменение заголовка</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<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="1328"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1411"/>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Export selected...</source>
<translation>Экпортировать выделенное...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<source>Export failed with...
%1</source>
@ -1811,48 +1811,48 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="138"/>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Delete Savegame</source>
<translation>Удалить сохранение</translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Failed at deleting %1 from your savegames</source>
<translation>Не удалось удалить сохранение %1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1754"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<source>&amp;View</source>
<translation>&amp;Просмотр</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1786"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1806"/>
<source>&amp;Remove</source>
<translation>&amp;Удалить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1789"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1809"/>
<source>&amp;Select</source>
<translation>&amp;Выбрать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1762"/>
<location filename="../ProfileInterface.cpp" line="1791"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<source>&amp;Deselect</source>
<translation>Сн&amp;ять выбор</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1814"/>
<source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1768"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1817"/>
<source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation>
</message>
@ -1862,9 +1862,9 @@ Press 1 for Default View</source>
<translation>Копировать сохранение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1775"/>
<location filename="../ProfileInterface.cpp" line="1805"/>
<source>&amp;Export</source>
<translation>&amp;Экспортировать</translation>
</message>
@ -1915,10 +1915,10 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="126"/>
<location filename="../JsonEditorDialog.cpp" line="191"/>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Snapmatic Properties</source>
<translation>Свойства Snapmatic</translation>
</message>
@ -1968,8 +1968,8 @@ Press 1 for Default View</source>
<translation>Meme</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>Snapmatic Title</source>
<translation>Заголовок Snapmatic</translation>
</message>
@ -2061,33 +2061,33 @@ Press 1 for Default View</source>
<translation>Не удалось изменить свойства Snapmatic из-за %1</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>Не удалось измененить свойства Snapmatic из-за ошибки JSON</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>New Snapmatic title:</source>
<translation>Новый заголовок Snapmatic:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>Snapmatic Crew</source>
<translation>Банда на Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>New Snapmatic crew:</source>
<translation>Новая банда на Snapmatic:</translation>
</message>
@ -2199,7 +2199,7 @@ Press 1 for Default View</source>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="183"/>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Delete picture</source>
<translation>Удалить картинку</translation>
</message>
@ -2209,77 +2209,77 @@ Press 1 for Default View</source>
<translation>Уверены, что хотите удалить %1 из коллекции картинок Snapmatic?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation>Не удалось удалить %1 из колелкции картинок Snapmatic</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation>Не удалось скрыть %1 из списка картинок Snapmatic в игре</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1711"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1731"/>
<location filename="../ProfileInterface.cpp" line="1796"/>
<source>Edi&amp;t</source>
<translation>&amp;Правка</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<location filename="../ProfileInterface.cpp" line="1737"/>
<location filename="../ProfileInterface.cpp" line="1802"/>
<source>Show &amp;In-game</source>
<translation>Показывать в &amp;игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1783"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1803"/>
<source>Hide &amp;In-game</source>
<translation>Ск&amp;рыть в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Export</source>
<translation>&amp;Экспорт</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1709"/>
<source>&amp;View</source>
<translation>По&amp;казать</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<source>&amp;Remove</source>
<translation>У&amp;далить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<source>&amp;Select</source>
<translation>&amp;Выделить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1697"/>
<location filename="../ProfileInterface.cpp" line="1726"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<source>&amp;Deselect</source>
<translation>Сн&amp;ять выделение</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1700"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Select &amp;All</source>
<translation>В&amp;ыбрать все</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1703"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1723"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>&amp;Deselect All</source>
<translation>Снять выбо&amp;р со всех</translation>
</message>
@ -2403,29 +2403,29 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1778"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1798"/>
<source>Change &amp;Players...</source>
<translation>&amp;Изменить игрока...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1780"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1800"/>
<source>Change &amp;Title...</source>
<translation>Изменить &amp;Заголовок...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1734"/>
<location filename="../ProfileInterface.cpp" line="1799"/>
<source>Change &amp;Crew...</source>
<translation>Изменить &amp;банду...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<location filename="../ProfileInterface.cpp" line="1777"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<source>&amp;Qualify as Avatar</source>
<translation>&amp;Пометить как Аватар</translation>
</message>
@ -2479,7 +2479,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="748"/>
<location filename="../OptionsDialog.cpp" line="752"/>
<location filename="../UserInterface.cpp" line="194"/>
<location filename="../UserInterface.cpp" line="729"/>
<source>Select GTA V Folder...</source>
@ -2527,16 +2527,16 @@ Press 1 for Default View</source>
<translation>Пере&amp;загрузить</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Show In-game</source>
<translation>Показывать в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Hide In-game</source>
<translation>Скрыть в игре</translation>
</message>

View File

@ -205,22 +205,22 @@ Pictures and Savegames</source>
<translation>&amp;Закрити</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Snapmatic Image Editor</source>
<translation>Редактор Snapmatic зображень</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation>
</message>
@ -389,14 +389,14 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="195"/>
<location filename="../ProfileInterface.cpp" line="722"/>
<location filename="../ProfileInterface.cpp" line="730"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацький Аватар</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="218"/>
<location filename="../ProfileInterface.cpp" line="741"/>
<location filename="../ProfileInterface.cpp" line="749"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation>Користувацьке Зображення</translation>
@ -753,26 +753,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Found: %1</source>
<translation>Знайдено:%1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Language: %1</source>
<translation>Мова: %1</translation>
</message>
@ -794,7 +794,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="601"/>
<location filename="../OptionsDialog.cpp" line="605"/>
<source>Participate in %1 User Statistics</source>
<translation>Опитування %1 про устаткування ПК</translation>
</message>
@ -830,8 +830,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="617"/>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Participation ID: %1</source>
<translation>ID учасника : %1</translation>
</message>
@ -953,62 +953,62 @@ Y: %2</translation>
<translation>%1 (пріоритет мови)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>Нова користувацька папка буде ініціалізована після перезапуску %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="499"/>
<location filename="../OptionsDialog.cpp" line="503"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation>Жодного</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="507"/>
<location filename="../OptionsDialog.cpp" line="511"/>
<location filename="../OptionsDialog.cpp" line="513"/>
<location filename="../OptionsDialog.cpp" line="515"/>
<location filename="../OptionsDialog.cpp" line="517"/>
<source>Profile: %1</source>
<translation>Профіль: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>View %1 User Statistics Online</source>
<translation>Переглянути користувацьку статистику %1 онлайн</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Not registered</source>
<translation>Не зареєстрований</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Yes</source>
<translation>Так</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<source>No</source>
<translation>Ні</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<source>OS defined</source>
<translation>Визначається ОС</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Steam defined</source>
<translation>Визначається Steam</translation>
</message>
@ -1052,43 +1052,43 @@ Y: %2</translation>
<translation>&amp;Закрити</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1707"/>
<source>Export as &amp;Picture...</source>
<translation>Експортувати як &amp;зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../ProfileInterface.cpp" line="1708"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Експортувати як &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1701"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Змінити властивості...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../PictureDialog.cpp" line="176"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписати зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1704"/>
<source>Open &amp;Map Viewer...</source>
<translation>Відкрити &amp;карту...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>Open &amp;JSON Editor...</source>
<translation>Відкрити редактор &amp;JSON...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="488"/>
<location filename="../PictureDialog.cpp" line="439"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1097,35 +1097,35 @@ Arrow Keys - Navigate</source>
Стрілки - Навігація</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Snapmatic Picture Viewer</source>
<translation>Переглядач фотографій Snapmatic</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Failed at %1</source>
<translation>Помилка на%1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="686"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="630"/>
<location filename="../SnapmaticEditor.cpp" line="246"/>
<source>No Players</source>
<translation>Гравців немає</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="665"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="609"/>
<source>No Crew</source>
<translation>Банди немає</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="514"/>
<source>Unknown Location</source>
<translation>Невідома локація</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="620"/>
<location filename="../PictureDialog.cpp" line="567"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>Режим для аватарок
@ -1341,18 +1341,18 @@ Press 1 for Default View</source>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Import...</source>
<translation>Імпортування...</translation>
</message>
@ -1384,14 +1384,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="509"/>
<location filename="../ImportDialog.cpp" line="836"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="518"/>
<location filename="../ImportDialog.cpp" line="845"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
</message>
@ -1440,7 +1440,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../UserInterface.cpp" line="558"/>
<source>No valid file is selected</source>
<translation>Вибрані недійсні файли</translation>
@ -1461,81 +1461,81 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../UserInterface.cpp" line="510"/>
<source>Failed to read Snapmatic picture</source>
<translation>Не вдалося прочитати Snapmatic картинку</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../UserInterface.cpp" line="526"/>
<source>Failed to read Savegame file</source>
<translation>Не вдалося прочитати файл збереження гри</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<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="1117"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<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="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<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="1258"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation>Не вдалося імпортувати Сейв, не можна скопіювати файл у профіль</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation>Не вдалося імпортувати Сейв, немає вільного слота</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1328"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1411"/>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Export selected...</source>
<translation>Експорт обраних...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<location filename="../ProfileInterface.cpp" line="1371"/>
<location filename="../ProfileInterface.cpp" line="1389"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG картинки і GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1374"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<location filename="../ProfileInterface.cpp" line="1394"/>
<source>JPG pictures only</source>
<translation>Тільки JPG картинки</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1378"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<location filename="../ProfileInterface.cpp" line="1398"/>
<source>GTA Snapmatic only</source>
<translation>Тільки GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<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="1412"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<source>Initialising export...</source>
<translation>Ініціалізація експорту...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<source>Export failed with...
%1</source>
@ -1544,45 +1544,45 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation>Не вибрано жодного Snapmatic зображення або файлу збереження</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>Remove selected</source>
<translation>Видалити вибрані</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation>Ви дійсно хочете видалити вибрані Snapmatic фотографії та файли збереження гри?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation>Не вдалося видалити всі обрані Snapmatic фотографії та/або Сейви</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<source>No Snapmatic pictures are selected</source>
<translation>Не вибрано жодного Snapmatic зображення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>%1 failed with...
%2</source>
@ -1592,91 +1592,91 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1003"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>Підготувати контент для імпорту ...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation>Snapmatic зображення з uid %1 вже існує, ви хочете призначити для імпорту новий uid та мітку часу?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify as Avatar</source>
<translation>Позначити як Аватар</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2355"/>
<location filename="../ProfileInterface.cpp" line="2461"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<source>Patch selected...</source>
<translation>Вибір патчу...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2122"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2356"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2462"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<location filename="../ProfileInterface.cpp" line="2142"/>
<location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2245"/>
<location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2376"/>
<location filename="../ProfileInterface.cpp" line="2395"/>
<location filename="../ProfileInterface.cpp" line="2482"/>
<location filename="../ProfileInterface.cpp" line="2501"/>
<source>Patch file %1 of %2 files</source>
<translation>Патч файлу %1 з %2 файлів</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation>Якість</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players...</source>
<translation>Зміна гравців...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation>Змінити гравців</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew...</source>
<translation>Зміна банди...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation>Не вдалося ввести дійсний ID Банди Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation>Змінити банду</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title...</source>
<translation>Зміна назви...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation>Не вдалося ввести дійсний заголовок Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation>Змінити назву</translation>
@ -1776,45 +1776,45 @@ Press 1 for Default View</source>
<translation>Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1754"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<source>&amp;View</source>
<translation>&amp;Перегляд</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1775"/>
<location filename="../ProfileInterface.cpp" line="1805"/>
<source>&amp;Export</source>
<translation>&amp;Експорт</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1786"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1806"/>
<source>&amp;Remove</source>
<translation>&amp;Видалення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1789"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1809"/>
<source>&amp;Select</source>
<translation>&amp;Виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1762"/>
<location filename="../ProfileInterface.cpp" line="1791"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1814"/>
<source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1768"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1817"/>
<source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation>
</message>
@ -1890,7 +1890,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="138"/>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Delete Savegame</source>
<translation>Видалити файл збереження</translation>
</message>
@ -1900,7 +1900,7 @@ Press 1 for Default View</source>
<translation>Ви впевнені, що хочете видалити %1 зі своїх сейвів?</translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Failed at deleting %1 from your savegames</source>
<translation>Не вдалося видалити %1 із ваших збережених ігор</translation>
</message>
@ -1913,10 +1913,10 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="126"/>
<location filename="../JsonEditorDialog.cpp" line="191"/>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Snapmatic Properties</source>
<translation>Властивості Snapmatic</translation>
</message>
@ -2007,38 +2007,38 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>Змінити властивості Snapmatic не вдалося через JSON Помилку</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>Snapmatic Crew</source>
<translation>Snapmatic банда</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>New Snapmatic crew:</source>
<translation>Нова Snapmatic банда:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>Snapmatic Title</source>
<translation>Snapmatic назва</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>New Snapmatic title:</source>
<translation>Новий Snapmatic заголовок:</translation>
</message>
@ -2202,7 +2202,7 @@ Press 1 for Default View</source>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="183"/>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Delete picture</source>
<translation>Видалити фото</translation>
</message>
@ -2212,62 +2212,62 @@ Press 1 for Default View</source>
<translation>Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1711"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1731"/>
<location filename="../ProfileInterface.cpp" line="1796"/>
<source>Edi&amp;t</source>
<translation>Редагува&amp;ти</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<location filename="../ProfileInterface.cpp" line="1737"/>
<location filename="../ProfileInterface.cpp" line="1802"/>
<source>Show &amp;In-game</source>
<translation>Показати &amp;у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1783"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1803"/>
<source>Hide &amp;In-game</source>
<translation>Сховати &amp;у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Export</source>
<translation>&amp;Експортувати</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1709"/>
<source>&amp;View</source>
<translation>&amp;Переглянути</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<source>&amp;Remove</source>
<translation>&amp;Видалити</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<source>&amp;Select</source>
<translation>&amp;Виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1697"/>
<location filename="../ProfileInterface.cpp" line="1726"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<source>&amp;Deselect</source>
<translation>&amp;Зняти виділення</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1700"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Select &amp;All</source>
<translation>Вибрати &amp;усі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1703"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1723"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>&amp;Deselect All</source>
<translation>&amp;Зняти виділення усіх</translation>
</message>
@ -2277,17 +2277,17 @@ Press 1 for Default View</source>
<translation>Ви дійсно бажаєте видалити %1 з ваших Snapmatic фотографій?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation>Не вдалося видалити%1 з ваших Snapmatic фотографій</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation>Не вдалося сховати %1 Snapmatic у грі</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation>Не вдалося показати %1 Snapmatic у грі</translation>
</message>
@ -2451,7 +2451,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="748"/>
<location filename="../OptionsDialog.cpp" line="752"/>
<location filename="../UserInterface.cpp" line="194"/>
<location filename="../UserInterface.cpp" line="729"/>
<source>Select GTA V Folder...</source>
@ -2469,43 +2469,43 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1780"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1800"/>
<source>Change &amp;Title...</source>
<translation>Змінити &amp;заголовок...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1734"/>
<location filename="../ProfileInterface.cpp" line="1799"/>
<source>Change &amp;Crew...</source>
<translation>Змінити &amp;банду...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<location filename="../ProfileInterface.cpp" line="1777"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<source>&amp;Qualify as Avatar</source>
<translation>Позначити як &amp;аватар</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1778"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1798"/>
<source>Change &amp;Players...</source>
<translation>Змінити &amp;гравців...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Show In-game</source>
<translation>Показати у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Hide In-game</source>
<translation>Сховати у грі</translation>
</message>

View File

@ -201,22 +201,22 @@ Pictures and Savegames</source>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Snapmatic Image Editor</source>
<translation>Snapmatic </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="893"/>
<location filename="../SnapmaticWidget.cpp" line="390"/>
<location filename="../PictureDialog.cpp" line="826"/>
<location filename="../SnapmaticWidget.cpp" line="394"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>I/O Snapmatic </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="917"/>
<location filename="../SnapmaticWidget.cpp" line="414"/>
<location filename="../PictureDialog.cpp" line="852"/>
<location filename="../SnapmaticWidget.cpp" line="422"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Snapmatic </translation>
</message>
@ -385,14 +385,14 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="195"/>
<location filename="../ProfileInterface.cpp" line="722"/>
<location filename="../ProfileInterface.cpp" line="730"/>
<source>Custom Avatar</source>
<comment>Custom Avatar Description in SC, don&apos;t use Special Character!</comment>
<translation></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="218"/>
<location filename="../ProfileInterface.cpp" line="741"/>
<location filename="../ProfileInterface.cpp" line="749"/>
<source>Custom Picture</source>
<comment>Custom Picture Description in SC, don&apos;t use Special Character!</comment>
<translation></translation>
@ -748,26 +748,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Found: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Language: %1</source>
<translation>: %1</translation>
</message>
@ -788,7 +788,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="601"/>
<location filename="../OptionsDialog.cpp" line="605"/>
<source>Participate in %1 User Statistics</source>
<translation> %1 使</translation>
</message>
@ -824,8 +824,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="617"/>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Participation ID: %1</source>
<translation> ID: %1</translation>
</message>
@ -947,62 +947,62 @@ Y: %2</translation>
<translation>%1 ()</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="489"/>
<location filename="../OptionsDialog.cpp" line="493"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation> %1 .</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="499"/>
<location filename="../OptionsDialog.cpp" line="503"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="507"/>
<location filename="../OptionsDialog.cpp" line="511"/>
<location filename="../OptionsDialog.cpp" line="513"/>
<location filename="../OptionsDialog.cpp" line="515"/>
<location filename="../OptionsDialog.cpp" line="517"/>
<source>Profile: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>View %1 User Statistics Online</source>
<translation> %1 使</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="621"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<source>Not registered</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="655"/>
<location filename="../OptionsDialog.cpp" line="668"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<location filename="../OptionsDialog.cpp" line="643"/>
<location filename="../OptionsDialog.cpp" line="659"/>
<location filename="../OptionsDialog.cpp" line="672"/>
<location filename="../OptionsDialog.cpp" line="673"/>
<source>Yes</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="658"/>
<source>No</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="647"/>
<location filename="../OptionsDialog.cpp" line="676"/>
<location filename="../OptionsDialog.cpp" line="651"/>
<location filename="../OptionsDialog.cpp" line="680"/>
<source>OS defined</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="663"/>
<location filename="../OptionsDialog.cpp" line="684"/>
<location filename="../OptionsDialog.cpp" line="667"/>
<location filename="../OptionsDialog.cpp" line="688"/>
<source>Steam defined</source>
<translation>Steam </translation>
</message>
@ -1046,43 +1046,43 @@ Y: %2</translation>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="174"/>
<location filename="../ProfileInterface.cpp" line="1687"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1707"/>
<source>Export as &amp;Picture...</source>
<translation>(&amp;P)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1688"/>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../ProfileInterface.cpp" line="1708"/>
<source>Export as &amp;Snapmatic...</source>
<translation> Snapmatic(&amp;S)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="177"/>
<location filename="../ProfileInterface.cpp" line="1681"/>
<location filename="../PictureDialog.cpp" line="175"/>
<location filename="../ProfileInterface.cpp" line="1701"/>
<source>&amp;Edit Properties...</source>
<translation>(&amp;E) ...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1682"/>
<location filename="../PictureDialog.cpp" line="176"/>
<location filename="../ProfileInterface.cpp" line="1702"/>
<source>&amp;Overwrite Image...</source>
<translation>(&amp;O)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1684"/>
<location filename="../PictureDialog.cpp" line="178"/>
<location filename="../ProfileInterface.cpp" line="1704"/>
<source>Open &amp;Map Viewer...</source>
<translation>(&amp;M)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="182"/>
<location filename="../ProfileInterface.cpp" line="1685"/>
<location filename="../PictureDialog.cpp" line="180"/>
<location filename="../ProfileInterface.cpp" line="1705"/>
<source>Open &amp;JSON Editor...</source>
<translation> JSON (&amp;J)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="488"/>
<location filename="../PictureDialog.cpp" line="439"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1091,35 +1091,35 @@ Arrow Keys - Navigate</source>
- </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Snapmatic Picture Viewer</source>
<translation>Snapmatic </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="547"/>
<location filename="../PictureDialog.cpp" line="494"/>
<source>Failed at %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="686"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="630"/>
<location filename="../SnapmaticEditor.cpp" line="246"/>
<source>No Players</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="665"/>
<location filename="../PictureDialog.cpp" line="514"/>
<location filename="../PictureDialog.cpp" line="609"/>
<source>No Crew</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="567"/>
<location filename="../PictureDialog.cpp" line="514"/>
<source>Unknown Location</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="620"/>
<location filename="../PictureDialog.cpp" line="567"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>
@ -1335,18 +1335,18 @@ Press 1 for Default View</source>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="563"/>
<location filename="../ProfileInterface.cpp" line="597"/>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="987"/>
<location filename="../ProfileInterface.cpp" line="1117"/>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1221"/>
<location filename="../ProfileInterface.cpp" line="1258"/>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../ProfileInterface.cpp" line="1007"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Import...</source>
<translation>...</translation>
</message>
@ -1378,14 +1378,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ImportDialog.cpp" line="509"/>
<location filename="../ImportDialog.cpp" line="836"/>
<location filename="../ProfileInterface.cpp" line="787"/>
<location filename="../ProfileInterface.cpp" line="795"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="518"/>
<location filename="../ImportDialog.cpp" line="845"/>
<location filename="../ProfileInterface.cpp" line="797"/>
<location filename="../ProfileInterface.cpp" line="805"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1</translation>
</message>
@ -1434,7 +1434,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="542"/>
<location filename="../ProfileInterface.cpp" line="949"/>
<location filename="../ProfileInterface.cpp" line="969"/>
<location filename="../UserInterface.cpp" line="558"/>
<source>No valid file is selected</source>
<translation></translation>
@ -1453,126 +1453,126 @@ Press 1 for Default View</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="639"/>
<location filename="../ProfileInterface.cpp" line="643"/>
<location filename="../UserInterface.cpp" line="510"/>
<source>Failed to read Snapmatic picture</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="674"/>
<location filename="../ProfileInterface.cpp" line="682"/>
<location filename="../UserInterface.cpp" line="526"/>
<source>Failed to read Savegame file</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="944"/>
<location filename="../ProfileInterface.cpp" line="964"/>
<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="1117"/>
<location filename="../ProfileInterface.cpp" line="1137"/>
<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="1221"/>
<location filename="../ProfileInterface.cpp" line="1241"/>
<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="1258"/>
<location filename="../ProfileInterface.cpp" line="1278"/>
<source>Failed to import the Savegame, can&apos;t copy the file into profile</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1264"/>
<location filename="../ProfileInterface.cpp" line="1284"/>
<source>Failed to import the Savegame, no Savegame slot is left</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1328"/>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1411"/>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1348"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<location filename="../ProfileInterface.cpp" line="1431"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<source>Export selected...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1351"/>
<location filename="../ProfileInterface.cpp" line="1369"/>
<location filename="../ProfileInterface.cpp" line="1371"/>
<location filename="../ProfileInterface.cpp" line="1389"/>
<source>JPG pictures and GTA Snapmatic</source>
<translation>JPG GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1352"/>
<location filename="../ProfileInterface.cpp" line="1374"/>
<location filename="../ProfileInterface.cpp" line="1372"/>
<location filename="../ProfileInterface.cpp" line="1394"/>
<source>JPG pictures only</source>
<translation> JPG </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1353"/>
<location filename="../ProfileInterface.cpp" line="1378"/>
<location filename="../ProfileInterface.cpp" line="1373"/>
<location filename="../ProfileInterface.cpp" line="1398"/>
<source>GTA Snapmatic only</source>
<translation> GTA Snapmatic</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1366"/>
<location filename="../ProfileInterface.cpp" line="1386"/>
<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="1412"/>
<location filename="../ProfileInterface.cpp" line="1432"/>
<source>Initialising export...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1446"/>
<location filename="../ProfileInterface.cpp" line="1466"/>
<source>Export failed with...
%1</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1466"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1486"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>No Snapmatic pictures or Savegames files are selected</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1508"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<location filename="../ProfileInterface.cpp" line="1528"/>
<source>Remove selected</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1474"/>
<location filename="../ProfileInterface.cpp" line="1494"/>
<source>You really want remove the selected Snapmatic picutres and Savegame files?</source>
<translation> Snapmatic /?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1502"/>
<location filename="../ProfileInterface.cpp" line="1522"/>
<source>Failed to remove all selected Snapmatic pictures and/or Savegame files</source>
<translation> Snapmatic /</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<source>No Snapmatic pictures are selected</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>%1 failed with...
%2</source>
@ -1582,91 +1582,91 @@ Press 1 for Default View</source>
%2</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1003"/>
<location filename="../ProfileInterface.cpp" line="1023"/>
<source>Prepare Content for Import...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1125"/>
<location filename="../ProfileInterface.cpp" line="1145"/>
<source>A Snapmatic picture already exists with the uid %1, you want assign your import a new uid and timestamp?</source>
<translation> uid %1 Snapmatic uid ?</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2110"/>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2130"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify as Avatar</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2121"/>
<location filename="../ProfileInterface.cpp" line="2224"/>
<location filename="../ProfileInterface.cpp" line="2355"/>
<location filename="../ProfileInterface.cpp" line="2461"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<source>Patch selected...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2122"/>
<location filename="../ProfileInterface.cpp" line="2141"/>
<location filename="../ProfileInterface.cpp" line="2225"/>
<location filename="../ProfileInterface.cpp" line="2244"/>
<location filename="../ProfileInterface.cpp" line="2356"/>
<location filename="../ProfileInterface.cpp" line="2375"/>
<location filename="../ProfileInterface.cpp" line="2462"/>
<location filename="../ProfileInterface.cpp" line="2481"/>
<location filename="../ProfileInterface.cpp" line="2142"/>
<location filename="../ProfileInterface.cpp" line="2161"/>
<location filename="../ProfileInterface.cpp" line="2245"/>
<location filename="../ProfileInterface.cpp" line="2264"/>
<location filename="../ProfileInterface.cpp" line="2376"/>
<location filename="../ProfileInterface.cpp" line="2395"/>
<location filename="../ProfileInterface.cpp" line="2482"/>
<location filename="../ProfileInterface.cpp" line="2501"/>
<source>Patch file %1 of %2 files</source>
<translation> %1 %2 </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2175"/>
<location filename="../ProfileInterface.cpp" line="2195"/>
<source>Qualify</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2196"/>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2216"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2274"/>
<location filename="../ProfileInterface.cpp" line="2294"/>
<source>Change Players</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2295"/>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2315"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2332"/>
<location filename="../ProfileInterface.cpp" line="2352"/>
<source>Failed to enter a valid Snapmatic Crew ID</source>
<translation> ID</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2405"/>
<location filename="../ProfileInterface.cpp" line="2425"/>
<source>Change Crew</source>
<comment>%1 failed with...</comment>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2426"/>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2446"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2443"/>
<location filename="../ProfileInterface.cpp" line="2463"/>
<source>Failed to enter a valid Snapmatic title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2508"/>
<location filename="../ProfileInterface.cpp" line="2528"/>
<source>Change Title</source>
<comment>%1 failed with...</comment>
<translation></translation>
@ -1758,45 +1758,45 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1754"/>
<location filename="../ProfileInterface.cpp" line="1774"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1755"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1740"/>
<location filename="../ProfileInterface.cpp" line="1775"/>
<location filename="../ProfileInterface.cpp" line="1805"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1721"/>
<location filename="../ProfileInterface.cpp" line="1756"/>
<location filename="../ProfileInterface.cpp" line="1786"/>
<location filename="../ProfileInterface.cpp" line="1741"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1806"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1759"/>
<location filename="../ProfileInterface.cpp" line="1789"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1809"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1762"/>
<location filename="../ProfileInterface.cpp" line="1791"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1811"/>
<source>&amp;Deselect</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1765"/>
<location filename="../ProfileInterface.cpp" line="1794"/>
<location filename="../ProfileInterface.cpp" line="1785"/>
<location filename="../ProfileInterface.cpp" line="1814"/>
<source>Select &amp;All</source>
<translation>(&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1768"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<location filename="../ProfileInterface.cpp" line="1788"/>
<location filename="../ProfileInterface.cpp" line="1817"/>
<source>&amp;Deselect All</source>
<translation>(&amp;D)</translation>
</message>
@ -1872,7 +1872,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="138"/>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Delete Savegame</source>
<translation></translation>
</message>
@ -1882,7 +1882,7 @@ Press 1 for Default View</source>
<translation> %1?</translation>
</message>
<message>
<location filename="../SavegameWidget.cpp" line="183"/>
<location filename="../SavegameWidget.cpp" line="191"/>
<source>Failed at deleting %1 from your savegames</source>
<translation> %1 </translation>
</message>
@ -1895,10 +1895,10 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="126"/>
<location filename="../JsonEditorDialog.cpp" line="191"/>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Snapmatic Properties</source>
<translation>Snapmatic </translation>
</message>
@ -1989,38 +1989,38 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="197"/>
<location filename="../PictureDialog.cpp" line="808"/>
<location filename="../PictureDialog.cpp" line="747"/>
<location filename="../SnapmaticEditor.cpp" line="333"/>
<location filename="../SnapmaticWidget.cpp" line="448"/>
<location filename="../SnapmaticWidget.cpp" line="456"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="226"/>
<location filename="../JsonEditorDialog.cpp" line="230"/>
<source>Patching of Snapmatic Properties failed because of JSON Error</source>
<translation>JSON Snapmatic </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>Snapmatic Crew</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2323"/>
<location filename="../SnapmaticEditor.cpp" line="442"/>
<location filename="../ProfileInterface.cpp" line="2343"/>
<location filename="../SnapmaticEditor.cpp" line="446"/>
<source>New Snapmatic crew:</source>
<translation>:</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>Snapmatic Title</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="2438"/>
<location filename="../SnapmaticEditor.cpp" line="413"/>
<location filename="../ProfileInterface.cpp" line="2458"/>
<location filename="../SnapmaticEditor.cpp" line="417"/>
<source>New Snapmatic title:</source>
<translation>:</translation>
</message>
@ -2184,7 +2184,7 @@ Press 1 for Default View</source>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="183"/>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Delete picture</source>
<translation></translation>
</message>
@ -2194,62 +2194,62 @@ Press 1 for Default View</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1674"/>
<location filename="../ProfileInterface.cpp" line="1711"/>
<location filename="../ProfileInterface.cpp" line="1776"/>
<location filename="../ProfileInterface.cpp" line="1694"/>
<location filename="../ProfileInterface.cpp" line="1731"/>
<location filename="../ProfileInterface.cpp" line="1796"/>
<source>Edi&amp;t</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1676"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1782"/>
<location filename="../ProfileInterface.cpp" line="1696"/>
<location filename="../ProfileInterface.cpp" line="1737"/>
<location filename="../ProfileInterface.cpp" line="1802"/>
<source>Show &amp;In-game</source>
<translation>(&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1679"/>
<location filename="../ProfileInterface.cpp" line="1718"/>
<location filename="../ProfileInterface.cpp" line="1783"/>
<location filename="../ProfileInterface.cpp" line="1699"/>
<location filename="../ProfileInterface.cpp" line="1738"/>
<location filename="../ProfileInterface.cpp" line="1803"/>
<source>Hide &amp;In-game</source>
<translation>(&amp;I)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1686"/>
<location filename="../ProfileInterface.cpp" line="1706"/>
<source>&amp;Export</source>
<translation>(&amp;E)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1689"/>
<location filename="../ProfileInterface.cpp" line="1709"/>
<source>&amp;View</source>
<translation>(&amp;V)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1692"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<source>&amp;Remove</source>
<translation>(&amp;R)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1695"/>
<location filename="../ProfileInterface.cpp" line="1724"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1744"/>
<source>&amp;Select</source>
<translation>(&amp;S)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1697"/>
<location filename="../ProfileInterface.cpp" line="1726"/>
<location filename="../ProfileInterface.cpp" line="1717"/>
<location filename="../ProfileInterface.cpp" line="1746"/>
<source>&amp;Deselect</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1700"/>
<location filename="../ProfileInterface.cpp" line="1729"/>
<location filename="../ProfileInterface.cpp" line="1720"/>
<location filename="../ProfileInterface.cpp" line="1749"/>
<source>Select &amp;All</source>
<translation>(&amp;A)</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1703"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1723"/>
<location filename="../ProfileInterface.cpp" line="1752"/>
<source>&amp;Deselect All</source>
<translation>(&amp;D)</translation>
</message>
@ -2259,17 +2259,17 @@ Press 1 for Default View</source>
<translation>Snapmatic %1 ?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="209"/>
<location filename="../SnapmaticWidget.cpp" line="213"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation> Snapmatic %1 </translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation> %1 </translation>
</message>
@ -2432,7 +2432,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="748"/>
<location filename="../OptionsDialog.cpp" line="752"/>
<location filename="../UserInterface.cpp" line="194"/>
<location filename="../UserInterface.cpp" line="729"/>
<source>Select GTA V Folder...</source>
@ -2450,43 +2450,43 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="346"/>
<location filename="../ProfileInterface.cpp" line="1715"/>
<location filename="../ProfileInterface.cpp" line="1780"/>
<location filename="../ProfileInterface.cpp" line="1735"/>
<location filename="../ProfileInterface.cpp" line="1800"/>
<source>Change &amp;Title...</source>
<translation>(&amp;T)...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="354"/>
<location filename="../ProfileInterface.cpp" line="1714"/>
<location filename="../ProfileInterface.cpp" line="1779"/>
<location filename="../ProfileInterface.cpp" line="1734"/>
<location filename="../ProfileInterface.cpp" line="1799"/>
<source>Change &amp;Crew...</source>
<translation>(&amp;C)...</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="362"/>
<location filename="../ProfileInterface.cpp" line="1712"/>
<location filename="../ProfileInterface.cpp" line="1777"/>
<location filename="../ProfileInterface.cpp" line="1732"/>
<location filename="../ProfileInterface.cpp" line="1797"/>
<source>&amp;Qualify as Avatar</source>
<translation>(&amp;Q)</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="370"/>
<location filename="../ProfileInterface.cpp" line="1713"/>
<location filename="../ProfileInterface.cpp" line="1778"/>
<location filename="../ProfileInterface.cpp" line="1733"/>
<location filename="../ProfileInterface.cpp" line="1798"/>
<source>Change &amp;Players...</source>
<translation>(&amp;P)...</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1604"/>
<location filename="../ProfileInterface.cpp" line="1618"/>
<location filename="../SnapmaticWidget.cpp" line="343"/>
<location filename="../ProfileInterface.cpp" line="1624"/>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../SnapmaticWidget.cpp" line="347"/>
<source>Show In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1638"/>
<location filename="../ProfileInterface.cpp" line="1652"/>
<location filename="../SnapmaticWidget.cpp" line="335"/>
<location filename="../ProfileInterface.cpp" line="1658"/>
<location filename="../ProfileInterface.cpp" line="1672"/>
<location filename="../SnapmaticWidget.cpp" line="339"/>
<source>Hide In-game</source>
<translation></translation>
</message>