1.8 bump, fix res regression from 1.7, other fixes.

This commit is contained in:
Syping 2020-04-24 05:36:11 +02:00
parent 8732b9d64d
commit f63645a1fb
36 changed files with 1327 additions and 1880 deletions

View File

@ -3,8 +3,8 @@
!define APP_NAME "gta5view"
!define COMP_NAME "Syping"
!define WEB_SITE "https://gta5view.syping.de/"
!define VERSION "1.7.1.0"
!define COPYRIGHT "Copyright © 2016-2019 Syping"
!define VERSION "1.8.0.0"
!define COPYRIGHT "Copyright © 2016-2020 Syping"
!define DESCRIPTION "Grand Theft Auto V Savegame and Snapmatic Viewer/Editor"
!define INSTALLER_NAME "gta5view_setup.exe"
!define MAIN_APP_EXE "gta5view.exe"
@ -104,11 +104,10 @@ ${INSTALL_TYPE}
SetOverwrite ifnewer
SetOutPath "$INSTDIR"
File "../build/release/gta5view.exe"
File "/usr/lib/gcc/x86_64-w64-mingw32/8.3-win32/libgcc_s_seh-1.dll"
File "/usr/lib/gcc/x86_64-w64-mingw32/8.3-win32/libstdc++-6.dll"
File "/opt/llvm-mingw/x86_64-w64-mingw32/bin/libc++.dll"
File "/opt/llvm-mingw/x86_64-w64-mingw32/bin/libunwind.dll"
File "/opt/windev/openssl-latest_qt64d/bin/libcrypto-1_1-x64.dll"
File "/opt/windev/openssl-latest_qt64d/bin/libssl-1_1-x64.dll"
File "/opt/windev/libjpeg-turbo-latest_qt64d/bin/libjpeg-62.dll"
File "/opt/windev/qt64d-latest/bin/Qt5Core.dll"
File "/opt/windev/qt64d-latest/bin/Qt5Gui.dll"
File "/opt/windev/qt64d-latest/bin/Qt5Network.dll"
@ -195,11 +194,10 @@ SectionEnd
Section Uninstall
${INSTALL_TYPE}
Delete "$INSTDIR\gta5view.exe"
Delete "$INSTDIR\libgcc_s_seh-1.dll"
Delete "$INSTDIR\libstdc++-6.dll"
Delete "$INSTDIR\libc++.dll"
Delete "$INSTDIR\libunwind.dll"
Delete "$INSTDIR\libcrypto-1_1-x64.dll"
Delete "$INSTDIR\libssl-1_1-x64.dll"
Delete "$INSTDIR\libjpeg-62.dll"
Delete "$INSTDIR\Qt5Core.dll"
Delete "$INSTDIR\Qt5Gui.dll"
Delete "$INSTDIR\Qt5Network.dll"

View File

@ -1,6 +1,6 @@
#!/bin/bash
DOCKER_IMAGE=sypingauto/gta5view-build:1.7-static
DOCKER_IMAGE=sypingauto/gta5view-build:1.8-static
PROJECT_DIR_DOCKER=/gta5view
cd ${PROJECT_DIR} && \
@ -18,4 +18,8 @@ if [ "${PACKAGE_CODE}" == "gta5-mods" ]; then
${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gta5-mods/${PACKAGE_VERSION}
${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gta5-mods/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \
rm -rf ${GTA5VIEW_EXECUTABLE}
elif [ "${PACKAGE_CODE}" == "gtainside" ]; then
${PROJECT_DIR}/.ci/dropbox_uploader.sh mkdir gtainside/${PACKAGE_VERSION}
${PROJECT_DIR}/.ci/dropbox_uploader.sh upload ${PROJECT_DIR}/assets/${GTA5VIEW_EXECUTABLE} gtainside/${PACKAGE_VERSION}/${GTA5VIEW_EXECUTABLE} && \
rm -rf ${GTA5VIEW_EXECUTABLE}
fi

View File

@ -1,6 +1,6 @@
#!/bin/bash
DOCKER_IMAGE=sypingauto/gta5view-build:1.7-shared
DOCKER_IMAGE=sypingauto/gta5view-build:1.8-shared
PROJECT_DIR_DOCKER=/gta5view
cd ${PROJECT_DIR} && \

View File

@ -2,11 +2,11 @@ stages:
- build
variables:
BUILD_TYPE: "REL"
BUILD_TYPE: "RC"
Windows Installer:
stage: build
image: sypingauto/gta5view-build:1.7-shared
image: sypingauto/gta5view-build:1.8-shared
variables:
BUILD_SCRIPT: "wininstall_build.sh"
QT_SELECT: "qt5-x86_64-w64-mingw32"
@ -19,7 +19,7 @@ Windows Installer:
Windows Portable:
stage: build
image: sypingauto/gta5view-build:1.7-static
image: sypingauto/gta5view-build:1.8-static
variables:
BUILD_SCRIPT: "windows_build.sh"
QT_SELECT: "qt5-x86_64-w64-mingw32"

View File

@ -8,7 +8,7 @@ service:
env:
global:
- BUILD_TYPE=REL
- BUILD_TYPE=RC
matrix:
include:

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2017 Syping
* Copyright (C) 2016-2020 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -499,9 +499,9 @@ bool AppEnv::setGameLanguage(GameVersion gameVersion, GameLanguage gameLanguage)
qreal AppEnv::screenRatio()
{
#if QT_VERSION >= 0x050000
qreal dpi = QGuiApplication::primaryScreen()->logicalDotsPerInch();
qreal dpi = QApplication::primaryScreen()->logicalDotsPerInch();
#else
qreal dpi = qApp->desktop()->logicalDpiX();
qreal dpi = QApplication::desktop()->logicalDpiX();
#endif
#ifdef Q_OS_MAC
return (dpi / 72);
@ -513,7 +513,7 @@ qreal AppEnv::screenRatio()
qreal AppEnv::screenRatioPR()
{
#if QT_VERSION >= 0x050600
return QGuiApplication::primaryScreen()->devicePixelRatio();
return QApplication::primaryScreen()->devicePixelRatio();
#else
return 1;
#endif

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2017 Syping
* Copyright (C) 2016-2020 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -22,14 +22,19 @@
#include "ProfileWidget.h"
#include "ExportThread.h"
#include "SavegameData.h"
#include "AppEnv.h"
#include "config.h"
#include <QStringBuilder>
#include <QDesktopWidget>
#include <QApplication>
#include <QFileInfo>
#include <QDebug>
#include <QFile>
#if QT_VERSION >= 0x050000
#include <QScreen>
#else
#include <QDesktopWidget>
#endif
ExportThread::ExportThread(QMap<ProfileWidget*,QString> profileMap, QString exportDirectory, bool pictureCopyEnabled, bool pictureExportEnabled, int exportCount, QObject *parent) : QThread(parent),
profileMap(profileMap), exportDirectory(exportDirectory), pictureCopyEnabled(pictureCopyEnabled), pictureExportEnabled(pictureExportEnabled), exportCount(exportCount)
{
@ -101,8 +106,17 @@ void ExportThread::run()
QImage exportPicture = picture->getImage();
if (sizeMode == "Desktop")
{
QRect desktopResolution = qApp->desktop()->screenGeometry();
exportPicture = exportPicture.scaled(desktopResolution.width(), desktopResolution.height(), aspectRatio, Qt::SmoothTransformation);
#if QT_VERSION >= 0x050000
qreal screenRatioPR = AppEnv::screenRatioPR();
QRect desktopResolution = QApplication::primaryScreen()->geometry();
int desktopSizeWidth = qRound((double)desktopResolution.width() * screenRatioPR);
int desktopSizeHeight = qRound((double)desktopResolution.height() * screenRatioPR);
#else
QRect desktopResolution = QApplication::desktop()->screenGeometry();
int desktopSizeWidth = desktopResolution.width();
int desktopSizeHeight = desktopResolution.height();
#endif
exportPicture = exportPicture.scaled(desktopSizeWidth, desktopSizeHeight, aspectRatio, Qt::SmoothTransformation);
}
else if (sizeMode == "Custom")
{

View File

@ -1,205 +0,0 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2017-2018 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
#include "ImageEditorDialog.h"
#include "ui_ImageEditorDialog.h"
#include "ProfileInterface.h"
#include "SidebarGenerator.h"
#include "StandardPaths.h"
#include "ImportDialog.h"
#include "AppEnv.h"
#include "config.h"
#include <QStringBuilder>
#include <QImageReader>
#include <QFileDialog>
#include <QMessageBox>
ImageEditorDialog::ImageEditorDialog(SnapmaticPicture *picture, QString profileName, QWidget *parent) :
QDialog(parent), smpic(picture), profileName(profileName),
ui(new Ui::ImageEditorDialog)
{
// Set Window Flags
setWindowFlags(windowFlags()^Qt::WindowContextHelpButtonHint);
ui->setupUi(this);
ui->cmdClose->setDefault(true);
ui->cmdClose->setFocus();
// Set Icon for Close Button
if (QIcon::hasThemeIcon("dialog-close"))
{
ui->cmdClose->setIcon(QIcon::fromTheme("dialog-close"));
}
else if (QIcon::hasThemeIcon("gtk-close"))
{
ui->cmdClose->setIcon(QIcon::fromTheme("gtk-close"));
}
// Set Icon for Import Button
if (QIcon::hasThemeIcon("document-import"))
{
ui->cmdReplace->setIcon(QIcon::fromTheme("document-import"));
}
// Set Icon for Overwrite Button
if (QIcon::hasThemeIcon("document-save"))
{
ui->cmdSave->setIcon(QIcon::fromTheme("document-save"));
}
else if (QIcon::hasThemeIcon("gtk-save"))
{
ui->cmdSave->setIcon(QIcon::fromTheme("gtk-save"));
}
// DPI calculation
qreal screenRatio = AppEnv::screenRatio();
snapmaticResolutionLW = 516 * screenRatio; // 430
snapmaticResolutionLH = 288 * screenRatio; // 240
ui->labPicture->setMinimumSize(snapmaticResolutionLW, snapmaticResolutionLH);
imageIsChanged = false;
pictureCache = picture->getImage();
ui->labPicture->setPixmap(QPixmap::fromImage(pictureCache).scaled(snapmaticResolutionLW, snapmaticResolutionLH, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
setMaximumSize(sizeHint());
setMinimumSize(sizeHint());
setFixedSize(sizeHint());
}
ImageEditorDialog::~ImageEditorDialog()
{
delete ui;
}
void ImageEditorDialog::on_cmdClose_clicked()
{
close();
}
void ImageEditorDialog::on_cmdReplace_clicked()
{
QSettings settings(GTA5SYNC_APPVENDOR, GTA5SYNC_APPSTR);
settings.beginGroup("FileDialogs");
bool dontUseNativeDialog = settings.value("DontUseNativeDialog", false).toBool();
settings.beginGroup("ImportReplace");
fileDialogPreOpen: //Work?
QFileDialog fileDialog(this);
fileDialog.setFileMode(QFileDialog::ExistingFile);
fileDialog.setViewMode(QFileDialog::Detail);
fileDialog.setAcceptMode(QFileDialog::AcceptOpen);
fileDialog.setOption(QFileDialog::DontUseNativeDialog, dontUseNativeDialog);
fileDialog.setWindowFlags(fileDialog.windowFlags()^Qt::WindowContextHelpButtonHint);
fileDialog.setWindowTitle(ProfileInterface::tr("Import..."));
fileDialog.setLabelText(QFileDialog::Accept, ProfileInterface::tr("Import"));
// Getting readable Image formats
QString imageFormatsStr = " ";
for (QByteArray imageFormat : QImageReader::supportedImageFormats())
{
imageFormatsStr += QString("*.") % QString::fromUtf8(imageFormat).toLower() % " ";
}
QStringList filters;
filters << ProfileInterface::tr("All image files (%1)").arg(imageFormatsStr.trimmed());
filters << ProfileInterface::tr("All files (**)");
fileDialog.setNameFilters(filters);
QList<QUrl> sidebarUrls = SidebarGenerator::generateSidebarUrls(fileDialog.sidebarUrls());
fileDialog.setSidebarUrls(sidebarUrls);
fileDialog.setDirectory(settings.value(profileName % "+Directory", StandardPaths::documentsLocation()).toString());
fileDialog.restoreGeometry(settings.value(profileName % "+Geometry", "").toByteArray());
if (fileDialog.exec())
{
QStringList selectedFiles = fileDialog.selectedFiles();
if (selectedFiles.length() == 1)
{
QString selectedFile = selectedFiles.at(0);
QString selectedFileName = QFileInfo(selectedFile).fileName();
QFile snapmaticFile(selectedFile);
if (!snapmaticFile.open(QFile::ReadOnly))
{
QMessageBox::warning(this, ProfileInterface::tr("Import"), ProfileInterface::tr("Can't import %1 because file can't be open").arg("\""+selectedFileName+"\""));
goto fileDialogPreOpen;
}
QImage *importImage = new QImage();
QImageReader snapmaticImageReader;
snapmaticImageReader.setDecideFormatFromContent(true);
snapmaticImageReader.setDevice(&snapmaticFile);
if (!snapmaticImageReader.read(importImage))
{
QMessageBox::warning(this, ProfileInterface::tr("Import"), ProfileInterface::tr("Can't import %1 because file can't be parsed properly").arg("\""+selectedFileName+"\""));
delete importImage;
goto fileDialogPreOpen;
}
ImportDialog *importDialog = new ImportDialog(profileName, this);
importDialog->setImage(importImage);
importDialog->setModal(true);
importDialog->show();
importDialog->exec();
if (importDialog->isImportAgreed())
{
pictureCache = importDialog->image();
ui->labPicture->setPixmap(QPixmap::fromImage(pictureCache).scaled(snapmaticResolutionLW, snapmaticResolutionLH, Qt::KeepAspectRatio, Qt::SmoothTransformation));
imageIsChanged = true;
}
delete importDialog;
}
}
settings.setValue(profileName % "+Geometry", fileDialog.saveGeometry());
settings.setValue(profileName % "+Directory", fileDialog.directory().absolutePath());
settings.endGroup();
settings.endGroup();
}
void ImageEditorDialog::on_cmdSave_clicked()
{
if (imageIsChanged)
{
const QByteArray previousPicture = smpic->getPictureStream();
bool success = smpic->setImage(pictureCache);
if (success)
{
QString currentFilePath = smpic->getPictureFilePath();
QString originalFilePath = smpic->getOriginalPictureFilePath();
QString backupFileName = originalFilePath % ".bak";
if (!QFile::exists(backupFileName))
{
QFile::copy(currentFilePath, backupFileName);
}
if (!smpic->exportPicture(currentFilePath))
{
smpic->setPictureStream(previousPicture);
QMessageBox::warning(this, tr("Snapmatic Image Editor"), tr("Patching of Snapmatic Image failed because of I/O Error"));
return;
}
smpic->emitCustomSignal("PictureUpdated");
}
else
{
QMessageBox::warning(this, tr("Snapmatic Image Editor"), tr("Patching of Snapmatic Image failed because of Image Error"));
return;
}
}
close();
}

View File

@ -1,52 +0,0 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2017 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
#ifndef IMAGEEDITORDIALOG_H
#define IMAGEEDITORDIALOG_H
#include "SnapmaticPicture.h"
#include <QDialog>
namespace Ui {
class ImageEditorDialog;
}
class ImageEditorDialog : public QDialog
{
Q_OBJECT
public:
explicit ImageEditorDialog(SnapmaticPicture *picture, QString profileName, QWidget *parent = 0);
~ImageEditorDialog();
private slots:
void on_cmdClose_clicked();
void on_cmdReplace_clicked();
void on_cmdSave_clicked();
private:
SnapmaticPicture *smpic;
QString profileName;
Ui::ImageEditorDialog *ui;
int snapmaticResolutionLW;
int snapmaticResolutionLH;
bool imageIsChanged;
QImage pictureCache;
};
#endif // IMAGEEDITORDIALOG_H

View File

@ -1,108 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ImageEditorDialog</class>
<widget class="QDialog" name="ImageEditorDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>516</width>
<height>337</height>
</rect>
</property>
<property name="windowTitle">
<string>Overwrite Image...</string>
</property>
<layout class="QVBoxLayout" name="vlInterface">
<property name="leftMargin">
<number>0</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>0</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QLabel" name="labPicture">
<property name="minimumSize">
<size>
<width>516</width>
<height>288</height>
</size>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
<item>
<widget class="QFrame" name="buttomFrame">
<property name="frameShape">
<enum>QFrame::NoFrame</enum>
</property>
<property name="frameShadow">
<enum>QFrame::Plain</enum>
</property>
<property name="lineWidth">
<number>0</number>
</property>
<layout class="QVBoxLayout" name="vlButtons">
<item>
<layout class="QHBoxLayout" name="hlButtons">
<item>
<widget class="QPushButton" name="cmdReplace">
<property name="toolTip">
<string>Import picture</string>
</property>
<property name="text">
<string>&amp;Import...</string>
</property>
</widget>
</item>
<item>
<spacer name="hsButtons">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="cmdSave">
<property name="toolTip">
<string>Apply changes</string>
</property>
<property name="text">
<string>&amp;Overwrite</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="cmdClose">
<property name="toolTip">
<string>Discard changes</string>
</property>
<property name="text">
<string>&amp;Close</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2017-2019 Syping
* Copyright (C) 2017-2020 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -374,7 +374,7 @@ void ImportDialog::cropPicture()
#endif
imageCropper.setBackgroundColor(Qt::black);
imageCropper.setCroppingRectBorderColor(QColor(255, 255, 255, 127));
imageCropper.setImage(QPixmap::fromImage(workImage, Qt::AutoColor));
imageCropper.setImage(QPixmap::fromImage(origImage, Qt::AutoColor));
imageCropper.setProportion(QSize(1, 1));
imageCropper.setFixedSize(workImage.size());
cropLayout.addWidget(&imageCropper);
@ -575,6 +575,7 @@ QImage ImportDialog::image()
void ImportDialog::setImage(QImage *image_)
{
origImage = *image_;
workImage = QImage();
if (image_->width() == image_->height())
{

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2017 Syping
* Copyright (C) 2017-2020 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -67,6 +67,7 @@ private:
QString imageTitle;
QImage backImage;
QImage workImage;
QImage origImage;
QImage newImage;
QColor selectedColour;
QMenu *optionsMenu;

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2018 Syping
* Copyright (C) 2016-2020 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -24,7 +24,6 @@
#include "AppEnv.h"
#include "config.h"
#include <QStringBuilder>
#include <QDesktopWidget>
#include <QJsonDocument>
#include <QStyleFactory>
#include <QApplication>
@ -40,6 +39,12 @@
#include <QList>
#include <QDir>
#if QT_VERSION >= 0x050000
#include <QScreen>
#else
#include <QDesktopWidget>
#endif
#ifdef GTA5SYNC_TELEMETRY
#include "TelemetryClass.h"
#endif
@ -58,9 +63,16 @@ OptionsDialog::OptionsDialog(ProfileDatabase *profileDB, QWidget *parent) :
ui->cmdCancel->setDefault(true);
ui->cmdCancel->setFocus();
#if QT_VERSION >= 0x050000
qreal screenRatioPR = AppEnv::screenRatioPR();
QRect desktopResolution = QApplication::primaryScreen()->geometry();
int desktopSizeWidth = qRound((double)desktopResolution.width() * screenRatioPR);
int desktopSizeHeight = qRound((double)desktopResolution.height() * screenRatioPR);
#else
QRect desktopResolution = QApplication::desktop()->screenGeometry(this);
int desktopSizeWidth = desktopResolution.width();
int desktopSizeHeight = desktopResolution.height();
#endif
aspectRatio = Qt::KeepAspectRatio;
defExportSize = QSize(960, 536);
cusExportSize = defExportSize;

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2018 Syping
* Copyright (C) 2016-2020 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -22,7 +22,6 @@
#include "ui_PictureDialog.h"
#include "SidebarGenerator.h"
#include "MapLocationDialog.h"
#include "ImageEditorDialog.h"
#include "JsonEditorDialog.h"
#include "SnapmaticEditor.h"
#include "StandardPaths.h"

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2017 Syping
* Copyright (C) 2016-2020 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -17,6 +17,7 @@
*****************************************************************************/
#include "config.h"
#include "AppEnv.h"
#include "PictureExport.h"
#include "PictureDialog.h"
#include "StandardPaths.h"
@ -32,6 +33,9 @@
#if QT_VERSION >= 0x050000
#include <QSaveFile>
#include <QScreen>
#else
#include <QDesktopWidget>
#endif
PictureExport::PictureExport()
@ -157,8 +161,17 @@ fileDialogPreSave: //Work?
QImage exportPicture = picture->getImage();
if (sizeMode == "Desktop")
{
#if QT_VERSION >= 0x050000
qreal screenRatioPR = AppEnv::screenRatioPR();
QRect desktopResolution = QApplication::primaryScreen()->geometry();
int desktopSizeWidth = qRound((double)desktopResolution.width() * screenRatioPR);
int desktopSizeHeight = qRound((double)desktopResolution.height() * screenRatioPR);
#else
QRect desktopResolution = QApplication::desktop()->screenGeometry();
exportPicture = exportPicture.scaled(desktopResolution.width(), desktopResolution.height(), aspectRatio, Qt::SmoothTransformation);
int desktopSizeWidth = desktopResolution.width();
int desktopSizeHeight = desktopResolution.height();
#endif
exportPicture = exportPicture.scaled(desktopSizeWidth, desktopSizeHeight, aspectRatio, Qt::SmoothTransformation);
}
else if (sizeMode == "Custom")
{

View File

@ -15,8 +15,8 @@ Grand Theft Auto V Savegame and Snapmatic viewer/editor
# Note: Install Docker Community Edition and Git before continuing
git clone https://gitlab.com/Syping/gta5view && cd gta5view
docker pull syping/qt5-static-mingw
docker run --rm -v ${PWD}:/gta5view -it syping/qt5-static-mingw
docker pull sypingauto/gta5view-build:1.8-static
docker run --rm -v ${PWD}:/gta5view -it sypingauto/gta5view-build:1.8-static
cd /gta5view && mkdir -p build && cd build
qmake-static ../gta5view.pro
make depend
@ -24,7 +24,7 @@ Grand Theft Auto V Savegame and Snapmatic viewer/editor
#### Build gta5view for Debian/Ubuntu
sudo apt-get install git gcc g++ qtbase5-dev qttranslations5-l10n qt5-qmake make
sudo apt-get install git gcc g++ libqt5svg5-dev qtbase5-dev qttranslations5-l10n qt5-qmake make
git clone https://gitlab.com/Syping/gta5view && cd gta5view
mkdir -p build && cd build
../configure --prefix=/opt/gta5view
@ -34,7 +34,7 @@ Grand Theft Auto V Savegame and Snapmatic viewer/editor
#### Build gta5view for Fedora
sudo dnf install git gcc gcc-c++ qt5-qtbase-devel qt5-qttranslations make
sudo dnf install git gcc gcc-c++ qt5-qtbase-devel qt5-qtsvg-devel qt5-qttranslations make
git clone https://gitlab.com/Syping/gta5view && cd gta5view
mkdir -p build && cd build
../configure --prefix=/opt/gta5view

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2019 Syping
* Copyright (C) 2016-2020 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -18,7 +18,6 @@
#include "SnapmaticWidget.h"
#include "ui_SnapmaticWidget.h"
#include "ImageEditorDialog.h"
#include "MapLocationDialog.h"
#include "JsonEditorDialog.h"
#include "SnapmaticPicture.h"

View File

@ -1,6 +1,7 @@
/*****************************************************************************
* ImageCropper Qt Widget for cropping images
* Copyright (C) 2013 Dimka Novikov, to@dimkanovikov.pro
* Copyright (C) 2020 Syping
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@ -17,6 +18,7 @@
*****************************************************************************/
#include "imagecropper.h"
#include "AppEnv.h"
#include <QMouseEvent>
#include <QPainter>
@ -112,16 +114,16 @@ const QPixmap ImageCropper::cropImage()
// Получим размер отображаемого изображения
QSize scaledImageSize =
pimpl->imageForCropping.scaled(
this->size(), Qt::KeepAspectRatio, Qt::FastTransformation
size(), Qt::KeepAspectRatio, Qt::SmoothTransformation
).size();
// Определим расстояние от левого и верхнего краёв
float leftDelta = 0;
float topDelta = 0;
const float HALF_COUNT = 2;
if (this->size().height() == scaledImageSize.height()) {
leftDelta = (this->width() - scaledImageSize.width()) / HALF_COUNT;
if (size().height() == scaledImageSize.height()) {
leftDelta = (width() - scaledImageSize.width()) / HALF_COUNT;
} else {
topDelta = (this->height() - scaledImageSize.height()) / HALF_COUNT;
topDelta = (height() - scaledImageSize.height()) / HALF_COUNT;
}
// Определим пропорцию области обрезки по отношению к исходному изображению
float xScale = (float)pimpl->imageForCropping.width() / scaledImageSize.width();
@ -145,39 +147,54 @@ const QPixmap ImageCropper::cropImage()
void ImageCropper::paintEvent(QPaintEvent* _event)
{
QWidget::paintEvent( _event );
QWidget::paintEvent(_event);
//
QPainter widgetPainter(this);
// Рисуем изображение по центру виджета
{
#if QT_VERSION >= 0x050600
qreal screenRatioPR = AppEnv::screenRatioPR();
// ... подгоним изображение для отображения по размеру виджета
QPixmap scaledImage =
pimpl->imageForCropping.scaled(this->size(), Qt::KeepAspectRatio, Qt::FastTransformation);
pimpl->imageForCropping.scaled(qRound((double)width() * screenRatioPR), qRound((double)height() * screenRatioPR), Qt::KeepAspectRatio, Qt::SmoothTransformation);
scaledImage.setDevicePixelRatio(screenRatioPR);
#else
QPixmap scaledImage =
pimpl->imageForCropping.scaled(size(), Qt::KeepAspectRatio, Qt::SmoothTransformation);
#endif
// ... заливаем фон
widgetPainter.fillRect( this->rect(), pimpl->backgroundColor );
widgetPainter.fillRect(rect(), pimpl->backgroundColor);
// ... рисуем изображение по центру виджета
if ( this->size().height() == scaledImage.height() ) {
widgetPainter.drawPixmap( ( this->width() - scaledImage.width() ) / 2, 0, scaledImage );
#if QT_VERSION >= 0x050600
if (qRound((double)height() * screenRatioPR) == scaledImage.height()) {
widgetPainter.drawPixmap( ( qRound((double)width() * screenRatioPR) - scaledImage.width() ) / 2, 0, scaledImage );
} else {
widgetPainter.drawPixmap( 0, ( this->height() - scaledImage.height() ) / 2, scaledImage );
widgetPainter.drawPixmap( 0, ( qRound((double)height() * screenRatioPR) - scaledImage.height() ) / 2, scaledImage );
}
#else
if (height() == scaledImage.height()) {
widgetPainter.drawPixmap( ( width()- scaledImage.width() ) / 2, 0, scaledImage );
} else {
widgetPainter.drawPixmap( 0, ( height() - scaledImage.height() ) / 2, scaledImage );
}
#endif
}
// Рисуем область обрезки
{
// ... если это первое отображение после инициилизации, то центруем областо обрезки
if (pimpl->croppingRect.isNull()) {
const int width = WIDGET_MINIMUM_SIZE.width()/2;
const int height = WIDGET_MINIMUM_SIZE.height()/2;
pimpl->croppingRect.setSize(QSize(width, height));
float x = (this->width() - pimpl->croppingRect.width())/2;
float y = (this->height() - pimpl->croppingRect.height())/2;
const int cwidth = WIDGET_MINIMUM_SIZE.width()/2;
const int cheight = WIDGET_MINIMUM_SIZE.height()/2;
pimpl->croppingRect.setSize(QSize(cwidth, cheight));
float x = (width() - pimpl->croppingRect.width())/2;
float y = (height() - pimpl->croppingRect.height())/2;
pimpl->croppingRect.moveTo(x, y);
}
// ... рисуем затемненную область
QPainterPath p;
p.addRect(pimpl->croppingRect);
p.addRect(this->rect());
p.addRect(rect());
widgetPainter.setBrush(QBrush(QColor(0,0,0,120)));
widgetPainter.setPen(Qt::transparent);
widgetPainter.drawPath(p);

View File

@ -1,6 +1,6 @@
/*****************************************************************************
* gta5view Grand Theft Auto V Profile Viewer
* Copyright (C) 2016-2018 Syping
* Copyright (C) 2016-2020 Syping
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -40,11 +40,11 @@
#endif
#ifndef GTA5SYNC_COPYRIGHT
#define GTA5SYNC_COPYRIGHT "2016-2019"
#define GTA5SYNC_COPYRIGHT "2016-2020"
#endif
#ifndef GTA5SYNC_APPVER
#define GTA5SYNC_APPVER "1.7.1"
#define GTA5SYNC_APPVER "1.8.0"
#endif
#if __cplusplus

View File

@ -1,6 +1,6 @@
#/*****************************************************************************
#* gta5view Grand Theft Auto V Profile Viewer
#* Copyright (C) 2015-2019 Syping
#* Copyright (C) 2015-2020 Syping
#*
#* This program is free software: you can redistribute it and/or modify
#* it under the terms of the GNU General Public License as published by
@ -37,7 +37,6 @@ SOURCES += main.cpp \
ExportThread.cpp \
GlobalString.cpp \
IconLoader.cpp \
ImageEditorDialog.cpp \
ImportDialog.cpp \
JsonEditorDialog.cpp \
MapLocationDialog.cpp \
@ -79,7 +78,6 @@ HEADERS += \
ExportThread.h \
GlobalString.h \
IconLoader.h \
ImageEditorDialog.h \
ImportDialog.h \
JsonEditorDialog.h \
MapLocationDialog.h \
@ -117,7 +115,6 @@ HEADERS += \
FORMS += \
AboutDialog.ui \
ExportDialog.ui \
ImageEditorDialog.ui \
ImportDialog.ui \
JsonEditorDialog.ui \
MapLocationDialog.ui \

View File

@ -7,8 +7,8 @@ CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "gta5view.exe.manifest"
#include <windows.h>
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1, 7, 1, 0
PRODUCTVERSION 1, 7, 1, 0
FILEVERSION 1, 8, 0, 0
PRODUCTVERSION 1, 8, 0, 0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS_NT_WINDOWS32
@ -25,12 +25,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Syping"
VALUE "FileDescription", "gta5view"
VALUE "FileVersion", "1.7.1"
VALUE "FileVersion", "1.8.0"
VALUE "InternalName", "gta5view"
VALUE "LegalCopyright", "Copyright © 2016-2019 Syping"
VALUE "LegalCopyright", "Copyright © 2016-2020 Syping"
VALUE "OriginalFilename", "gta5view.exe"
VALUE "ProductName", "gta5view"
VALUE "ProductVersion", "1.7.1"
VALUE "ProductVersion", "1.8.0"
END
END
END

View File

@ -166,66 +166,47 @@ Pictures and Savegames</source>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../ImageEditorDialog.ui" line="14"/>
<location filename="../ImportDialog.cpp" line="639"/>
<location filename="../ImportDialog.cpp" line="640"/>
<source>Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="59"/>
<source>Import picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="62"/>
<source>&amp;Import...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="82"/>
<location filename="../ImportDialog.cpp" line="641"/>
<location filename="../ImportDialog.cpp" line="642"/>
<source>Apply changes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="85"/>
<location filename="../ImportDialog.cpp" line="640"/>
<location filename="../ImportDialog.cpp" line="641"/>
<source>&amp;Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="92"/>
<location filename="../ImportDialog.cpp" line="643"/>
<location filename="../ImportDialog.cpp" line="644"/>
<source>Discard changes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="95"/>
<location filename="../ImportDialog.cpp" line="642"/>
<location filename="../ImportDialog.cpp" line="643"/>
<source>&amp;Close</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation type="unfinished"></translation>
</message>
@ -267,7 +248,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="150"/>
<location filename="../ImportDialog.cpp" line="87"/>
<location filename="../ImportDialog.cpp" line="315"/>
<location filename="../ImportDialog.cpp" line="727"/>
<location filename="../ImportDialog.cpp" line="728"/>
<source>Background Colour: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</source>
<translation type="unfinished"></translation>
</message>
@ -286,7 +267,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="203"/>
<location filename="../ImportDialog.cpp" line="88"/>
<location filename="../ImportDialog.cpp" line="323"/>
<location filename="../ImportDialog.cpp" line="807"/>
<location filename="../ImportDialog.cpp" line="808"/>
<source>Background Image:</source>
<translation type="unfinished"></translation>
</message>
@ -446,24 +427,24 @@ Pictures and Savegames</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Snapmatic Avatar Zone</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Are you sure to use a square image outside of the Avatar Zone?
When you want to use it as Avatar the image will be detached!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="723"/>
<location filename="../ImportDialog.cpp" line="724"/>
<source>Select Colour...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="318"/>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>Background Image: %1</source>
<translation type="unfinished"></translation>
</message>
@ -474,7 +455,7 @@ When you want to use it as Avatar the image will be detached!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>File</source>
<comment>Background Image: File</comment>
<translation type="unfinished"></translation>
@ -724,26 +705,26 @@ Y: %2</source>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="616"/>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="645"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<location filename="../OptionsDialog.cpp" line="665"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Language: %1</source>
<translation type="unfinished"></translation>
</message>
@ -764,7 +745,7 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="574"/>
<location filename="../OptionsDialog.cpp" line="586"/>
<source>Participate in %1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
@ -800,8 +781,8 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="590"/>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Participation ID: %1</source>
<translation type="unfinished"></translation>
</message>
@ -823,8 +804,8 @@ Y: %2</source>
<message>
<location filename="../OptionsDialog.ui" line="611"/>
<location filename="../OptionsDialog.ui" line="633"/>
<location filename="../OptionsDialog.cpp" line="202"/>
<location filename="../OptionsDialog.cpp" line="251"/>
<location filename="../OptionsDialog.cpp" line="214"/>
<location filename="../OptionsDialog.cpp" line="263"/>
<source>Current: %1</source>
<translation type="unfinished"></translation>
</message>
@ -881,95 +862,95 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>System</source>
<comment>System in context of System default</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<source>%1 (Game language)</source>
<comment>Next closest language compared to the Game settings</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>%1 (Closest to Interface)</source>
<comment>Next closest language compared to the Interface</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>Auto</source>
<comment>Automatic language choice.</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>%1 (Language priority)</source>
<comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>%1</source>
<comment>%1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="472"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="480"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<location filename="../OptionsDialog.cpp" line="486"/>
<location filename="../OptionsDialog.cpp" line="492"/>
<location filename="../OptionsDialog.cpp" line="496"/>
<location filename="../OptionsDialog.cpp" line="498"/>
<source>Profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="575"/>
<location filename="../OptionsDialog.cpp" line="587"/>
<source>View %1 User Statistics Online</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Not registered</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Yes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<source>No</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<source>OS defined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Steam defined</source>
<translation type="unfinished"></translation>
</message>
@ -1010,184 +991,184 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../PictureDialog.cpp" line="164"/>
<location filename="../ProfileInterface.cpp" line="1609"/>
<source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="166"/>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../ProfileInterface.cpp" line="1610"/>
<source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../PictureDialog.cpp" line="167"/>
<location filename="../ProfileInterface.cpp" line="1603"/>
<source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="169"/>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../ProfileInterface.cpp" line="1604"/>
<source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="171"/>
<location filename="../PictureDialog.cpp" line="170"/>
<location filename="../ProfileInterface.cpp" line="1606"/>
<source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1607"/>
<source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="575"/>
<location filename="../PictureDialog.cpp" line="574"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Snapmatic Picture Viewer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Failed at %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="798"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="797"/>
<location filename="../SnapmaticEditor.cpp" line="247"/>
<source>No Players</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="774"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="773"/>
<source>No Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="660"/>
<source>Unknown Location</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="732"/>
<location filename="../PictureDialog.cpp" line="731"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="99"/>
<source>Export as Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="96"/>
<location filename="../PictureExport.cpp" line="249"/>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="262"/>
<source>Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="99"/>
<location filename="../PictureExport.cpp" line="103"/>
<source>JPEG Graphics (*.jpg *.jpeg)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="104"/>
<source>Portable Network Graphics (*.png)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="215"/>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="221"/>
<location filename="../PictureExport.cpp" line="224"/>
<location filename="../PictureExport.cpp" line="231"/>
<source>Export as Picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="298"/>
<source>Overwrite %1 with current Snapmatic picture?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="215"/>
<source>Failed to export the picture because the system occurred a write failure</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="218"/>
<source>Failed to export the picture because the format detection failures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="221"/>
<source>Failed to export the picture because the file can&apos;t be written</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="224"/>
<source>Failed to export the picture because of an unknown reason</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="231"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>No valid file is selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="248"/>
<location filename="../PictureExport.cpp" line="261"/>
<source>Export as Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="252"/>
<location filename="../PictureExport.cpp" line="265"/>
<source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="253"/>
<location filename="../PictureExport.cpp" line="266"/>
<source>GTA V Raw Export (*.auto)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="254"/>
<location filename="../PictureExport.cpp" line="267"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="298"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<location filename="../PictureExport.cpp" line="323"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>Export as Snapmatic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<source>Failed to export current Snapmatic picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="323"/>
<source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
<translation type="unfinished"></translation>
</message>
@ -1284,16 +1265,15 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ExportThread.cpp" line="97"/>
<location filename="../ExportThread.cpp" line="136"/>
<location filename="../ExportThread.cpp" line="157"/>
<location filename="../ExportThread.cpp" line="102"/>
<location filename="../ExportThread.cpp" line="150"/>
<location filename="../ExportThread.cpp" line="171"/>
<source>Export file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="109"/>
<location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="746"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="487"/>
<location filename="../ProfileInterface.cpp" line="488"/>
<location filename="../ProfileInterface.cpp" line="532"/>
@ -1315,47 +1295,40 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="427"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ImportDialog.cpp" line="788"/>
<source>Import</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="120"/>
<location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="757"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="507"/>
<source>All image files (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../UserInterface.cpp" line="463"/>
<source>All files (**)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="769"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="779"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation>
@ -1865,9 +1838,9 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="182"/>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../JsonEditorDialog.cpp" line="217"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source>
<translation type="unfinished"></translation>
</message>
@ -1958,9 +1931,9 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
@ -2152,8 +2125,8 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Delete picture</source>
<translation type="unfinished"></translation>
</message>
@ -2213,22 +2186,22 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
@ -2390,7 +2363,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="720"/>
<location filename="../OptionsDialog.cpp" line="732"/>
<location filename="../UserInterface.cpp" line="188"/>
<location filename="../UserInterface.cpp" line="608"/>
<source>Select GTA V Folder...</source>
@ -2429,14 +2402,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ProfileInterface.cpp" line="1524"/>
<location filename="../ProfileInterface.cpp" line="1538"/>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1558"/>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source>
<translation type="unfinished"></translation>
</message>

Binary file not shown.

View File

@ -176,66 +176,47 @@ Snapmatic Bilder und Spielständen</translation>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source>
<translation>Snapmatic Bild Editor</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="14"/>
<location filename="../ImportDialog.cpp" line="639"/>
<location filename="../ImportDialog.cpp" line="640"/>
<source>Overwrite Image...</source>
<translation>Bild überschreiben...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="59"/>
<source>Import picture</source>
<translation>Bild importieren</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="62"/>
<source>&amp;Import...</source>
<translation>&amp;Importieren...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="82"/>
<location filename="../ImportDialog.cpp" line="641"/>
<location filename="../ImportDialog.cpp" line="642"/>
<source>Apply changes</source>
<translation>Änderungen übernehmen</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="85"/>
<location filename="../ImportDialog.cpp" line="640"/>
<location filename="../ImportDialog.cpp" line="641"/>
<source>&amp;Overwrite</source>
<translation>&amp;Überschreiben</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="92"/>
<location filename="../ImportDialog.cpp" line="643"/>
<location filename="../ImportDialog.cpp" line="644"/>
<source>Discard changes</source>
<translation>Änderungen verwerfen</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="95"/>
<location filename="../ImportDialog.cpp" line="642"/>
<location filename="../ImportDialog.cpp" line="643"/>
<source>&amp;Close</source>
<translation>S&amp;chließen</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen I/O Fehler</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Patchen von Snapmatic Bild fehlgeschlagen wegen Bild Fehler</translation>
</message>
@ -277,7 +258,7 @@ Snapmatic Bilder und Spielständen</translation>
<location filename="../ImportDialog.ui" line="150"/>
<location filename="../ImportDialog.cpp" line="87"/>
<location filename="../ImportDialog.cpp" line="315"/>
<location filename="../ImportDialog.cpp" line="727"/>
<location filename="../ImportDialog.cpp" line="728"/>
<source>Background Colour: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</source>
<translation>Hintergrundfarbe: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</translation>
</message>
@ -304,7 +285,7 @@ Snapmatic Bilder und Spielständen</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="318"/>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>Background Image: %1</source>
<translation>Hintergrundbild: %1</translation>
</message>
@ -352,7 +333,7 @@ Snapmatic Bilder und Spielständen</translation>
<location filename="../ImportDialog.ui" line="203"/>
<location filename="../ImportDialog.cpp" line="88"/>
<location filename="../ImportDialog.cpp" line="323"/>
<location filename="../ImportDialog.cpp" line="807"/>
<location filename="../ImportDialog.cpp" line="808"/>
<source>Background Image:</source>
<translation>Hintergrundbild:</translation>
</message>
@ -468,24 +449,24 @@ Snapmatic Bilder und Spielständen</translation>
<translation>Einstellungen speichern...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Are you sure to use a square image outside of the Avatar Zone?
When you want to use it as Avatar the image will be detached!</source>
<translation>Bist du sicher ein Quadrat Bild außerhalb der Avatar Zone zu verwenden?
Wenn du es als Avatar verwenden möchtest wird es abgetrennt!</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Snapmatic Avatar Zone</source>
<translation>Snapmatic Avatar Zone</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="723"/>
<location filename="../ImportDialog.cpp" line="724"/>
<source>Select Colour...</source>
<translation>Farbe auswählen...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>File</source>
<comment>Background Image: File</comment>
<translation>Datei</translation>
@ -736,26 +717,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Found: %1</source>
<translation>Gefunden: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="616"/>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="645"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<location filename="../OptionsDialog.cpp" line="665"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Language: %1</source>
<translation>Sprache: %1</translation>
</message>
@ -776,7 +757,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="574"/>
<location filename="../OptionsDialog.cpp" line="586"/>
<source>Participate in %1 User Statistics</source>
<translation>An %1 Benutzerstatistik teilnehmen</translation>
</message>
@ -807,8 +788,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="590"/>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Participation ID: %1</source>
<translation>Teilnahme ID: %1</translation>
</message>
@ -865,8 +846,8 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="611"/>
<location filename="../OptionsDialog.ui" line="633"/>
<location filename="../OptionsDialog.cpp" line="202"/>
<location filename="../OptionsDialog.cpp" line="251"/>
<location filename="../OptionsDialog.cpp" line="214"/>
<location filename="../OptionsDialog.cpp" line="263"/>
<source>Current: %1</source>
<translation>Aktuell: %1</translation>
</message>
@ -893,95 +874,95 @@ Y: %2</translation>
<translation>Abbre&amp;chen</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>System</source>
<comment>System in context of System default</comment>
<translation>System</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<source>%1 (Game language)</source>
<comment>Next closest language compared to the Game settings</comment>
<translation>%1 (Spielsprache)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>%1 (Closest to Interface)</source>
<comment>Next closest language compared to the Interface</comment>
<translation>%1 (Näheste zur Oberfläche)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>Auto</source>
<comment>Automatic language choice.</comment>
<translation>Automatisch</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>%1 (Language priority)</source>
<comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
<translation>%1 (Sprachenpriorität)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>Der eigene Ordner wird initialisiert sobald du %1 neugestartet hast.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="575"/>
<location filename="../OptionsDialog.cpp" line="587"/>
<source>View %1 User Statistics Online</source>
<translation>%1 Benutzerstatistik Online ansehen</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Not registered</source>
<translation>Nicht registriert</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Yes</source>
<translation>Ja</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<source>No</source>
<translation>Nein</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<source>OS defined</source>
<translation>OS-defined</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Steam defined</source>
<translation>Steam-definiert</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="472"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation>Kein Profil</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="480"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<location filename="../OptionsDialog.cpp" line="486"/>
<location filename="../OptionsDialog.cpp" line="492"/>
<location filename="../OptionsDialog.cpp" line="496"/>
<location filename="../OptionsDialog.cpp" line="498"/>
<source>Profile: %1</source>
<translation>Profil: %1</translation>
</message>
@ -1025,43 +1006,43 @@ Y: %2</translation>
<translation>S&amp;chließen</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="96"/>
<location filename="../PictureExport.cpp" line="249"/>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="262"/>
<source>Export</source>
<translation>Exportieren</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../PictureDialog.cpp" line="164"/>
<location filename="../ProfileInterface.cpp" line="1609"/>
<source>Export as &amp;Picture...</source>
<translation>Als &amp;Bild exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="166"/>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../ProfileInterface.cpp" line="1610"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Als &amp;Snapmatic exportieren...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../PictureDialog.cpp" line="167"/>
<location filename="../ProfileInterface.cpp" line="1603"/>
<source>&amp;Edit Properties...</source>
<translation>Eigenschaften bearb&amp;eiten...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="169"/>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../ProfileInterface.cpp" line="1604"/>
<source>&amp;Overwrite Image...</source>
<translation>Bild &amp;überschreiben...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="171"/>
<location filename="../PictureDialog.cpp" line="170"/>
<location filename="../ProfileInterface.cpp" line="1606"/>
<source>Open &amp;Map Viewer...</source>
<translation>&amp;Kartenansicht öffnen...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="575"/>
<location filename="../PictureDialog.cpp" line="574"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1070,141 +1051,141 @@ Taste 2 - Overlay umschalten
Pfeiltasten - Navigieren</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Snapmatic Picture Viewer</source>
<translation>Snapmatic Bildansicht</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Failed at %1</source>
<translation>Fehlgeschlagen beim %1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="774"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="773"/>
<source>No Crew</source>
<translation>Keine Crew</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="798"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="797"/>
<location filename="../SnapmaticEditor.cpp" line="247"/>
<source>No Players</source>
<translation>Keine Spieler</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="732"/>
<location filename="../PictureDialog.cpp" line="731"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>Avatar Vorschaumodus
Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="660"/>
<source>Unknown Location</source>
<translation>Unbekannter Standort</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="104"/>
<source>Portable Network Graphics (*.png)</source>
<translation>Portable Network Graphics (*.png)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="298"/>
<source>Overwrite %1 with current Snapmatic picture?</source>
<translation>Überschreibe %1 mit aktuellen Snapmatic Bild?</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="99"/>
<source>Export as Picture...</source>
<translation>Als Bild exportieren...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="99"/>
<location filename="../PictureExport.cpp" line="103"/>
<source>JPEG Graphics (*.jpg *.jpeg)</source>
<translation>JPEG Graphics (*.jpg *.jpeg)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="215"/>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="221"/>
<location filename="../PictureExport.cpp" line="224"/>
<location filename="../PictureExport.cpp" line="231"/>
<source>Export as Picture</source>
<translation>Als Bild exportieren</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="215"/>
<source>Failed to export the picture because the system occurred a write failure</source>
<translation>Fehlgeschlagen beim Exportieren weil das System ein Schreibfehler ausgelöst hat</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="218"/>
<source>Failed to export the picture because the format detection failures</source>
<translation>Fehlgeschlagen beim Exportieren weil die Formaterkennung fehlschlägt</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="221"/>
<source>Failed to export the picture because the file can&apos;t be written</source>
<translation>Fehlgeschlagen beim Exportieren weil die Datei nicht beschrieben werden kann</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="224"/>
<source>Failed to export the picture because of an unknown reason</source>
<translation>Fehlgeschlagen beim Exportieren wegen einen unbekannten Grund</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<source>Failed to export current Snapmatic picture</source>
<translation>Fehlgeschlagen beim Exportieren vom aktuellen Snapmatic Bild</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="248"/>
<location filename="../PictureExport.cpp" line="261"/>
<source>Export as Snapmatic...</source>
<translation>Als Snapmatic exportieren...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="298"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<location filename="../PictureExport.cpp" line="323"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>Export as Snapmatic</source>
<translation>Als Snapmatic exportieren</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="323"/>
<source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
<translation>Snapmatic wurde wegen Benutzung der .auto Erweiterung zu &quot;%1&quot; exportiert.</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="252"/>
<location filename="../PictureExport.cpp" line="265"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="253"/>
<location filename="../PictureExport.cpp" line="266"/>
<source>GTA V Raw Export (*.auto)</source>
<translation>GTA V Roher Export (*.auto)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="254"/>
<location filename="../PictureExport.cpp" line="267"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic Bilder (PGTA*)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="231"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>No valid file is selected</source>
<translation>Keine gültige Datei wurde ausgewählt</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1607"/>
<source>Open &amp;JSON Editor...</source>
<translation>&amp;JSON Editor öffnen...</translation>
@ -1318,9 +1299,8 @@ Drücke 1 für Standardmodus</translation>
<translation>&lt;h4&gt;Folgende Snapmatic Bilder wurden repariert&lt;/h4&gt;%1</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="109"/>
<location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="746"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="487"/>
<location filename="../ProfileInterface.cpp" line="488"/>
<location filename="../ProfileInterface.cpp" line="532"/>
@ -1342,15 +1322,12 @@ Drücke 1 für Standardmodus</translation>
<translation>Importieren...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="427"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ImportDialog.cpp" line="788"/>
<source>Import</source>
<translation>Importieren</translation>
</message>
@ -1372,17 +1349,15 @@ Drücke 1 für Standardmodus</translation>
<translation>Importfähige Dateien (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="120"/>
<location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="757"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="507"/>
<source>All image files (%1)</source>
<translation>Alle Bilddateien (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../UserInterface.cpp" line="463"/>
<source>All files (**)</source>
@ -1416,17 +1391,15 @@ Drücke 1 für Standardmodus</translation>
<translation>Fehler beim Lesen von Spielstanddatei</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="769"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Kann %1 nicht importieren weil die Datei nicht geöffnet werden kann</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="779"/>
<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>
@ -1651,9 +1624,9 @@ Drücke 1 für Standardmodus</translation>
<translation>Exportieren fehlgeschlagen bei...\n%1</translation>
</message>
<message>
<location filename="../ExportThread.cpp" line="97"/>
<location filename="../ExportThread.cpp" line="136"/>
<location filename="../ExportThread.cpp" line="157"/>
<location filename="../ExportThread.cpp" line="102"/>
<location filename="../ExportThread.cpp" line="150"/>
<location filename="../ExportThread.cpp" line="171"/>
<source>Export file %1 of %2 files</source>
<translation>Exportiere Datei %1 von %2 Dateien</translation>
</message>
@ -1890,9 +1863,9 @@ Drücke 1 für Standardmodus</translation>
<location filename="../JsonEditorDialog.cpp" line="182"/>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../JsonEditorDialog.cpp" line="217"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source>
<translation>Snapmatic Eigenschaften</translation>
</message>
@ -2041,9 +2014,9 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>Patchen von Snapmatic Eigenschaften fehlgeschlagen wegen I/O Fehler</translation>
</message>
@ -2167,23 +2140,23 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Delete picture</source>
<translation>Bild löschen</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
<translation>Bist du sicher %1 von deine Snapmatic Bilder zu löschen?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation>Fehlgeschlagen beim Ausblenden von %1 im Spiel von deinen Snapmatic Bildern</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation>Fehlgeschlagen beim Anzeigen von %1 im Spiel von deinen Snapmatic Bildern</translation>
</message>
@ -2253,7 +2226,7 @@ Drücke 1 für Standardmodus</translation>
<translation>Bild exportieren</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation>Fehlgeschlagen beim Löschen von %1 von deinen Snapmatic Bildern</translation>
</message>
@ -2434,7 +2407,7 @@ Drücke 1 für Standardmodus</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="720"/>
<location filename="../OptionsDialog.cpp" line="732"/>
<location filename="../UserInterface.cpp" line="188"/>
<location filename="../UserInterface.cpp" line="608"/>
<source>Select GTA V Folder...</source>
@ -2479,14 +2452,14 @@ Drücke 1 für Standardmodus</translation>
<message>
<location filename="../ProfileInterface.cpp" line="1524"/>
<location filename="../ProfileInterface.cpp" line="1538"/>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation>Im Spiel anzeigen</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1558"/>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source>
<translation>Im Spiel ausblenden</translation>
</message>

View File

@ -166,66 +166,47 @@ Pictures and Savegames</source>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="14"/>
<location filename="../ImportDialog.cpp" line="639"/>
<location filename="../ImportDialog.cpp" line="640"/>
<source>Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="59"/>
<source>Import picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="62"/>
<source>&amp;Import...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="82"/>
<location filename="../ImportDialog.cpp" line="641"/>
<location filename="../ImportDialog.cpp" line="642"/>
<source>Apply changes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="85"/>
<location filename="../ImportDialog.cpp" line="640"/>
<location filename="../ImportDialog.cpp" line="641"/>
<source>&amp;Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="92"/>
<location filename="../ImportDialog.cpp" line="643"/>
<location filename="../ImportDialog.cpp" line="644"/>
<source>Discard changes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="95"/>
<location filename="../ImportDialog.cpp" line="642"/>
<location filename="../ImportDialog.cpp" line="643"/>
<source>&amp;Close</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation type="unfinished"></translation>
</message>
@ -241,7 +222,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="150"/>
<location filename="../ImportDialog.cpp" line="87"/>
<location filename="../ImportDialog.cpp" line="315"/>
<location filename="../ImportDialog.cpp" line="727"/>
<location filename="../ImportDialog.cpp" line="728"/>
<source>Background Colour: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</source>
<translation>Background Color: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</translation>
</message>
@ -284,7 +265,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="318"/>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>Background Image: %1</source>
<translation type="unfinished"></translation>
</message>
@ -342,7 +323,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="203"/>
<location filename="../ImportDialog.cpp" line="88"/>
<location filename="../ImportDialog.cpp" line="323"/>
<location filename="../ImportDialog.cpp" line="807"/>
<location filename="../ImportDialog.cpp" line="808"/>
<source>Background Image:</source>
<translation type="unfinished"></translation>
</message>
@ -458,23 +439,23 @@ Pictures and Savegames</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Snapmatic Avatar Zone</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Are you sure to use a square image outside of the Avatar Zone?
When you want to use it as Avatar the image will be detached!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="723"/>
<location filename="../ImportDialog.cpp" line="724"/>
<source>Select Colour...</source>
<translation>Select Color...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>File</source>
<comment>Background Image: File</comment>
<translation type="unfinished"></translation>
@ -724,26 +705,26 @@ Y: %2</source>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="616"/>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="645"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<location filename="../OptionsDialog.cpp" line="665"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Language: %1</source>
<translation type="unfinished"></translation>
</message>
@ -759,7 +740,7 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="574"/>
<location filename="../OptionsDialog.cpp" line="586"/>
<source>Participate in %1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
@ -780,8 +761,8 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="590"/>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Participation ID: %1</source>
<translation type="unfinished"></translation>
</message>
@ -848,8 +829,8 @@ Y: %2</source>
<message>
<location filename="../OptionsDialog.ui" line="611"/>
<location filename="../OptionsDialog.ui" line="633"/>
<location filename="../OptionsDialog.cpp" line="202"/>
<location filename="../OptionsDialog.cpp" line="251"/>
<location filename="../OptionsDialog.cpp" line="214"/>
<location filename="../OptionsDialog.cpp" line="263"/>
<source>Current: %1</source>
<translation type="unfinished"></translation>
</message>
@ -881,95 +862,95 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>System</source>
<comment>System in context of System default</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<source>%1 (Game language)</source>
<comment>Next closest language compared to the Game settings</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>%1 (Closest to Interface)</source>
<comment>Next closest language compared to the Interface</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>Auto</source>
<comment>Automatic language choice.</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>%1 (Language priority)</source>
<comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>%1</source>
<comment>%1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>The new Custom Folder will initialize after you restart %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="472"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="480"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<location filename="../OptionsDialog.cpp" line="486"/>
<location filename="../OptionsDialog.cpp" line="492"/>
<location filename="../OptionsDialog.cpp" line="496"/>
<location filename="../OptionsDialog.cpp" line="498"/>
<source>Profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="575"/>
<location filename="../OptionsDialog.cpp" line="587"/>
<source>View %1 User Statistics Online</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Not registered</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Yes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<source>No</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<source>OS defined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Steam defined</source>
<translation type="unfinished"></translation>
</message>
@ -1010,183 +991,183 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../PictureDialog.cpp" line="164"/>
<location filename="../ProfileInterface.cpp" line="1609"/>
<source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="166"/>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../ProfileInterface.cpp" line="1610"/>
<source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="169"/>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../ProfileInterface.cpp" line="1604"/>
<source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../PictureDialog.cpp" line="167"/>
<location filename="../ProfileInterface.cpp" line="1603"/>
<source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="171"/>
<location filename="../PictureDialog.cpp" line="170"/>
<location filename="../ProfileInterface.cpp" line="1606"/>
<source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="575"/>
<location filename="../PictureDialog.cpp" line="574"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Snapmatic Picture Viewer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Failed at %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="798"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="797"/>
<location filename="../SnapmaticEditor.cpp" line="247"/>
<source>No Players</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="774"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="773"/>
<source>No Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="660"/>
<source>Unknown Location</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="732"/>
<location filename="../PictureDialog.cpp" line="731"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="99"/>
<source>Export as Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="96"/>
<location filename="../PictureExport.cpp" line="249"/>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="262"/>
<source>Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="99"/>
<location filename="../PictureExport.cpp" line="103"/>
<source>JPEG Graphics (*.jpg *.jpeg)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="104"/>
<source>Portable Network Graphics (*.png)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="215"/>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="221"/>
<location filename="../PictureExport.cpp" line="224"/>
<location filename="../PictureExport.cpp" line="231"/>
<source>Export as Picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="298"/>
<source>Overwrite %1 with current Snapmatic picture?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<source>Failed to export current Snapmatic picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="231"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>No valid file is selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="215"/>
<source>Failed to export the picture because the system occurred a write failure</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="218"/>
<source>Failed to export the picture because the format detection failures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="221"/>
<source>Failed to export the picture because the file can&apos;t be written</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="224"/>
<source>Failed to export the picture because of an unknown reason</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="248"/>
<location filename="../PictureExport.cpp" line="261"/>
<source>Export as Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="252"/>
<location filename="../PictureExport.cpp" line="265"/>
<source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="253"/>
<location filename="../PictureExport.cpp" line="266"/>
<source>GTA V Raw Export (*.auto)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="254"/>
<location filename="../PictureExport.cpp" line="267"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="298"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<location filename="../PictureExport.cpp" line="323"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>Export as Snapmatic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="323"/>
<source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1607"/>
<source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation>
@ -1284,9 +1265,9 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ExportThread.cpp" line="97"/>
<location filename="../ExportThread.cpp" line="136"/>
<location filename="../ExportThread.cpp" line="157"/>
<location filename="../ExportThread.cpp" line="102"/>
<location filename="../ExportThread.cpp" line="150"/>
<location filename="../ExportThread.cpp" line="171"/>
<source>Export file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
@ -1311,9 +1292,8 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="109"/>
<location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="746"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="487"/>
<location filename="../ProfileInterface.cpp" line="488"/>
<location filename="../ProfileInterface.cpp" line="532"/>
@ -1335,15 +1315,12 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="427"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ImportDialog.cpp" line="788"/>
<source>Import</source>
<translation type="unfinished"></translation>
</message>
@ -1371,17 +1348,15 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="120"/>
<location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="757"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="507"/>
<source>All image files (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../UserInterface.cpp" line="463"/>
<source>All files (**)</source>
@ -1420,17 +1395,15 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="769"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="779"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation>
@ -1865,9 +1838,9 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="182"/>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../JsonEditorDialog.cpp" line="217"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source>
<translation type="unfinished"></translation>
</message>
@ -2010,9 +1983,9 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
@ -2152,8 +2125,8 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Delete picture</source>
<translation type="unfinished"></translation>
</message>
@ -2213,22 +2186,22 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
@ -2385,7 +2358,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="720"/>
<location filename="../OptionsDialog.cpp" line="732"/>
<location filename="../UserInterface.cpp" line="188"/>
<location filename="../UserInterface.cpp" line="608"/>
<source>Select GTA V Folder...</source>
@ -2454,14 +2427,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ProfileInterface.cpp" line="1524"/>
<location filename="../ProfileInterface.cpp" line="1538"/>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1558"/>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source>
<translation type="unfinished"></translation>
</message>

View File

@ -166,66 +166,47 @@ Pictures and Savegames</source>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../ImageEditorDialog.ui" line="14"/>
<location filename="../ImportDialog.cpp" line="639"/>
<location filename="../ImportDialog.cpp" line="640"/>
<source>Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="59"/>
<source>Import picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="62"/>
<source>&amp;Import...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="82"/>
<location filename="../ImportDialog.cpp" line="641"/>
<location filename="../ImportDialog.cpp" line="642"/>
<source>Apply changes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="85"/>
<location filename="../ImportDialog.cpp" line="640"/>
<location filename="../ImportDialog.cpp" line="641"/>
<source>&amp;Overwrite</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="92"/>
<location filename="../ImportDialog.cpp" line="643"/>
<location filename="../ImportDialog.cpp" line="644"/>
<source>Discard changes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="95"/>
<location filename="../ImportDialog.cpp" line="642"/>
<location filename="../ImportDialog.cpp" line="643"/>
<source>&amp;Close</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation type="unfinished"></translation>
</message>
@ -267,7 +248,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="150"/>
<location filename="../ImportDialog.cpp" line="87"/>
<location filename="../ImportDialog.cpp" line="315"/>
<location filename="../ImportDialog.cpp" line="727"/>
<location filename="../ImportDialog.cpp" line="728"/>
<source>Background Colour: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</source>
<translation type="unfinished"></translation>
</message>
@ -286,7 +267,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="203"/>
<location filename="../ImportDialog.cpp" line="88"/>
<location filename="../ImportDialog.cpp" line="323"/>
<location filename="../ImportDialog.cpp" line="807"/>
<location filename="../ImportDialog.cpp" line="808"/>
<source>Background Image:</source>
<translation type="unfinished"></translation>
</message>
@ -376,7 +357,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="318"/>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>Background Image: %1</source>
<translation type="unfinished"></translation>
</message>
@ -458,23 +439,23 @@ Pictures and Savegames</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Snapmatic Avatar Zone</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Are you sure to use a square image outside of the Avatar Zone?
When you want to use it as Avatar the image will be detached!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="723"/>
<location filename="../ImportDialog.cpp" line="724"/>
<source>Select Colour...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>File</source>
<comment>Background Image: File</comment>
<translation type="unfinished"></translation>
@ -724,26 +705,26 @@ Y: %2</source>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Found: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="616"/>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="645"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<location filename="../OptionsDialog.cpp" line="665"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Language: %1</source>
<translation type="unfinished"></translation>
</message>
@ -764,7 +745,7 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="574"/>
<location filename="../OptionsDialog.cpp" line="586"/>
<source>Participate in %1 User Statistics</source>
<translation type="unfinished"></translation>
</message>
@ -800,8 +781,8 @@ Y: %2</source>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="590"/>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Participation ID: %1</source>
<translation type="unfinished"></translation>
</message>
@ -823,8 +804,8 @@ Y: %2</source>
<message>
<location filename="../OptionsDialog.ui" line="611"/>
<location filename="../OptionsDialog.ui" line="633"/>
<location filename="../OptionsDialog.cpp" line="202"/>
<location filename="../OptionsDialog.cpp" line="251"/>
<location filename="../OptionsDialog.cpp" line="214"/>
<location filename="../OptionsDialog.cpp" line="263"/>
<source>Current: %1</source>
<translation type="unfinished"></translation>
</message>
@ -881,95 +862,95 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>%1 (Language priority)</source>
<comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>System</source>
<comment>System in context of System default</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<source>%1 (Game language)</source>
<comment>Next closest language compared to the Game settings</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>Auto</source>
<comment>Automatic language choice.</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>%1 (Closest to Interface)</source>
<comment>Next closest language compared to the Interface</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>%1</source>
<comment>%1</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="472"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="480"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<location filename="../OptionsDialog.cpp" line="486"/>
<location filename="../OptionsDialog.cpp" line="492"/>
<location filename="../OptionsDialog.cpp" line="496"/>
<location filename="../OptionsDialog.cpp" line="498"/>
<source>Profile: %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="575"/>
<location filename="../OptionsDialog.cpp" line="587"/>
<source>View %1 User Statistics Online</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Not registered</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Yes</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<source>No</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<source>OS defined</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Steam defined</source>
<translation type="unfinished"></translation>
</message>
@ -1010,184 +991,184 @@ Y: %2</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../PictureDialog.cpp" line="164"/>
<location filename="../ProfileInterface.cpp" line="1609"/>
<source>Export as &amp;Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="166"/>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../ProfileInterface.cpp" line="1610"/>
<source>Export as &amp;Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../PictureDialog.cpp" line="167"/>
<location filename="../ProfileInterface.cpp" line="1603"/>
<source>&amp;Edit Properties...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="169"/>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../ProfileInterface.cpp" line="1604"/>
<source>&amp;Overwrite Image...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="171"/>
<location filename="../PictureDialog.cpp" line="170"/>
<location filename="../ProfileInterface.cpp" line="1606"/>
<source>Open &amp;Map Viewer...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1607"/>
<source>Open &amp;JSON Editor...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="575"/>
<location filename="../PictureDialog.cpp" line="574"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Snapmatic Picture Viewer</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Failed at %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="798"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="797"/>
<location filename="../SnapmaticEditor.cpp" line="247"/>
<source>No Players</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="774"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="773"/>
<source>No Crew</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="660"/>
<source>Unknown Location</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="732"/>
<location filename="../PictureDialog.cpp" line="731"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="99"/>
<source>Export as Picture...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="96"/>
<location filename="../PictureExport.cpp" line="249"/>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="262"/>
<source>Export</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="99"/>
<location filename="../PictureExport.cpp" line="103"/>
<source>JPEG Graphics (*.jpg *.jpeg)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="104"/>
<source>Portable Network Graphics (*.png)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="215"/>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="221"/>
<location filename="../PictureExport.cpp" line="224"/>
<location filename="../PictureExport.cpp" line="231"/>
<source>Export as Picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="298"/>
<source>Overwrite %1 with current Snapmatic picture?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="215"/>
<source>Failed to export the picture because the system occurred a write failure</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="218"/>
<source>Failed to export the picture because the format detection failures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="221"/>
<source>Failed to export the picture because the file can&apos;t be written</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="224"/>
<source>Failed to export the picture because of an unknown reason</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="231"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>No valid file is selected</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="248"/>
<location filename="../PictureExport.cpp" line="261"/>
<source>Export as Snapmatic...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="252"/>
<location filename="../PictureExport.cpp" line="265"/>
<source>GTA V Export (*.g5e)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="253"/>
<location filename="../PictureExport.cpp" line="266"/>
<source>GTA V Raw Export (*.auto)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="254"/>
<location filename="../PictureExport.cpp" line="267"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="298"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<location filename="../PictureExport.cpp" line="323"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>Export as Snapmatic</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<source>Failed to export current Snapmatic picture</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="323"/>
<source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
<translation type="unfinished"></translation>
</message>
@ -1284,16 +1265,15 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ExportThread.cpp" line="97"/>
<location filename="../ExportThread.cpp" line="136"/>
<location filename="../ExportThread.cpp" line="157"/>
<location filename="../ExportThread.cpp" line="102"/>
<location filename="../ExportThread.cpp" line="150"/>
<location filename="../ExportThread.cpp" line="171"/>
<source>Export file %1 of %2 files</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="109"/>
<location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="746"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="487"/>
<location filename="../ProfileInterface.cpp" line="488"/>
<location filename="../ProfileInterface.cpp" line="532"/>
@ -1315,47 +1295,40 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="427"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ImportDialog.cpp" line="788"/>
<source>Import</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="120"/>
<location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="757"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="507"/>
<source>All image files (%1)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../UserInterface.cpp" line="463"/>
<source>All files (**)</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="769"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="779"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation type="unfinished"></translation>
@ -1865,9 +1838,9 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="182"/>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../JsonEditorDialog.cpp" line="217"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source>
<translation type="unfinished"></translation>
</message>
@ -1958,9 +1931,9 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation type="unfinished"></translation>
</message>
@ -2152,8 +2125,8 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Delete picture</source>
<translation type="unfinished"></translation>
</message>
@ -2213,22 +2186,22 @@ Press 1 for Default View</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation type="unfinished"></translation>
</message>
@ -2390,7 +2363,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="720"/>
<location filename="../OptionsDialog.cpp" line="732"/>
<location filename="../UserInterface.cpp" line="188"/>
<location filename="../UserInterface.cpp" line="608"/>
<source>Select GTA V Folder...</source>
@ -2429,14 +2402,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ProfileInterface.cpp" line="1524"/>
<location filename="../ProfileInterface.cpp" line="1538"/>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1558"/>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source>
<translation type="unfinished"></translation>
</message>

Binary file not shown.

View File

@ -176,66 +176,47 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source>
<translation>Éditeur d&apos;images Snapmatic</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="14"/>
<location filename="../ImportDialog.cpp" line="639"/>
<location filename="../ImportDialog.cpp" line="640"/>
<source>Overwrite Image...</source>
<translation>Remplacer l&apos;image...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="59"/>
<source>Import picture</source>
<translation>Importer l&apos;image</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="62"/>
<source>&amp;Import...</source>
<translation>&amp;Importer...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="82"/>
<location filename="../ImportDialog.cpp" line="641"/>
<location filename="../ImportDialog.cpp" line="642"/>
<source>Apply changes</source>
<translation>Appliquer les modifications</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="85"/>
<location filename="../ImportDialog.cpp" line="640"/>
<location filename="../ImportDialog.cpp" line="641"/>
<source>&amp;Overwrite</source>
<translation>&amp;Remplacer</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="92"/>
<location filename="../ImportDialog.cpp" line="643"/>
<location filename="../ImportDialog.cpp" line="644"/>
<source>Discard changes</source>
<translation>Annuler les modifications</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="95"/>
<location filename="../ImportDialog.cpp" line="642"/>
<location filename="../ImportDialog.cpp" line="643"/>
<source>&amp;Close</source>
<translation>&amp;Fermer</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>Échec du patch Snapmatic : I/O Error</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Échec du patch Snapmatic : Image Error</translation>
</message>
@ -277,7 +258,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<location filename="../ImportDialog.ui" line="150"/>
<location filename="../ImportDialog.cpp" line="87"/>
<location filename="../ImportDialog.cpp" line="315"/>
<location filename="../ImportDialog.cpp" line="727"/>
<location filename="../ImportDialog.cpp" line="728"/>
<source>Background Colour: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</source>
<translation>Couleur de fond : &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</translation>
</message>
@ -304,7 +285,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="318"/>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>Background Image: %1</source>
<translation>Image de fond : %1</translation>
</message>
@ -352,7 +333,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<location filename="../ImportDialog.ui" line="203"/>
<location filename="../ImportDialog.cpp" line="88"/>
<location filename="../ImportDialog.cpp" line="323"/>
<location filename="../ImportDialog.cpp" line="807"/>
<location filename="../ImportDialog.cpp" line="808"/>
<source>Background Image:</source>
<translation>Image de fond :</translation>
</message>
@ -468,24 +449,24 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<translation>Sauvegarder les paramètres...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Are you sure to use a square image outside of the Avatar Zone?
When you want to use it as Avatar the image will be detached!</source>
<translation>Êtes-vous sûr d&apos;utiliser une image carrée en dehors de la Zone d&apos;Avatar ?
Si vous l&apos;utilisez comme Avatar, l&apos;image sera détachée !</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Snapmatic Avatar Zone</source>
<translation>Zone d&apos;Avatar Snapmatic</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="723"/>
<location filename="../ImportDialog.cpp" line="724"/>
<source>Select Colour...</source>
<translation>Choisir une couleur...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>File</source>
<comment>Background Image: File</comment>
<translation>Fichier</translation>
@ -736,26 +717,26 @@ Y : %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Found: %1</source>
<translation>Trouvé : %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="616"/>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="645"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<location filename="../OptionsDialog.cpp" line="665"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Language: %1</source>
<translation>Langue : %1</translation>
</message>
@ -776,7 +757,7 @@ Y : %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="574"/>
<location filename="../OptionsDialog.cpp" line="586"/>
<source>Participate in %1 User Statistics</source>
<translation>Participer aux statistiques d&apos;usage %1</translation>
</message>
@ -807,8 +788,8 @@ Y : %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="590"/>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Participation ID: %1</source>
<translation>ID de participation : %1</translation>
</message>
@ -860,8 +841,8 @@ Y : %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="611"/>
<location filename="../OptionsDialog.ui" line="633"/>
<location filename="../OptionsDialog.cpp" line="202"/>
<location filename="../OptionsDialog.cpp" line="251"/>
<location filename="../OptionsDialog.cpp" line="214"/>
<location filename="../OptionsDialog.cpp" line="263"/>
<source>Current: %1</source>
<translation>Actuel : %1</translation>
</message>
@ -893,95 +874,95 @@ Y : %2</translation>
<translation>&amp;Annuler</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>System</source>
<comment>System in context of System default</comment>
<translation>Système</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<source>%1 (Game language)</source>
<comment>Next closest language compared to the Game settings</comment>
<translation>%1 (Langue du jeu)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>%1 (Closest to Interface)</source>
<comment>Next closest language compared to the Interface</comment>
<translation>%1 (Langage proche de l&apos;interface)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>Auto</source>
<comment>Automatic language choice.</comment>
<translation>Automatique</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>%1 (Language priority)</source>
<comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
<translation>%1 (Priorité de la langue)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>Le nouveau Dossier personnalisé sera initialisé au redémarrage de %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="575"/>
<location filename="../OptionsDialog.cpp" line="587"/>
<source>View %1 User Statistics Online</source>
<translation>Voir les statistiques d&apos;usage %1 en ligne</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Not registered</source>
<translation>Pas enregistré</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Yes</source>
<translation>Oui</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<source>No</source>
<translation>Non</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<source>OS defined</source>
<translation>Défini par le système d&apos;exploitation</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Steam defined</source>
<translation>Défini par Steam</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="472"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation>Aucun profil</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="480"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<location filename="../OptionsDialog.cpp" line="486"/>
<location filename="../OptionsDialog.cpp" line="492"/>
<location filename="../OptionsDialog.cpp" line="496"/>
<location filename="../OptionsDialog.cpp" line="498"/>
<source>Profile: %1</source>
<translation>Profil : %1</translation>
</message>
@ -1025,123 +1006,123 @@ Y : %2</translation>
<translation>&amp;Fermer</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="215"/>
<source>Failed to export the picture because the system occurred a write failure</source>
<translation>Échec de l&apos;export de l&apos;image : erreur d&apos;écriture</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="218"/>
<source>Failed to export the picture because the format detection failures</source>
<translation>Échec de l&apos;export de l&apos;image : erreur de détection du format</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="221"/>
<source>Failed to export the picture because the file can&apos;t be written</source>
<translation>Échec de l&apos;export de l&apos;image : impossible d&apos;écrire dans le fichier</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="224"/>
<source>Failed to export the picture because of an unknown reason</source>
<translation>Échec de l&apos;export de l&apos;image : erreur inconnue</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="248"/>
<location filename="../PictureExport.cpp" line="261"/>
<source>Export as Snapmatic...</source>
<translation>Exporter comme Snapmatic...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="252"/>
<location filename="../PictureExport.cpp" line="265"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="253"/>
<location filename="../PictureExport.cpp" line="266"/>
<source>GTA V Raw Export (*.auto)</source>
<translation>GTA V Export Brut (*.g5e)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="254"/>
<location filename="../PictureExport.cpp" line="267"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Fichiers GTA Snapmatic (PGTA*)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="298"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<location filename="../PictureExport.cpp" line="323"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>Export as Snapmatic</source>
<translation>Exporter comme Snapmatic</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="323"/>
<source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
<translation>Exporté comme &quot;%1&quot; avec l&apos;utilisation de l&apos;extension .auto.</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="298"/>
<source>Overwrite %1 with current Snapmatic picture?</source>
<translation>%1 existe déjà. Vous-vous le remplacer ?</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="99"/>
<source>Export as Picture...</source>
<translation>Exporter comme image...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="99"/>
<location filename="../PictureExport.cpp" line="103"/>
<source>JPEG Graphics (*.jpg *.jpeg)</source>
<translation>JPEG Graphics (*.jpg *.jpeg)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="215"/>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="221"/>
<location filename="../PictureExport.cpp" line="224"/>
<location filename="../PictureExport.cpp" line="231"/>
<source>Export as Picture</source>
<translation>Exporter comme image</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="231"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>No valid file is selected</source>
<translation>Fichier invalide</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../PictureDialog.cpp" line="164"/>
<location filename="../ProfileInterface.cpp" line="1609"/>
<source>Export as &amp;Picture...</source>
<translation>Exporter comme &amp;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="166"/>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../ProfileInterface.cpp" line="1610"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Exporter comme &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="169"/>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../ProfileInterface.cpp" line="1604"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Remplacer l&apos;image...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../PictureDialog.cpp" line="167"/>
<location filename="../ProfileInterface.cpp" line="1603"/>
<source>&amp;Edit Properties...</source>
<translation>Modifier les &amp;propriétés...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="171"/>
<location filename="../PictureDialog.cpp" line="170"/>
<location filename="../ProfileInterface.cpp" line="1606"/>
<source>Open &amp;Map Viewer...</source>
<translation>Ouvrir la &amp;Visionneuse de Carte...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="575"/>
<location filename="../PictureDialog.cpp" line="574"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1150,61 +1131,61 @@ Touche 2 - Activer/désactiver l&apos;overlay
Touches fléchées - Naviguer</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Snapmatic Picture Viewer</source>
<translation>Visionneuse de photo Snapmatic</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Failed at %1</source>
<translation>Echec de %1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="774"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="773"/>
<source>No Crew</source>
<translation>Aucun crew</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="798"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="797"/>
<location filename="../SnapmaticEditor.cpp" line="247"/>
<source>No Players</source>
<translation>Aucun joueurs</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="732"/>
<location filename="../PictureDialog.cpp" line="731"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>Mode Aperçu Avatar
Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="660"/>
<source>Unknown Location</source>
<translation>Emplacement inconnu</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="96"/>
<location filename="../PictureExport.cpp" line="249"/>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="262"/>
<source>Export</source>
<translation>Exporter</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="104"/>
<source>Portable Network Graphics (*.png)</source>
<translation>Portable Network Graphics (*.png)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<source>Failed to export current Snapmatic picture</source>
<translation>Échec de l&apos;export de la photo Snapmatic</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1607"/>
<source>Open &amp;JSON Editor...</source>
<translation>Ouvrir l&apos;éditeur &amp;JSON...</translation>
@ -1302,9 +1283,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>&amp;Fermer</translation>
</message>
<message>
<location filename="../ExportThread.cpp" line="97"/>
<location filename="../ExportThread.cpp" line="136"/>
<location filename="../ExportThread.cpp" line="157"/>
<location filename="../ExportThread.cpp" line="102"/>
<location filename="../ExportThread.cpp" line="150"/>
<location filename="../ExportThread.cpp" line="171"/>
<source>Export file %1 of %2 files</source>
<translation>Copie du fichier %1 sur %2</translation>
</message>
@ -1329,9 +1310,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>&lt;h4&gt;Les Snapmatic suivants ont é répaés&lt;/h4&gt;%1</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="109"/>
<location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="746"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="487"/>
<location filename="../ProfileInterface.cpp" line="488"/>
<location filename="../ProfileInterface.cpp" line="532"/>
@ -1353,15 +1333,12 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Importer...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="427"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ImportDialog.cpp" line="788"/>
<source>Import</source>
<translation>Importer</translation>
</message>
@ -1378,17 +1355,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Photos Snapmatic (PGTA*)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="120"/>
<location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="757"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="507"/>
<source>All image files (%1)</source>
<translation>Toutes les images (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../UserInterface.cpp" line="463"/>
<source>All files (**)</source>
@ -1434,17 +1409,15 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Impossible de lire le fichier de sauvegarde</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="769"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Impossible d&apos;importer %1, le fichier ne peut pas être ouvert</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="779"/>
<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>
@ -1891,9 +1864,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
<location filename="../JsonEditorDialog.cpp" line="182"/>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../JsonEditorDialog.cpp" line="217"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source>
<translation>Propriétés Snapmatic</translation>
</message>
@ -2044,9 +2017,9 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>La modification des propriétés Snapmatic a échoué : erreur d&apos;entrée/sortie</translation>
</message>
@ -2180,8 +2153,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Delete picture</source>
<translation>Supprimer la photo</translation>
</message>
@ -2191,22 +2164,22 @@ Appuyer sur 1 pour le mode par défaut</translation>
<translation>Supprimer</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
<translation>Supprimer %1 ?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation>Impossible de supprimer %1</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation>%1 n&apos;a pas pu être rendu invisible en jeu</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation>%1 n&apos;a pas pu être rendu visible en jeu</translation>
</message>
@ -2395,7 +2368,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="720"/>
<location filename="../OptionsDialog.cpp" line="732"/>
<location filename="../UserInterface.cpp" line="188"/>
<location filename="../UserInterface.cpp" line="608"/>
<source>Select GTA V Folder...</source>
@ -2482,14 +2455,14 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message>
<location filename="../ProfileInterface.cpp" line="1524"/>
<location filename="../ProfileInterface.cpp" line="1538"/>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation>Visible en jeu</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1558"/>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source>
<translation>Invisible en jeu</translation>
</message>

Binary file not shown.

View File

@ -176,66 +176,47 @@ Pictures and Savegames</source>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../ImageEditorDialog.ui" line="14"/>
<location filename="../ImportDialog.cpp" line="639"/>
<location filename="../ImportDialog.cpp" line="640"/>
<source>Overwrite Image...</source>
<translation> ...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="59"/>
<source>Import picture</source>
<translation> </translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="62"/>
<source>&amp;Import...</source>
<translation>(&amp;I)...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="82"/>
<location filename="../ImportDialog.cpp" line="641"/>
<location filename="../ImportDialog.cpp" line="642"/>
<source>Apply changes</source>
<translation> </translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="85"/>
<location filename="../ImportDialog.cpp" line="640"/>
<location filename="../ImportDialog.cpp" line="641"/>
<source>&amp;Overwrite</source>
<translation>(&amp;O)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="92"/>
<location filename="../ImportDialog.cpp" line="643"/>
<location filename="../ImportDialog.cpp" line="644"/>
<source>Discard changes</source>
<translation> </translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="95"/>
<location filename="../ImportDialog.cpp" line="642"/>
<location filename="../ImportDialog.cpp" line="643"/>
<source>&amp;Close</source>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source>
<translation> </translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>I/O </translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation> </translation>
</message>
@ -277,7 +258,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="150"/>
<location filename="../ImportDialog.cpp" line="87"/>
<location filename="../ImportDialog.cpp" line="315"/>
<location filename="../ImportDialog.cpp" line="727"/>
<location filename="../ImportDialog.cpp" line="728"/>
<source>Background Colour: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</source>
<translation> : &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</translation>
</message>
@ -296,7 +277,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="203"/>
<location filename="../ImportDialog.cpp" line="88"/>
<location filename="../ImportDialog.cpp" line="323"/>
<location filename="../ImportDialog.cpp" line="807"/>
<location filename="../ImportDialog.cpp" line="808"/>
<source>Background Image:</source>
<translation> :</translation>
</message>
@ -388,7 +369,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="318"/>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>Background Image: %1</source>
<translation> : %1</translation>
</message>
@ -473,24 +454,24 @@ Pictures and Savegames</source>
<translation> ...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Snapmatic Avatar Zone</source>
<translation> </translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Are you sure to use a square image outside of the Avatar Zone?
When you want to use it as Avatar the image will be detached!</source>
<translation> ?
!</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="723"/>
<location filename="../ImportDialog.cpp" line="724"/>
<source>Select Colour...</source>
<translation> ...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>File</source>
<comment>Background Image: File</comment>
<translatorcomment> 이미지: 파일</translatorcomment>
@ -743,26 +724,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Found: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="616"/>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="645"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<location filename="../OptionsDialog.cpp" line="665"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Language: %1</source>
<translation>: %1</translation>
</message>
@ -783,7 +764,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="574"/>
<location filename="../OptionsDialog.cpp" line="586"/>
<source>Participate in %1 User Statistics</source>
<translation> %1</translation>
</message>
@ -819,8 +800,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="590"/>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Participation ID: %1</source>
<translation> : %1</translation>
</message>
@ -842,8 +823,8 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="611"/>
<location filename="../OptionsDialog.ui" line="633"/>
<location filename="../OptionsDialog.cpp" line="202"/>
<location filename="../OptionsDialog.cpp" line="251"/>
<location filename="../OptionsDialog.cpp" line="214"/>
<location filename="../OptionsDialog.cpp" line="263"/>
<source>Current: %1</source>
<translation>: %1</translation>
</message>
@ -902,100 +883,100 @@ Y: %2</translation>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>%1 (Language priority)</source>
<comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
<translation>%1 ( )</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>System</source>
<comment>System in context of System default</comment>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<source>%1 (Game language)</source>
<comment>Next closest language compared to the Game settings</comment>
<translatorcomment> </translatorcomment>
<translation>%1 ( )</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>Auto</source>
<comment>Automatic language choice.</comment>
<translatorcomment> </translatorcomment>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>%1 (Closest to Interface)</source>
<comment>Next closest language compared to the Interface</comment>
<translatorcomment> </translatorcomment>
<translation>%1 ( )</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>%1</source>
<comment>%1</comment>
<translatorcomment>%1</translatorcomment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation> . %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="472"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translatorcomment> ()</translatorcomment>
<translation> </translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="480"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<location filename="../OptionsDialog.cpp" line="486"/>
<location filename="../OptionsDialog.cpp" line="492"/>
<location filename="../OptionsDialog.cpp" line="496"/>
<location filename="../OptionsDialog.cpp" line="498"/>
<source>Profile: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="575"/>
<location filename="../OptionsDialog.cpp" line="587"/>
<source>View %1 User Statistics Online</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Not registered</source>
<translation> </translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Yes</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<source>No</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<source>OS defined</source>
<translation>OS </translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Steam defined</source>
<translation> </translation>
</message>
@ -1039,43 +1020,43 @@ Y: %2</translation>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../PictureDialog.cpp" line="164"/>
<location filename="../ProfileInterface.cpp" line="1609"/>
<source>Export as &amp;Picture...</source>
<translation> (&amp;P)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="166"/>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../ProfileInterface.cpp" line="1610"/>
<source>Export as &amp;Snapmatic...</source>
<translation> (&amp;S)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../PictureDialog.cpp" line="167"/>
<location filename="../ProfileInterface.cpp" line="1603"/>
<source>&amp;Edit Properties...</source>
<translation> (&amp;E)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="169"/>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../ProfileInterface.cpp" line="1604"/>
<source>&amp;Overwrite Image...</source>
<translation> (&amp;O)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="171"/>
<location filename="../PictureDialog.cpp" line="170"/>
<location filename="../ProfileInterface.cpp" line="1606"/>
<source>Open &amp;Map Viewer...</source>
<translation> (&amp;M)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1607"/>
<source>Open &amp;JSON Editor...</source>
<translation>JSON (&amp;J)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="575"/>
<location filename="../PictureDialog.cpp" line="574"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1084,142 +1065,142 @@ Arrow Keys - Navigate</source>
- </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Snapmatic Picture Viewer</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Failed at %1</source>
<translation>%1 </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="798"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="797"/>
<location filename="../SnapmaticEditor.cpp" line="247"/>
<source>No Players</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="774"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="773"/>
<source>No Crew</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="660"/>
<source>Unknown Location</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="732"/>
<location filename="../PictureDialog.cpp" line="731"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>
1 </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="99"/>
<source>Export as Picture...</source>
<translation> ...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="96"/>
<location filename="../PictureExport.cpp" line="249"/>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="262"/>
<source>Export</source>
<translation></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="99"/>
<location filename="../PictureExport.cpp" line="103"/>
<source>JPEG Graphics (*.jpg *.jpeg)</source>
<translation>JPEG Graphics (*.jpg *.jpeg)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="104"/>
<source>Portable Network Graphics (*.png)</source>
<translation>Portable Network Graphics (*.png)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="215"/>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="221"/>
<location filename="../PictureExport.cpp" line="224"/>
<location filename="../PictureExport.cpp" line="231"/>
<source>Export as Picture</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="298"/>
<source>Overwrite %1 with current Snapmatic picture?</source>
<translation>%1 ?</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="215"/>
<source>Failed to export the picture because the system occurred a write failure</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="218"/>
<source>Failed to export the picture because the format detection failures</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="221"/>
<source>Failed to export the picture because the file can&apos;t be written</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="224"/>
<source>Failed to export the picture because of an unknown reason</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="231"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>No valid file is selected</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="248"/>
<location filename="../PictureExport.cpp" line="261"/>
<source>Export as Snapmatic...</source>
<translation> ...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="252"/>
<location filename="../PictureExport.cpp" line="265"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="253"/>
<location filename="../PictureExport.cpp" line="266"/>
<source>GTA V Raw Export (*.auto)</source>
<translation>GTA V Raw Export (*.auto)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="254"/>
<location filename="../PictureExport.cpp" line="267"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic pictures (PGTA*)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="298"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<location filename="../PictureExport.cpp" line="323"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>Export as Snapmatic</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<source>Failed to export current Snapmatic picture</source>
<translation> </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="323"/>
<source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
<translation>.auto &quot;%1&quot; .</translation>
</message>
@ -1316,16 +1297,15 @@ Press 1 for Default View</source>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../ExportThread.cpp" line="97"/>
<location filename="../ExportThread.cpp" line="136"/>
<location filename="../ExportThread.cpp" line="157"/>
<location filename="../ExportThread.cpp" line="102"/>
<location filename="../ExportThread.cpp" line="150"/>
<location filename="../ExportThread.cpp" line="171"/>
<source>Export file %1 of %2 files</source>
<translation>%2 %1 </translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="109"/>
<location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="746"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="487"/>
<location filename="../ProfileInterface.cpp" line="488"/>
<location filename="../ProfileInterface.cpp" line="532"/>
@ -1347,47 +1327,40 @@ Press 1 for Default View</source>
<translation>...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="427"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ImportDialog.cpp" line="788"/>
<source>Import</source>
<translation></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="120"/>
<location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="757"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="507"/>
<source>All image files (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../UserInterface.cpp" line="463"/>
<source>All files (**)</source>
<translation> (**)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="769"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="779"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1 </translation>
@ -1910,9 +1883,9 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="182"/>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../JsonEditorDialog.cpp" line="217"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source>
<translation> </translation>
</message>
@ -2003,9 +1976,9 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>I/O </translation>
</message>
@ -2202,8 +2175,8 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Delete picture</source>
<translation> </translation>
</message>
@ -2263,22 +2236,22 @@ Press 1 for Default View</source>
<translation> (&amp;D)</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
<translation> %1 ?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation> %1 </translation>
</message>
@ -2441,7 +2414,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="720"/>
<location filename="../OptionsDialog.cpp" line="732"/>
<location filename="../UserInterface.cpp" line="188"/>
<location filename="../UserInterface.cpp" line="608"/>
<source>Select GTA V Folder...</source>
@ -2480,14 +2453,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ProfileInterface.cpp" line="1524"/>
<location filename="../ProfileInterface.cpp" line="1538"/>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation> </translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1558"/>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source>
<translation> </translation>
</message>

Binary file not shown.

View File

@ -180,66 +180,47 @@ Pictures and Savegames</source>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source>
<translation>Редактор картинок Snapmatic</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="14"/>
<location filename="../ImportDialog.cpp" line="639"/>
<location filename="../ImportDialog.cpp" line="640"/>
<source>Overwrite Image...</source>
<translation>Перезаписать картинку...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="59"/>
<source>Import picture</source>
<translation>Импортировать картинку</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="62"/>
<source>&amp;Import...</source>
<translation>&amp;Импортировать...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="82"/>
<location filename="../ImportDialog.cpp" line="641"/>
<location filename="../ImportDialog.cpp" line="642"/>
<source>Apply changes</source>
<translation>Применить изменения</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="85"/>
<location filename="../ImportDialog.cpp" line="640"/>
<location filename="../ImportDialog.cpp" line="641"/>
<source>&amp;Overwrite</source>
<translation>&amp;Перезаписать</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="92"/>
<location filename="../ImportDialog.cpp" line="643"/>
<location filename="../ImportDialog.cpp" line="644"/>
<source>Discard changes</source>
<translation>Отменить изменения</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="95"/>
<location filename="../ImportDialog.cpp" line="642"/>
<location filename="../ImportDialog.cpp" line="643"/>
<source>&amp;Close</source>
<translation>&amp;Закрыть</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>Не удалось изменить картинку Snapmatic из-за ошибки ввода-вывода</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Не удалось изменить картинку Snapmatic из-за ошибки Image Error</translation>
</message>
@ -281,7 +262,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="150"/>
<location filename="../ImportDialog.cpp" line="87"/>
<location filename="../ImportDialog.cpp" line="315"/>
<location filename="../ImportDialog.cpp" line="727"/>
<location filename="../ImportDialog.cpp" line="728"/>
<source>Background Colour: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</source>
<translation>Цвет фона: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</translation>
</message>
@ -308,7 +289,7 @@ Pictures and Savegames</source>
</message>
<message>
<location filename="../ImportDialog.cpp" line="318"/>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>Background Image: %1</source>
<translation>Фоновая картинка: %1</translation>
</message>
@ -360,7 +341,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="203"/>
<location filename="../ImportDialog.cpp" line="88"/>
<location filename="../ImportDialog.cpp" line="323"/>
<location filename="../ImportDialog.cpp" line="807"/>
<location filename="../ImportDialog.cpp" line="808"/>
<source>Background Image:</source>
<translation>Фоновая картинка:</translation>
</message>
@ -476,23 +457,23 @@ Pictures and Savegames</source>
<translation>Сохранить настройки...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Are you sure to use a square image outside of the Avatar Zone?
When you want to use it as Avatar the image will be detached!</source>
<translation>Ты точно хочешь использовать квадратное изображение вне зоны аватарки? Если это аватар, то изображение будет обрезано!</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Snapmatic Avatar Zone</source>
<translation>Зона Snapmatic Аватарки</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="723"/>
<location filename="../ImportDialog.cpp" line="724"/>
<source>Select Colour...</source>
<translation>Выбрать цвет...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>File</source>
<comment>Background Image: File</comment>
<translation>Файл</translation>
@ -743,26 +724,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Found: %1</source>
<translation>Найдено: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="616"/>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="645"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<location filename="../OptionsDialog.cpp" line="665"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Language: %1</source>
<translation>Язык: %1</translation>
</message>
@ -783,7 +764,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="574"/>
<location filename="../OptionsDialog.cpp" line="586"/>
<source>Participate in %1 User Statistics</source>
<translation>Участвовать в пользовательской статистике %1</translation>
</message>
@ -816,8 +797,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="590"/>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Participation ID: %1</source>
<translation>Номер участника: %1</translation>
</message>
@ -871,8 +852,8 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="611"/>
<location filename="../OptionsDialog.ui" line="633"/>
<location filename="../OptionsDialog.cpp" line="202"/>
<location filename="../OptionsDialog.cpp" line="251"/>
<location filename="../OptionsDialog.cpp" line="214"/>
<location filename="../OptionsDialog.cpp" line="263"/>
<source>Current: %1</source>
<translation>Сейчас: %1</translation>
</message>
@ -904,95 +885,95 @@ Y: %2</translation>
<translation>От&amp;мена</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>System</source>
<comment>System in context of System default</comment>
<translation>Система</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<source>%1 (Game language)</source>
<comment>Next closest language compared to the Game settings</comment>
<translation>%1 (Язык игры)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>%1 (Closest to Interface)</source>
<comment>Next closest language compared to the Interface</comment>
<translation>%1 (Совпадает с интерфейсом)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>Auto</source>
<comment>Automatic language choice.</comment>
<translation>Автоматически</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>%1 (Language priority)</source>
<comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
<translation>%1 (Приоритетный язык)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>Другая папка будет загружена после перезапуска %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="575"/>
<location filename="../OptionsDialog.cpp" line="587"/>
<source>View %1 User Statistics Online</source>
<translation>Посмотреть пользовательскую статистику %1 онлайн</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Not registered</source>
<translation>Не зарегистрирован</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Yes</source>
<translation>Да</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<source>No</source>
<translation>Нет</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<source>OS defined</source>
<translation>Настройка от ОС</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Steam defined</source>
<translation>Настройка от Steam</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="472"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation>Нет профиля</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="480"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<location filename="../OptionsDialog.cpp" line="486"/>
<location filename="../OptionsDialog.cpp" line="492"/>
<location filename="../OptionsDialog.cpp" line="496"/>
<location filename="../OptionsDialog.cpp" line="498"/>
<source>Profile: %1</source>
<translation>Профиль: %1</translation>
</message>
@ -1036,43 +1017,43 @@ Y: %2</translation>
<translation>&amp;Закрыть</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="96"/>
<location filename="../PictureExport.cpp" line="249"/>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="262"/>
<source>Export</source>
<translation>Экспортировать</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../PictureDialog.cpp" line="164"/>
<location filename="../ProfileInterface.cpp" line="1609"/>
<source>Export as &amp;Picture...</source>
<translation>Экспортировать как &amp;картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="166"/>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../ProfileInterface.cpp" line="1610"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Экспортировать как &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="169"/>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../ProfileInterface.cpp" line="1604"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписать картинку...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../PictureDialog.cpp" line="167"/>
<location filename="../ProfileInterface.cpp" line="1603"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Изменить свойства...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="171"/>
<location filename="../PictureDialog.cpp" line="170"/>
<location filename="../ProfileInterface.cpp" line="1606"/>
<source>Open &amp;Map Viewer...</source>
<translation>Открыть &amp;карту...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="575"/>
<location filename="../PictureDialog.cpp" line="574"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1081,141 +1062,141 @@ Arrow Keys - Navigate</source>
Стрелки - Навигация</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Snapmatic Picture Viewer</source>
<translation>Просмотрщик фотографий Snapmatic</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Failed at %1</source>
<translation>Ошибка при %1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="774"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="773"/>
<source>No Crew</source>
<translation>Вне банды</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="798"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="797"/>
<location filename="../SnapmaticEditor.cpp" line="247"/>
<source>No Players</source>
<translation>Игроков нет</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="732"/>
<location filename="../PictureDialog.cpp" line="731"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>Режим просмотра аватарок
Нажмите 1 для стандартного просмотра</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="660"/>
<source>Unknown Location</source>
<translation>Неизвестное место</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="104"/>
<source>Portable Network Graphics (*.png)</source>
<translation>Картинка Portable Network Graphics (*.png)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="298"/>
<source>Overwrite %1 with current Snapmatic picture?</source>
<translation>Перезаписать %1 текущей картинкой Snapmatic?</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="99"/>
<source>Export as Picture...</source>
<translation>Экспорт как картинку...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="99"/>
<location filename="../PictureExport.cpp" line="103"/>
<source>JPEG Graphics (*.jpg *.jpeg)</source>
<translation>Картинка JPEG (*.jpg *.jpeg)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="215"/>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="221"/>
<location filename="../PictureExport.cpp" line="224"/>
<location filename="../PictureExport.cpp" line="231"/>
<source>Export as Picture</source>
<translation>Экспорт как картинку</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="215"/>
<source>Failed to export the picture because the system occurred a write failure</source>
<translation>Не удалось экспортировать картинку из-за ошибки системы при записи</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="218"/>
<source>Failed to export the picture because the format detection failures</source>
<translation>Не удалось экспортировать картинку, потому что произошла ошибка при распозновании формата</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="221"/>
<source>Failed to export the picture because the file can&apos;t be written</source>
<translation>Не удалось экспортировать картинку, так как файл не может быть записан</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="224"/>
<source>Failed to export the picture because of an unknown reason</source>
<translation>Не удалось экспортировать картинку по неизвестной причине</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<source>Failed to export current Snapmatic picture</source>
<translation>Не удалось экспортировать текущую картинку Snapmatic</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="248"/>
<location filename="../PictureExport.cpp" line="261"/>
<source>Export as Snapmatic...</source>
<translation>Экспортировать как Snapmatic...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="298"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<location filename="../PictureExport.cpp" line="323"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>Export as Snapmatic</source>
<translation>Экспортировать как Snapmatic</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="323"/>
<source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
<translation>Snapmatic был экспортирован как &quot;%1&quot; из-за расширеня файла.</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="231"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>No valid file is selected</source>
<translation>Выбранный файл неверен</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="252"/>
<location filename="../PictureExport.cpp" line="265"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="253"/>
<location filename="../PictureExport.cpp" line="266"/>
<source>GTA V Raw Export (*.auto)</source>
<translation>GTA V Экспорт Исходника (*.auto)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="254"/>
<location filename="../PictureExport.cpp" line="267"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Картинки Snapmatic (PGTA*)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1607"/>
<source>Open &amp;JSON Editor...</source>
<translation>Открыть &amp;редактор JSON...</translation>
@ -1330,9 +1311,8 @@ Press 1 for Default View</source>
<translation>&lt;h4&gt;Нижеследующие картинки Snapmatic были восстановлены&lt;/h4&gt;%1</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="109"/>
<location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="746"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="487"/>
<location filename="../ProfileInterface.cpp" line="488"/>
<location filename="../ProfileInterface.cpp" line="532"/>
@ -1354,15 +1334,12 @@ Press 1 for Default View</source>
<translation>Импортировать...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="427"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ImportDialog.cpp" line="788"/>
<source>Import</source>
<translation>Импортировать</translation>
</message>
@ -1379,9 +1356,8 @@ Press 1 for Default View</source>
<translation>Картинка Snapmatic (PGTA*)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../UserInterface.cpp" line="463"/>
<source>All files (**)</source>
@ -1432,25 +1408,22 @@ Press 1 for Default View</source>
<translation>Файлы для импорта (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="120"/>
<location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="757"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="507"/>
<source>All image files (%1)</source>
<translation>Все файлы изображений (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="769"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Не удалось открыть %1, файл не может быть открыт</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="779"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Не получилось импортировать %1, файл не может быть правильно обработан</translation>
@ -1666,9 +1639,9 @@ Press 1 for Default View</source>
%1</translation>
</message>
<message>
<location filename="../ExportThread.cpp" line="97"/>
<location filename="../ExportThread.cpp" line="136"/>
<location filename="../ExportThread.cpp" line="157"/>
<location filename="../ExportThread.cpp" line="102"/>
<location filename="../ExportThread.cpp" line="150"/>
<location filename="../ExportThread.cpp" line="171"/>
<source>Export file %1 of %2 files</source>
<translation>Экспортируется файл %1 из %2</translation>
</message>
@ -1905,9 +1878,9 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="182"/>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../JsonEditorDialog.cpp" line="217"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source>
<translation>Свойства Snapmatic</translation>
</message>
@ -2056,9 +2029,9 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>Не удалось измененить свойства Snapmatic из-за проблемы ввода/вывода</translation>
</message>
@ -2187,28 +2160,28 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Delete picture</source>
<translation>Удалить картинку</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
<translation>Уверены, что хотите удалить %1 из коллекции картинок Snapmatic?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation>Не удалось удалить %1 из колелкции картинок Snapmatic</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation>Не удалось скрыть %1 из списка картинок Snapmatic в игре</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation>Не удалось показать %1 в списке картинок Snapmatic в игре</translation>
</message>
@ -2449,7 +2422,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="720"/>
<location filename="../OptionsDialog.cpp" line="732"/>
<location filename="../UserInterface.cpp" line="188"/>
<location filename="../UserInterface.cpp" line="608"/>
<source>Select GTA V Folder...</source>
@ -2494,14 +2467,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ProfileInterface.cpp" line="1524"/>
<location filename="../ProfileInterface.cpp" line="1538"/>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation>Показывать в игре</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1558"/>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source>
<translation>Скрыть в игре</translation>
</message>

Binary file not shown.

View File

@ -179,66 +179,47 @@ Pictures and Savegames</source>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../ImageEditorDialog.ui" line="14"/>
<location filename="../ImportDialog.cpp" line="639"/>
<location filename="../ImportDialog.cpp" line="640"/>
<source>Overwrite Image...</source>
<translation>Перезаписати зображення...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="59"/>
<source>Import picture</source>
<translation>Імпортувати зображення</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="62"/>
<source>&amp;Import...</source>
<translation>&amp;Імпорт...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="82"/>
<location filename="../ImportDialog.cpp" line="641"/>
<location filename="../ImportDialog.cpp" line="642"/>
<source>Apply changes</source>
<translation>Застосувати зміни</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="85"/>
<location filename="../ImportDialog.cpp" line="640"/>
<location filename="../ImportDialog.cpp" line="641"/>
<source>&amp;Overwrite</source>
<translation>&amp;Перезаписати</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="92"/>
<location filename="../ImportDialog.cpp" line="643"/>
<location filename="../ImportDialog.cpp" line="644"/>
<source>Discard changes</source>
<translation>Скасувати зміни</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="95"/>
<location filename="../ImportDialog.cpp" line="642"/>
<location filename="../ImportDialog.cpp" line="643"/>
<source>&amp;Close</source>
<translation>&amp;Закрити</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source>
<translation>Редактор Snapmatic зображень</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>Виправлення Snapmatic зображення не вдалося через I/O Error</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Виправлення Snapmatic зображення не вдалося через помилку картинки</translation>
</message>
@ -280,7 +261,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="150"/>
<location filename="../ImportDialog.cpp" line="87"/>
<location filename="../ImportDialog.cpp" line="315"/>
<location filename="../ImportDialog.cpp" line="727"/>
<location filename="../ImportDialog.cpp" line="728"/>
<source>Background Colour: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</source>
<translation>Фоновий колір: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</translation>
</message>
@ -299,7 +280,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="203"/>
<location filename="../ImportDialog.cpp" line="88"/>
<location filename="../ImportDialog.cpp" line="323"/>
<location filename="../ImportDialog.cpp" line="807"/>
<location filename="../ImportDialog.cpp" line="808"/>
<source>Background Image:</source>
<translation>Фонове зображення:</translation>
</message>
@ -459,25 +440,25 @@ Pictures and Savegames</source>
<translation>Зберегти параметри...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Snapmatic Avatar Zone</source>
<translation>Зона Snapmatic Аватару</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Are you sure to use a square image outside of the Avatar Zone?
When you want to use it as Avatar the image will be detached!</source>
<translation>Ви впевнені, що будете використовувати квадратне зображення поза зоною аватара?
Якщо ви хочете використовувати його як Аватар, зображення буде відокремлено!</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="723"/>
<location filename="../ImportDialog.cpp" line="724"/>
<source>Select Colour...</source>
<translation>Вибір кольору...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="318"/>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>Background Image: %1</source>
<translation>Фонове зображення: %1</translation>
</message>
@ -488,7 +469,7 @@ When you want to use it as Avatar the image will be detached!</source>
<translation>Будь ласка, виберіть свій профіль налаштувань</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>File</source>
<comment>Background Image: File</comment>
<translation>Файл</translation>
@ -739,26 +720,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Found: %1</source>
<translation>Знайдено:%1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="616"/>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="645"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<location filename="../OptionsDialog.cpp" line="665"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Language: %1</source>
<translation>Мова: %1</translation>
</message>
@ -780,7 +761,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="574"/>
<location filename="../OptionsDialog.cpp" line="586"/>
<source>Participate in %1 User Statistics</source>
<translation>Опитування %1 про устаткування ПК</translation>
</message>
@ -816,8 +797,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="590"/>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Participation ID: %1</source>
<translation>ID учасника : %1</translation>
</message>
@ -839,8 +820,8 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="611"/>
<location filename="../OptionsDialog.ui" line="633"/>
<location filename="../OptionsDialog.cpp" line="202"/>
<location filename="../OptionsDialog.cpp" line="251"/>
<location filename="../OptionsDialog.cpp" line="214"/>
<location filename="../OptionsDialog.cpp" line="263"/>
<source>Current: %1</source>
<translation>Зараз: %1</translation>
</message>
@ -897,95 +878,95 @@ Y: %2</translation>
<translation>&amp;Скасувати</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>System</source>
<comment>System in context of System default</comment>
<translation>Як у системи</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<source>%1 (Game language)</source>
<comment>Next closest language compared to the Game settings</comment>
<translation>%1 (Мова гри)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>%1 (Closest to Interface)</source>
<comment>Next closest language compared to the Interface</comment>
<translation>%1 (Співпадає з інтерфейсом)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>Auto</source>
<comment>Automatic language choice.</comment>
<translation>Автоматично</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>%1 (Language priority)</source>
<comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
<translation>%1 (пріоритет мови)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation>Нова користувацька папка буде ініціалізована після перезапуску %1.</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="472"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation>Жодного</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="480"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<location filename="../OptionsDialog.cpp" line="486"/>
<location filename="../OptionsDialog.cpp" line="492"/>
<location filename="../OptionsDialog.cpp" line="496"/>
<location filename="../OptionsDialog.cpp" line="498"/>
<source>Profile: %1</source>
<translation>Профіль: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="575"/>
<location filename="../OptionsDialog.cpp" line="587"/>
<source>View %1 User Statistics Online</source>
<translation>Переглянути користувацьку статистику %1 онлайн</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Not registered</source>
<translation>Не зареєстрований</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Yes</source>
<translation>Так</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<source>No</source>
<translation>Ні</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<source>OS defined</source>
<translation>Визначається ОС</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Steam defined</source>
<translation>Визначається Steam</translation>
</message>
@ -1029,43 +1010,43 @@ Y: %2</translation>
<translation>&amp;Закрити</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../PictureDialog.cpp" line="164"/>
<location filename="../ProfileInterface.cpp" line="1609"/>
<source>Export as &amp;Picture...</source>
<translation>Експортувати як &amp;зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="166"/>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../ProfileInterface.cpp" line="1610"/>
<source>Export as &amp;Snapmatic...</source>
<translation>Експортувати як &amp;Snapmatic...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../PictureDialog.cpp" line="167"/>
<location filename="../ProfileInterface.cpp" line="1603"/>
<source>&amp;Edit Properties...</source>
<translation>&amp;Змінити властивості...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="169"/>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../ProfileInterface.cpp" line="1604"/>
<source>&amp;Overwrite Image...</source>
<translation>&amp;Перезаписати зображення...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="171"/>
<location filename="../PictureDialog.cpp" line="170"/>
<location filename="../ProfileInterface.cpp" line="1606"/>
<source>Open &amp;Map Viewer...</source>
<translation>Відкрити &amp;карту...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1607"/>
<source>Open &amp;JSON Editor...</source>
<translation>Відкрити редактор &amp;JSON...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="575"/>
<location filename="../PictureDialog.cpp" line="574"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1074,142 +1055,142 @@ Arrow Keys - Navigate</source>
Стрілки - Навігація</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Snapmatic Picture Viewer</source>
<translation>Переглядач фотографій Snapmatic</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Failed at %1</source>
<translation>Помилка на%1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="798"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="797"/>
<location filename="../SnapmaticEditor.cpp" line="247"/>
<source>No Players</source>
<translation>Гравців немає</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="774"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="773"/>
<source>No Crew</source>
<translation>Банди немає</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="660"/>
<source>Unknown Location</source>
<translation>Невідома локація</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="732"/>
<location filename="../PictureDialog.cpp" line="731"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>Режим для аватарок
Натисніть 1 для стандартного перегляду</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="99"/>
<source>Export as Picture...</source>
<translation>Експортувати як зображення...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="96"/>
<location filename="../PictureExport.cpp" line="249"/>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="262"/>
<source>Export</source>
<translation>Експорт</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="99"/>
<location filename="../PictureExport.cpp" line="103"/>
<source>JPEG Graphics (*.jpg *.jpeg)</source>
<translation>JPEG Graphics (*.jpg *.jpeg)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="104"/>
<source>Portable Network Graphics (*.png)</source>
<translation>Portable Network Graphics (*.png)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="215"/>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="221"/>
<location filename="../PictureExport.cpp" line="224"/>
<location filename="../PictureExport.cpp" line="231"/>
<source>Export as Picture</source>
<translation>Експортувати як зображення</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="298"/>
<source>Overwrite %1 with current Snapmatic picture?</source>
<translation>Перезаписати %1 поточним Snapmatic зображенням?</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="215"/>
<source>Failed to export the picture because the system occurred a write failure</source>
<translation>Не вдалося експортувати зображення, оскільки в системі виникла помилка запису</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="218"/>
<source>Failed to export the picture because the format detection failures</source>
<translation>Не вдалося експортувати зображення через помилки виявлення формату</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="221"/>
<source>Failed to export the picture because the file can&apos;t be written</source>
<translation>Не вдалося експортувати зображення, оскільки файл не може бути записаний</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="224"/>
<source>Failed to export the picture because of an unknown reason</source>
<translation>Не вдалося експортувати зображення через невідому причину</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="231"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>No valid file is selected</source>
<translation>Вибрано невірний файл</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="248"/>
<location filename="../PictureExport.cpp" line="261"/>
<source>Export as Snapmatic...</source>
<translation>Експортувати як Snapmatic...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="252"/>
<location filename="../PictureExport.cpp" line="265"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="253"/>
<location filename="../PictureExport.cpp" line="266"/>
<source>GTA V Raw Export (*.auto)</source>
<translation>GTA V RAW-експорт (*.auto)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="254"/>
<location filename="../PictureExport.cpp" line="267"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic картинки (PGTA*)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="298"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<location filename="../PictureExport.cpp" line="323"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>Export as Snapmatic</source>
<translation>Експортувати як Snapmatic</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<source>Failed to export current Snapmatic picture</source>
<translation>Не вдалося експортувати поточну фотографію Snapmatic</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="323"/>
<source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
<translation>Експортується Snapmatic до &quot;%1&quot; через використання .auto розширення.</translation>
</message>
@ -1306,16 +1287,15 @@ Press 1 for Default View</source>
<translation>&amp;Закрити</translation>
</message>
<message>
<location filename="../ExportThread.cpp" line="97"/>
<location filename="../ExportThread.cpp" line="136"/>
<location filename="../ExportThread.cpp" line="157"/>
<location filename="../ExportThread.cpp" line="102"/>
<location filename="../ExportThread.cpp" line="150"/>
<location filename="../ExportThread.cpp" line="171"/>
<source>Export file %1 of %2 files</source>
<translation>Експортується файл %1 з %2 файлів</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="109"/>
<location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="746"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="487"/>
<location filename="../ProfileInterface.cpp" line="488"/>
<location filename="../ProfileInterface.cpp" line="532"/>
@ -1337,47 +1317,40 @@ Press 1 for Default View</source>
<translation>Імпортування...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="427"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ImportDialog.cpp" line="788"/>
<source>Import</source>
<translation>Імпорт</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="120"/>
<location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="757"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="507"/>
<source>All image files (%1)</source>
<translation>Файли зображень (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../UserInterface.cpp" line="463"/>
<source>All files (**)</source>
<translation>Усі файли (**)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="769"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation>Неможливо імпортувати %1, оскільки файл не може бути відкритий</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="779"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation>Неможливо імпортувати %1, оскільки файл неможливо розібрати правильно</translation>
@ -1895,9 +1868,9 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="182"/>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../JsonEditorDialog.cpp" line="217"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source>
<translation>Властивості Snapmatic</translation>
</message>
@ -1988,9 +1961,9 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation>Змінити властивості Snapmatic не вдалося через I/O Помилку</translation>
</message>
@ -2182,8 +2155,8 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Delete picture</source>
<translation>Видалити фото</translation>
</message>
@ -2243,22 +2216,22 @@ Press 1 for Default View</source>
<translation>&amp;Зняти виділення усіх</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
<translation>Ви дійсно бажаєте видалити %1 з ваших Snapmatic фотографій?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation>Не вдалося видалити%1 з ваших Snapmatic фотографій</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation>Не вдалося сховати %1 Snapmatic у грі</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation>Не вдалося показати %1 Snapmatic у грі</translation>
</message>
@ -2421,7 +2394,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="720"/>
<location filename="../OptionsDialog.cpp" line="732"/>
<location filename="../UserInterface.cpp" line="188"/>
<location filename="../UserInterface.cpp" line="608"/>
<source>Select GTA V Folder...</source>
@ -2460,14 +2433,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ProfileInterface.cpp" line="1524"/>
<location filename="../ProfileInterface.cpp" line="1538"/>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation>Показати у грі</translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1558"/>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source>
<translation>Сховати у грі</translation>
</message>

Binary file not shown.

View File

@ -175,66 +175,47 @@ Pictures and Savegames</source>
<context>
<name>ImageEditorDialog</name>
<message>
<location filename="../ImageEditorDialog.ui" line="14"/>
<location filename="../ImportDialog.cpp" line="639"/>
<location filename="../ImportDialog.cpp" line="640"/>
<source>Overwrite Image...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="59"/>
<source>Import picture</source>
<translation></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="62"/>
<source>&amp;Import...</source>
<translation>(&amp;I)...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="82"/>
<location filename="../ImportDialog.cpp" line="641"/>
<location filename="../ImportDialog.cpp" line="642"/>
<source>Apply changes</source>
<translation></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="85"/>
<location filename="../ImportDialog.cpp" line="640"/>
<location filename="../ImportDialog.cpp" line="641"/>
<source>&amp;Overwrite</source>
<translation>(&amp;O)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="92"/>
<location filename="../ImportDialog.cpp" line="643"/>
<location filename="../ImportDialog.cpp" line="644"/>
<source>Discard changes</source>
<translation></translation>
</message>
<message>
<location filename="../ImageEditorDialog.ui" line="95"/>
<location filename="../ImportDialog.cpp" line="642"/>
<location filename="../ImportDialog.cpp" line="643"/>
<source>&amp;Close</source>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Snapmatic Image Editor</source>
<translation>Snapmatic </translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="193"/>
<location filename="../PictureDialog.cpp" line="1006"/>
<location filename="../SnapmaticWidget.cpp" line="376"/>
<location filename="../PictureDialog.cpp" line="1005"/>
<location filename="../SnapmaticWidget.cpp" line="375"/>
<source>Patching of Snapmatic Image failed because of I/O Error</source>
<translation>I/O Snapmatic </translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="200"/>
<location filename="../PictureDialog.cpp" line="1030"/>
<location filename="../SnapmaticWidget.cpp" line="400"/>
<location filename="../PictureDialog.cpp" line="1029"/>
<location filename="../SnapmaticWidget.cpp" line="399"/>
<source>Patching of Snapmatic Image failed because of Image Error</source>
<translation>Snapmatic </translation>
</message>
@ -276,7 +257,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="150"/>
<location filename="../ImportDialog.cpp" line="87"/>
<location filename="../ImportDialog.cpp" line="315"/>
<location filename="../ImportDialog.cpp" line="727"/>
<location filename="../ImportDialog.cpp" line="728"/>
<source>Background Colour: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</source>
<translation>: &lt;span style=&quot;color: %1&quot;&gt;%1&lt;/span&gt;</translation>
</message>
@ -295,7 +276,7 @@ Pictures and Savegames</source>
<location filename="../ImportDialog.ui" line="203"/>
<location filename="../ImportDialog.cpp" line="88"/>
<location filename="../ImportDialog.cpp" line="323"/>
<location filename="../ImportDialog.cpp" line="807"/>
<location filename="../ImportDialog.cpp" line="808"/>
<source>Background Image:</source>
<translation>:</translation>
</message>
@ -455,24 +436,24 @@ Pictures and Savegames</source>
<translation>...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Snapmatic Avatar Zone</source>
<translation>Snapmatic </translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="674"/>
<location filename="../ImportDialog.cpp" line="675"/>
<source>Are you sure to use a square image outside of the Avatar Zone?
When you want to use it as Avatar the image will be detached!</source>
<translation>使? !</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="723"/>
<location filename="../ImportDialog.cpp" line="724"/>
<source>Select Colour...</source>
<translation>...</translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="318"/>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>Background Image: %1</source>
<translation>: %1</translation>
</message>
@ -483,7 +464,7 @@ When you want to use it as Avatar the image will be detached!</source>
<translation></translation>
</message>
<message>
<location filename="../ImportDialog.cpp" line="792"/>
<location filename="../ImportDialog.cpp" line="793"/>
<source>File</source>
<comment>Background Image: File</comment>
<translation></translation>
@ -734,26 +715,26 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="399"/>
<location filename="../OptionsDialog.ui" line="422"/>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Found: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="406"/>
<location filename="../OptionsDialog.ui" line="429"/>
<location filename="../OptionsDialog.cpp" line="616"/>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="645"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="644"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<location filename="../OptionsDialog.cpp" line="665"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Language: %1</source>
<translation>: %1</translation>
</message>
@ -774,7 +755,7 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="465"/>
<location filename="../OptionsDialog.cpp" line="574"/>
<location filename="../OptionsDialog.cpp" line="586"/>
<source>Participate in %1 User Statistics</source>
<translation> %1 使</translation>
</message>
@ -810,8 +791,8 @@ Y: %2</translation>
</message>
<message>
<location filename="../OptionsDialog.ui" line="554"/>
<location filename="../OptionsDialog.cpp" line="590"/>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="602"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Participation ID: %1</source>
<translation> ID: %1</translation>
</message>
@ -833,8 +814,8 @@ Y: %2</translation>
<message>
<location filename="../OptionsDialog.ui" line="611"/>
<location filename="../OptionsDialog.ui" line="633"/>
<location filename="../OptionsDialog.cpp" line="202"/>
<location filename="../OptionsDialog.cpp" line="251"/>
<location filename="../OptionsDialog.cpp" line="214"/>
<location filename="../OptionsDialog.cpp" line="263"/>
<source>Current: %1</source>
<translation>: %1</translation>
</message>
@ -891,95 +872,95 @@ Y: %2</translation>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>System</source>
<comment>System in context of System default</comment>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>%1 (Closest to Interface)</source>
<comment>Next closest language compared to the Interface</comment>
<translation>%1 ()</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="164"/>
<location filename="../OptionsDialog.cpp" line="167"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<location filename="../OptionsDialog.cpp" line="176"/>
<location filename="../OptionsDialog.cpp" line="179"/>
<source>Auto</source>
<comment>Automatic language choice.</comment>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="154"/>
<location filename="../OptionsDialog.cpp" line="166"/>
<source>%1 (Language priority)</source>
<comment>First language a person can talk with a different person/application. &quot;Native&quot; or &quot;Not Native&quot;.</comment>
<translation>%1 ()</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="160"/>
<location filename="../OptionsDialog.cpp" line="172"/>
<source>%1 (Game language)</source>
<comment>Next closest language compared to the Game settings</comment>
<translation>%1 ()</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>%1</source>
<comment>%1</comment>
<translation>%1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="462"/>
<location filename="../OptionsDialog.cpp" line="474"/>
<source>The new Custom Folder will initialise after you restart %1.</source>
<translation> %1 .</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="472"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<source>No Profile</source>
<comment>No Profile, as default</comment>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="480"/>
<location filename="../OptionsDialog.cpp" line="484"/>
<location filename="../OptionsDialog.cpp" line="486"/>
<location filename="../OptionsDialog.cpp" line="492"/>
<location filename="../OptionsDialog.cpp" line="496"/>
<location filename="../OptionsDialog.cpp" line="498"/>
<source>Profile: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="575"/>
<location filename="../OptionsDialog.cpp" line="587"/>
<source>View %1 User Statistics Online</source>
<translation> %1 使</translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="594"/>
<location filename="../OptionsDialog.cpp" line="606"/>
<source>Not registered</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="612"/>
<location filename="../OptionsDialog.cpp" line="628"/>
<location filename="../OptionsDialog.cpp" line="641"/>
<location filename="../OptionsDialog.cpp" line="642"/>
<location filename="../OptionsDialog.cpp" line="624"/>
<location filename="../OptionsDialog.cpp" line="640"/>
<location filename="../OptionsDialog.cpp" line="653"/>
<location filename="../OptionsDialog.cpp" line="654"/>
<source>Yes</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="613"/>
<location filename="../OptionsDialog.cpp" line="627"/>
<location filename="../OptionsDialog.cpp" line="625"/>
<location filename="../OptionsDialog.cpp" line="639"/>
<source>No</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="620"/>
<location filename="../OptionsDialog.cpp" line="649"/>
<location filename="../OptionsDialog.cpp" line="632"/>
<location filename="../OptionsDialog.cpp" line="661"/>
<source>OS defined</source>
<translation></translation>
</message>
<message>
<location filename="../OptionsDialog.cpp" line="636"/>
<location filename="../OptionsDialog.cpp" line="657"/>
<location filename="../OptionsDialog.cpp" line="648"/>
<location filename="../OptionsDialog.cpp" line="669"/>
<source>Steam defined</source>
<translation>Steam </translation>
</message>
@ -1023,43 +1004,43 @@ Y: %2</translation>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../PictureDialog.cpp" line="164"/>
<location filename="../ProfileInterface.cpp" line="1609"/>
<source>Export as &amp;Picture...</source>
<translation>(&amp;P)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="166"/>
<location filename="../PictureDialog.cpp" line="165"/>
<location filename="../ProfileInterface.cpp" line="1610"/>
<source>Export as &amp;Snapmatic...</source>
<translation> Snapmatic(&amp;S)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../PictureDialog.cpp" line="167"/>
<location filename="../ProfileInterface.cpp" line="1603"/>
<source>&amp;Edit Properties...</source>
<translation>(&amp;E) ...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="169"/>
<location filename="../PictureDialog.cpp" line="168"/>
<location filename="../ProfileInterface.cpp" line="1604"/>
<source>&amp;Overwrite Image...</source>
<translation>(&amp;O)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="171"/>
<location filename="../PictureDialog.cpp" line="170"/>
<location filename="../ProfileInterface.cpp" line="1606"/>
<source>Open &amp;Map Viewer...</source>
<translation>(&amp;M)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="173"/>
<location filename="../PictureDialog.cpp" line="172"/>
<location filename="../ProfileInterface.cpp" line="1607"/>
<source>Open &amp;JSON Editor...</source>
<translation> JSON (&amp;J)...</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="575"/>
<location filename="../PictureDialog.cpp" line="574"/>
<source>Key 1 - Avatar Preview Mode
Key 2 - Toggle Overlay
Arrow Keys - Navigate</source>
@ -1068,142 +1049,142 @@ Arrow Keys - Navigate</source>
- </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Snapmatic Picture Viewer</source>
<translation>Snapmatic </translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="636"/>
<location filename="../PictureDialog.cpp" line="662"/>
<location filename="../PictureDialog.cpp" line="635"/>
<location filename="../PictureDialog.cpp" line="661"/>
<source>Failed at %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="798"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="797"/>
<location filename="../SnapmaticEditor.cpp" line="247"/>
<source>No Players</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="774"/>
<location filename="../PictureDialog.cpp" line="660"/>
<location filename="../PictureDialog.cpp" line="773"/>
<source>No Crew</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="661"/>
<location filename="../PictureDialog.cpp" line="660"/>
<source>Unknown Location</source>
<translation></translation>
</message>
<message>
<location filename="../PictureDialog.cpp" line="732"/>
<location filename="../PictureDialog.cpp" line="731"/>
<source>Avatar Preview Mode
Press 1 for Default View</source>
<translation>
1 </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="95"/>
<location filename="../PictureExport.cpp" line="99"/>
<source>Export as Picture...</source>
<translation>...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="96"/>
<location filename="../PictureExport.cpp" line="249"/>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="262"/>
<source>Export</source>
<translation></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="99"/>
<location filename="../PictureExport.cpp" line="103"/>
<source>JPEG Graphics (*.jpg *.jpeg)</source>
<translation>JPEG (*.jpg *.jpeg)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="100"/>
<location filename="../PictureExport.cpp" line="104"/>
<source>Portable Network Graphics (*.png)</source>
<translation> (*.png)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="215"/>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="221"/>
<location filename="../PictureExport.cpp" line="224"/>
<location filename="../PictureExport.cpp" line="231"/>
<source>Export as Picture</source>
<translation></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="150"/>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="154"/>
<location filename="../PictureExport.cpp" line="298"/>
<source>Overwrite %1 with current Snapmatic picture?</source>
<translation> Snapmatic %1 ?</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="202"/>
<location filename="../PictureExport.cpp" line="215"/>
<source>Failed to export the picture because the system occurred a write failure</source>
<translation></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="205"/>
<location filename="../PictureExport.cpp" line="218"/>
<source>Failed to export the picture because the format detection failures</source>
<translation></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="208"/>
<location filename="../PictureExport.cpp" line="221"/>
<source>Failed to export the picture because the file can&apos;t be written</source>
<translation></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="211"/>
<location filename="../PictureExport.cpp" line="224"/>
<source>Failed to export the picture because of an unknown reason</source>
<translation></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="218"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="231"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>No valid file is selected</source>
<translation></translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="248"/>
<location filename="../PictureExport.cpp" line="261"/>
<source>Export as Snapmatic...</source>
<translation> Snapmatic...</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="252"/>
<location filename="../PictureExport.cpp" line="265"/>
<source>GTA V Export (*.g5e)</source>
<translation>GTA V Export (*.g5e)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="253"/>
<location filename="../PictureExport.cpp" line="266"/>
<source>GTA V Raw Export (*.auto)</source>
<translation>GTA V Raw Export (*.auto)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="254"/>
<location filename="../PictureExport.cpp" line="267"/>
<source>Snapmatic pictures (PGTA*)</source>
<translation>Snapmatic (PGTA*)</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="285"/>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="316"/>
<location filename="../PictureExport.cpp" line="298"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<location filename="../PictureExport.cpp" line="323"/>
<location filename="../PictureExport.cpp" line="329"/>
<source>Export as Snapmatic</source>
<translation> Snapmatic</translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="296"/>
<location filename="../PictureExport.cpp" line="305"/>
<location filename="../PictureExport.cpp" line="309"/>
<location filename="../PictureExport.cpp" line="318"/>
<source>Failed to export current Snapmatic picture</source>
<translation> Snapmatic </translation>
</message>
<message>
<location filename="../PictureExport.cpp" line="310"/>
<location filename="../PictureExport.cpp" line="323"/>
<source>Exported Snapmatic to &quot;%1&quot; because of using the .auto extension.</source>
<translation>使 .auto Snapmatic &quot;%1&quot;.</translation>
</message>
@ -1300,16 +1281,15 @@ Press 1 for Default View</source>
<translation>(&amp;C)</translation>
</message>
<message>
<location filename="../ExportThread.cpp" line="97"/>
<location filename="../ExportThread.cpp" line="136"/>
<location filename="../ExportThread.cpp" line="157"/>
<location filename="../ExportThread.cpp" line="102"/>
<location filename="../ExportThread.cpp" line="150"/>
<location filename="../ExportThread.cpp" line="171"/>
<source>Export file %1 of %2 files</source>
<translation> %1 %2 </translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="109"/>
<location filename="../ImportDialog.cpp" line="426"/>
<location filename="../ImportDialog.cpp" line="746"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ProfileInterface.cpp" line="487"/>
<location filename="../ProfileInterface.cpp" line="488"/>
<location filename="../ProfileInterface.cpp" line="532"/>
@ -1331,47 +1311,40 @@ Press 1 for Default View</source>
<translation>...</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="110"/>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="427"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="747"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="748"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ImportDialog.cpp" line="788"/>
<source>Import</source>
<translation></translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="120"/>
<location filename="../ImportDialog.cpp" line="437"/>
<location filename="../ImportDialog.cpp" line="757"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ProfileInterface.cpp" line="507"/>
<source>All image files (%1)</source>
<translation> (%1)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="121"/>
<location filename="../ImportDialog.cpp" line="438"/>
<location filename="../ImportDialog.cpp" line="758"/>
<location filename="../ImportDialog.cpp" line="759"/>
<location filename="../ProfileInterface.cpp" line="508"/>
<location filename="../UserInterface.cpp" line="463"/>
<source>All files (**)</source>
<translation> (**)</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="141"/>
<location filename="../ImportDialog.cpp" line="458"/>
<location filename="../ImportDialog.cpp" line="778"/>
<location filename="../ImportDialog.cpp" line="779"/>
<location filename="../ProfileInterface.cpp" line="769"/>
<source>Can&apos;t import %1 because file can&apos;t be open</source>
<translation> %1</translation>
</message>
<message>
<location filename="../ImageEditorDialog.cpp" line="150"/>
<location filename="../ImportDialog.cpp" line="467"/>
<location filename="../ImportDialog.cpp" line="787"/>
<location filename="../ImportDialog.cpp" line="788"/>
<location filename="../ProfileInterface.cpp" line="779"/>
<source>Can&apos;t import %1 because file can&apos;t be parsed properly</source>
<translation> %1</translation>
@ -1885,9 +1858,9 @@ Press 1 for Default View</source>
<location filename="../JsonEditorDialog.cpp" line="182"/>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../JsonEditorDialog.cpp" line="217"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Snapmatic Properties</source>
<translation>Snapmatic </translation>
</message>
@ -1978,9 +1951,9 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../JsonEditorDialog.cpp" line="188"/>
<location filename="../PictureDialog.cpp" line="921"/>
<location filename="../PictureDialog.cpp" line="920"/>
<location filename="../SnapmaticEditor.cpp" line="334"/>
<location filename="../SnapmaticWidget.cpp" line="434"/>
<location filename="../SnapmaticWidget.cpp" line="433"/>
<source>Patching of Snapmatic Properties failed because of I/O Error</source>
<translation> Snapmatic </translation>
</message>
@ -2172,8 +2145,8 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../SnapmaticWidget.ui" line="152"/>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Delete picture</source>
<translation></translation>
</message>
@ -2233,22 +2206,22 @@ Press 1 for Default View</source>
<translation>(&amp;D)</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="171"/>
<location filename="../SnapmaticWidget.cpp" line="170"/>
<source>Are you sure to delete %1 from your Snapmatic pictures?</source>
<translation>Snapmatic %1 ?</translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="197"/>
<location filename="../SnapmaticWidget.cpp" line="196"/>
<source>Failed at deleting %1 from your Snapmatic pictures</source>
<translation> Snapmatic %1 </translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Failed to hide %1 In-game from your Snapmatic pictures</source>
<translation> %1 </translation>
</message>
<message>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Failed to show %1 In-game from your Snapmatic pictures</source>
<translation> %1 </translation>
</message>
@ -2410,7 +2383,7 @@ Press 1 for Default View</source>
</message>
<message>
<location filename="../UserInterface.ui" line="322"/>
<location filename="../OptionsDialog.cpp" line="720"/>
<location filename="../OptionsDialog.cpp" line="732"/>
<location filename="../UserInterface.cpp" line="188"/>
<location filename="../UserInterface.cpp" line="608"/>
<source>Select GTA V Folder...</source>
@ -2449,14 +2422,14 @@ Press 1 for Default View</source>
<message>
<location filename="../ProfileInterface.cpp" line="1524"/>
<location filename="../ProfileInterface.cpp" line="1538"/>
<location filename="../SnapmaticWidget.cpp" line="329"/>
<location filename="../SnapmaticWidget.cpp" line="328"/>
<source>Show In-game</source>
<translation></translation>
</message>
<message>
<location filename="../ProfileInterface.cpp" line="1558"/>
<location filename="../ProfileInterface.cpp" line="1572"/>
<location filename="../SnapmaticWidget.cpp" line="321"/>
<location filename="../SnapmaticWidget.cpp" line="320"/>
<source>Hide In-game</source>
<translation></translation>
</message>