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 * 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 * 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 * it under the terms of the GNU General Public License as published by
@ -212,7 +212,11 @@ bool JsonEditorDialog::saveJsonContent()
QJsonObject jsonObject; QJsonObject jsonObject;
jsonObject["Type"] = "JSONEdited"; jsonObject["Type"] = "JSONEdited";
jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength()); 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()); jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************** /*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer * 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 * 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 * it under the terms of the GNU General Public License as published by
@ -457,7 +457,11 @@ void OptionsDialog::applySettings()
QJsonDocument jsonDocument; QJsonDocument jsonDocument;
QJsonObject jsonObject; QJsonObject jsonObject;
jsonObject["Type"] = "SettingsUpdated"; jsonObject["Type"] = "SettingsUpdated";
#if QT_VERSION >= 0x060000
jsonObject["UpdateTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["UpdateTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); jsonObject["UpdateTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
} }

View File

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

View File

@ -1,6 +1,6 @@
/***************************************************************************** /*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer * 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 * 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 * 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; QJsonObject jsonObject;
jsonObject["Type"] = "ImportSuccess"; jsonObject["Type"] = "ImportSuccess";
jsonObject["ImportSize"] = QString::number(picture->getContentMaxLength()); 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()); jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Snapmatic"; jsonObject["ImportType"] = "Snapmatic";
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
@ -660,7 +664,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
QJsonDocument jsonDocument; QJsonDocument jsonDocument;
QJsonObject jsonObject; QJsonObject jsonObject;
jsonObject["Type"] = "ImportSuccess"; jsonObject["Type"] = "ImportSuccess";
#if QT_VERSION >= 0x060000
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Savegame"; jsonObject["ImportType"] = "Savegame";
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
@ -851,7 +859,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
jsonObject["Type"] = "ImportSuccess"; jsonObject["Type"] = "ImportSuccess";
jsonObject["ExtraFlag"] = "Dialog"; jsonObject["ExtraFlag"] = "Dialog";
jsonObject["ImportSize"] = QString::number(picture->getContentMaxLength()); 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()); jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Image"; jsonObject["ImportType"] = "Image";
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
@ -898,7 +910,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
QJsonObject jsonObject; QJsonObject jsonObject;
jsonObject["Type"] = "ImportSuccess"; jsonObject["Type"] = "ImportSuccess";
jsonObject["ImportSize"] = QString::number(picture->getContentMaxLength()); 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()); jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Snapmatic"; jsonObject["ImportType"] = "Snapmatic";
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
@ -924,7 +940,11 @@ bool ProfileInterface::importFile(QString selectedFile, QDateTime importDateTime
QJsonDocument jsonDocument; QJsonDocument jsonDocument;
QJsonObject jsonObject; QJsonObject jsonObject;
jsonObject["Type"] = "ImportSuccess"; jsonObject["Type"] = "ImportSuccess";
#if QT_VERSION >= 0x060000
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); jsonObject["ImportTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonObject["ImportType"] = "Savegame"; jsonObject["ImportType"] = "Savegame";
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);

View File

@ -1,6 +1,6 @@
/***************************************************************************** /*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer * 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 * 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 * it under the terms of the GNU General Public License as published by
@ -152,7 +152,11 @@ void SavegameWidget::on_cmdDelete_clicked()
QJsonObject jsonObject; QJsonObject jsonObject;
jsonObject["Type"] = "DeleteSuccess"; jsonObject["Type"] = "DeleteSuccess";
jsonObject["ExtraFlags"] = "Savegame"; jsonObject["ExtraFlags"] = "Savegame";
#if QT_VERSION >= 0x060000
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
} }
@ -171,7 +175,11 @@ void SavegameWidget::on_cmdDelete_clicked()
QJsonObject jsonObject; QJsonObject jsonObject;
jsonObject["Type"] = "DeleteSuccess"; jsonObject["Type"] = "DeleteSuccess";
jsonObject["ExtraFlags"] = "Savegame"; jsonObject["ExtraFlags"] = "Savegame";
#if QT_VERSION >= 0x060000
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toSecsSinceEpoch());
#else
jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t()); jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************** /*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer * 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 * 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 * it under the terms of the GNU General Public License as published by
@ -349,7 +349,11 @@ void SnapmaticEditor::on_cmdApply_clicked()
QJsonObject jsonObject; QJsonObject jsonObject;
jsonObject["Type"] = "PropertyEdited"; jsonObject["Type"] = "PropertyEdited";
jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength()); 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()); jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
} }

View File

@ -1,6 +1,6 @@
/***************************************************************************** /*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer * 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 * 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 * it under the terms of the GNU General Public License as published by
@ -197,7 +197,11 @@ bool SnapmaticWidget::deletePicture()
jsonObject["Type"] = "DeleteSuccess"; jsonObject["Type"] = "DeleteSuccess";
jsonObject["ExtraFlags"] = "Snapmatic"; jsonObject["ExtraFlags"] = "Snapmatic";
jsonObject["DeletedSize"] = QString::number(smpic->getContentMaxLength()); 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()); jsonObject["DeletedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
} }
@ -403,7 +407,11 @@ void SnapmaticWidget::editSnapmaticImage()
jsonObject["Type"] = "ImageEdited"; jsonObject["Type"] = "ImageEdited";
jsonObject["ExtraFlags"] = "Interface"; jsonObject["ExtraFlags"] = "Interface";
jsonObject["EditedSize"] = QString::number(smpic->getContentMaxLength()); 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()); jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
} }
@ -462,7 +470,11 @@ void SnapmaticWidget::openMapViewer()
jsonObject["Type"] = "LocationEdited"; jsonObject["Type"] = "LocationEdited";
jsonObject["ExtraFlags"] = "Interface"; jsonObject["ExtraFlags"] = "Interface";
jsonObject["EditedSize"] = QString::number(picture->getContentMaxLength()); 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()); jsonObject["EditedTime"] = QString::number(QDateTime::currentDateTimeUtc().toTime_t());
#endif
jsonDocument.setObject(jsonObject); jsonDocument.setObject(jsonObject);
Telemetry->push(TelemetryCategory::PersonalData, jsonDocument); Telemetry->push(TelemetryCategory::PersonalData, jsonDocument);
} }

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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