gta5view 1.9.0 release
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Syping 2020-11-30 13:19:42 +01:00
parent 9adc8d9650
commit 5dbc06f393
32 changed files with 229 additions and 273 deletions

View File

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

View File

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

View File

@ -2,11 +2,11 @@ kind: pipeline
type: docker type: docker
environment: environment:
BUILD_TYPE: "DEV" BUILD_TYPE: "REL"
steps: steps:
- name: Windows Installer - name: Windows Installer
image: sypingauto/gta5view-build:1.8-shared image: sypingauto/gta5view-build:1.9-shared
environment: environment:
BUILD_SCRIPT: "wininstall_build.sh" BUILD_SCRIPT: "wininstall_build.sh"
QT_SELECT: "qt5-x86_64-w64-mingw32" QT_SELECT: "qt5-x86_64-w64-mingw32"
@ -18,7 +18,7 @@ steps:
- name: gta5view - name: gta5view
path: /srv/gta5view path: /srv/gta5view
- name: Windows Portable - name: Windows Portable
image: sypingauto/gta5view-build:1.8-static image: sypingauto/gta5view-build:1.9-static
environment: environment:
BUILD_SCRIPT: "windows_build.sh" BUILD_SCRIPT: "windows_build.sh"
QT_SELECT: "qt5-x86_64-w64-mingw32" QT_SELECT: "qt5-x86_64-w64-mingw32"

View File

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

View File

@ -3,12 +3,12 @@ sudo: required
language: cpp language: cpp
service: services:
- docker - docker
env: env:
global: global:
- BUILD_TYPE=DEV - BUILD_TYPE=REL
matrix: matrix:
include: include:
@ -37,6 +37,7 @@ matrix:
- QT_SELECT=qt5-x86_64-w64-mingw32 - QT_SELECT=qt5-x86_64-w64-mingw32
- RELEASE_LABEL="Windows 64-Bit Installer" - RELEASE_LABEL="Windows 64-Bit Installer"
- os: osx - os: osx
osx_image: xcode10.3
env: env:
- BUILD_SCRIPT=osx_ci.sh - BUILD_SCRIPT=osx_ci.sh
- RELEASE_LABEL="Mac OS X 64-Bit Disk Image" - RELEASE_LABEL="Mac OS X 64-Bit Disk Image"

View File

@ -32,45 +32,42 @@ AboutDialog::AboutDialog(QWidget *parent) :
setWindowFlags(windowFlags()^Qt::WindowContextHelpButtonHint); setWindowFlags(windowFlags()^Qt::WindowContextHelpButtonHint);
// Build Strings // Build Strings
QString appVersion = qApp->applicationVersion(); const QString appVersion = QApplication::applicationVersion();
QString buildType = tr(GTA5SYNC_BUILDTYPE); QString buildType = tr(GTA5SYNC_BUILDTYPE);
buildType.replace("_", " "); buildType.replace("_", " ");
QString projectBuild = AppEnv::getBuildDateTime(); const QString projectBuild = AppEnv::getBuildDateTime();
QString buildStr = GTA5SYNC_BUILDSTRING; const QString buildStr = GTA5SYNC_BUILDSTRING;
#ifndef GTA5SYNC_BUILDTYPE_REL #ifndef GTA5SYNC_BUILDTYPE_REL
#ifdef GTA5SYNC_COMMIT #ifdef GTA5SYNC_COMMIT
if (!appVersion.contains("-")) { appVersion = appVersion % "-" % GTA5SYNC_COMMIT; } if (!appVersion.contains("-"))
appVersion = appVersion % "-" % GTA5SYNC_COMMIT;
#endif #endif
#endif #endif
// Translator Comments // Translator Comments
//: Translated by translator, example Translated by Syping //: Translated by translator, example Translated by Syping
QString translatedByStr = tr("Translated by %1"); const QString translatedByStr = tr("Translated by %1");
//: Insert your name here and profile here in following scheme, First Translator,First Profile\\nSecond Translator\\nThird Translator,Second Profile //: Insert your name here and profile here in following scheme, First Translator,First Profile\\nSecond Translator\\nThird Translator,Second Profile
QString translatorVal = tr("TRANSLATOR"); const QString translatorVal = tr("TRANSLATOR");
QStringList translatorContent; QStringList translatorContent;
if (translatorVal != "TRANSLATOR") if (translatorVal != "TRANSLATOR") {
{
const QStringList translatorList = translatorVal.split('\n'); const QStringList translatorList = translatorVal.split('\n');
for (const QString &translatorStr : translatorList) for (const QString &translatorStr : translatorList) {
{
QStringList translatorStrList = translatorStr.split(','); QStringList translatorStrList = translatorStr.split(',');
QString translatorName = translatorStrList.at(0); const QString translatorName = translatorStrList.at(0);
translatorStrList.removeFirst(); translatorStrList.removeFirst();
QString translatorProfile = translatorStrList.join(QString()); QString translatorProfile = translatorStrList.join(QString());
if (!translatorProfile.isEmpty()) if (!translatorProfile.isEmpty()) {
{
translatorContent += QString("<a href=\"%1\">%2</a>").arg(translatorProfile, translatorName); translatorContent += QString("<a href=\"%1\">%2</a>").arg(translatorProfile, translatorName);
} }
else else {
{
translatorContent += translatorName; translatorContent += translatorName;
} }
} }
} }
// Project Description // Project Description
QString projectDes = tr("A project for viewing Grand Theft Auto V Snapmatic<br/>\nPictures and Savegames"); const QString projectDes = tr("A project for viewing Grand Theft Auto V Snapmatic<br/>\nPictures and Savegames");
// Copyright Description // Copyright Description
QString copyrightDes1 = tr("Copyright &copy; <a href=\"%1\">%2</a> %3"); QString copyrightDes1 = tr("Copyright &copy; <a href=\"%1\">%2</a> %3");
@ -78,40 +75,34 @@ AboutDialog::AboutDialog(QWidget *parent) :
QString copyrightDes2 = tr("%1 is licensed under <a href=\"https://www.gnu.org/licenses/gpl-3.0.html#content\">GNU GPLv3</a>"); QString copyrightDes2 = tr("%1 is licensed under <a href=\"https://www.gnu.org/licenses/gpl-3.0.html#content\">GNU GPLv3</a>");
copyrightDes2 = copyrightDes2.arg(GTA5SYNC_APPSTR); copyrightDes2 = copyrightDes2.arg(GTA5SYNC_APPSTR);
QString copyrightDesA; QString copyrightDesA;
if (!translatorContent.isEmpty()) if (!translatorContent.isEmpty()) {
{
copyrightDesA = copyrightDes1 % "<br/>" % translatedByStr.arg(translatorContent.join(", ")) % "<br/>" % copyrightDes2; copyrightDesA = copyrightDes1 % "<br/>" % translatedByStr.arg(translatorContent.join(", ")) % "<br/>" % copyrightDes2;
} }
else else {
{
copyrightDesA = copyrightDes1 % "<br/>" % copyrightDes2; copyrightDesA = copyrightDes1 % "<br/>" % copyrightDes2;
} }
// Setup User Interface // Setup User Interface
ui->setupUi(this); ui->setupUi(this);
aboutStr = ui->labAbout->text(); aboutStr = ui->labAbout->text();
titleStr = this->windowTitle(); titleStr = windowTitle();
ui->labAbout->setText(aboutStr.arg(GTA5SYNC_APPSTR, projectDes, appVersion % " (" % buildType % ")", projectBuild, buildStr, qVersion(), copyrightDesA)); ui->labAbout->setText(aboutStr.arg(GTA5SYNC_APPSTR, projectDes, appVersion % " (" % buildType % ")", projectBuild, buildStr, qVersion(), copyrightDesA));
this->setWindowTitle(titleStr.arg(GTA5SYNC_APPSTR)); setWindowTitle(titleStr.arg(GTA5SYNC_APPSTR));
// Set Icon for Close Button // Set Icon for Close Button
if (QIcon::hasThemeIcon("dialog-close")) if (QIcon::hasThemeIcon("dialog-close")) {
{
ui->cmdClose->setIcon(QIcon::fromTheme("dialog-close")); ui->cmdClose->setIcon(QIcon::fromTheme("dialog-close"));
} }
else if (QIcon::hasThemeIcon("gtk-close")) else if (QIcon::hasThemeIcon("gtk-close")) {
{
ui->cmdClose->setIcon(QIcon::fromTheme("gtk-close")); ui->cmdClose->setIcon(QIcon::fromTheme("gtk-close"));
} }
// DPI calculation // DPI calculation
qreal screenRatio = AppEnv::screenRatio(); qreal screenRatio = AppEnv::screenRatio();
if (!translatorContent.isEmpty()) if (!translatorContent.isEmpty()) {
{
resize(375 * screenRatio, 270 * screenRatio); resize(375 * screenRatio, 270 * screenRatio);
} }
else else {
{
resize(375 * screenRatio, 260 * screenRatio); resize(375 * screenRatio, 260 * screenRatio);
} }
} }
@ -123,13 +114,11 @@ AboutDialog::~AboutDialog()
void AboutDialog::on_labAbout_linkActivated(const QString &link) void AboutDialog::on_labAbout_linkActivated(const QString &link)
{ {
if (link.left(12) == "g5e://about?") if (link.left(12) == "g5e://about?") {
{
QStringList aboutStrList = QString(link).remove(0, 12).split(":"); QStringList aboutStrList = QString(link).remove(0, 12).split(":");
QMessageBox::information(this, QString::fromUtf8(QByteArray::fromBase64(aboutStrList.at(0).toUtf8())), QString::fromUtf8(QByteArray::fromBase64(aboutStrList.at(1).toUtf8()))); QMessageBox::information(this, QString::fromUtf8(QByteArray::fromBase64(aboutStrList.at(0).toUtf8())), QString::fromUtf8(QByteArray::fromBase64(aboutStrList.at(1).toUtf8())));
} }
else else {
{
QDesktopServices::openUrl(QUrl(link)); QDesktopServices::openUrl(QUrl(link));
} }
} }

View File

@ -26,7 +26,7 @@
</sizepolicy> </sizepolicy>
</property> </property>
<property name="text"> <property name="text">
<string>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <string>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;

View File

@ -111,10 +111,10 @@
</sizepolicy> </sizepolicy>
</property> </property>
<property name="text"> <property name="text">
<string>&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt; <string>&lt;span style=&quot;font-weight:600&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Created: &lt;/span&gt;%8</string> &lt;span style=&quot;font-weight:600&quot;&gt;Created: &lt;/span&gt;%8</string>
</property> </property>
<property name="wordWrap"> <property name="wordWrap">
<bool>true</bool> <bool>true</bool>

View File

@ -25,9 +25,6 @@
#include <QKeyEvent> #include <QKeyEvent>
#include <QPixmap> #include <QPixmap>
#include <QEvent> #include <QEvent>
#if QT_VERSION < 0x060000
#include <QDesktopWidget>
#endif
PictureWidget::PictureWidget(QWidget *parent) : QDialog(parent) PictureWidget::PictureWidget(QWidget *parent) : QDialog(parent)
{ {
@ -46,9 +43,6 @@ PictureWidget::PictureWidget(QWidget *parent) : QDialog(parent)
QObject::connect(pictureLabel, SIGNAL(mouseDoubleClicked(Qt::MouseButton)), this, SLOT(pictureDoubleClicked(Qt::MouseButton))); QObject::connect(pictureLabel, SIGNAL(mouseDoubleClicked(Qt::MouseButton)), this, SLOT(pictureDoubleClicked(Qt::MouseButton)));
QObject::connect(pictureLabel, SIGNAL(customContextMenuRequested(QPoint)), parent, SLOT(exportCustomContextMenuRequested(QPoint))); QObject::connect(pictureLabel, SIGNAL(customContextMenuRequested(QPoint)), parent, SLOT(exportCustomContextMenuRequested(QPoint)));
#if QT_VERSION < 0x060000
QObject::connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(updateWindowSize(int)));
#endif
setLayout(widgetLayout); setLayout(widgetLayout);
} }
@ -106,28 +100,3 @@ void PictureWidget::setImage(QImage image_)
#endif #endif
pictureLabel->setPixmap(pixmap); pictureLabel->setPixmap(pixmap);
} }
void PictureWidget::updateWindowSize(int screenID)
{
#if QT_VERSION >= 0x060000
Q_UNUSED(screenID)
const qreal screenRatioPR = AppEnv::screenRatioPR();
QRect desktopRect = QApplication::screenAt(pos())->geometry();
move(desktopRect.x(), desktopRect.y());
resize(desktopRect.width(), desktopRect.height());
showFullScreen();
QPixmap pixmap = QPixmap::fromImage(image.scaled(geometry().width() * screenRatioPR, geometry().height() * screenRatioPR, Qt::KeepAspectRatio, Qt::SmoothTransformation));
#if QT_VERSION >= 0x050600
pixmap.setDevicePixelRatio(screenRatioPR);
#endif
pictureLabel->setPixmap(pixmap);
#else
if (screenID == QApplication::desktop()->screenNumber(this)) {
QRect desktopRect = QApplication::desktop()->screenGeometry(this);
move(desktopRect.x(), desktopRect.y());
resize(desktopRect.width(), desktopRect.height());
showFullScreen();
pictureLabel->setPixmap(QPixmap::fromImage(image.scaled(desktopRect.width(), desktopRect.height(), Qt::KeepAspectRatio, Qt::SmoothTransformation)));
}
#endif
}

View File

@ -46,7 +46,6 @@ private:
private slots: private slots:
void pictureDoubleClicked(Qt::MouseButton button); void pictureDoubleClicked(Qt::MouseButton button);
void updateWindowSize(int screenID);
signals: signals:
void nextPictureRequested(); void nextPictureRequested();

View File

@ -15,8 +15,8 @@ Grand Theft Auto V Savegame and Snapmatic viewer/editor
# Note: Install Docker Community Edition and Git before continuing # Note: Install Docker Community Edition and Git before continuing
git clone https://gitlab.com/Syping/gta5view && cd gta5view git clone https://gitlab.com/Syping/gta5view && cd gta5view
docker pull sypingauto/gta5view-build:1.8-static docker pull sypingauto/gta5view-build:1.9-static
docker run --rm -v ${PWD}:/gta5view -it sypingauto/gta5view-build:1.8-static docker run --rm -v ${PWD}:/gta5view -it sypingauto/gta5view-build:1.9-static
cd /gta5view && mkdir -p build && cd build cd /gta5view && mkdir -p build && cd build
mingw64-qt-cmake ../ mingw64-qt-cmake ../
make -j $(nproc --all) make -j $(nproc --all)
@ -47,7 +47,3 @@ Grand Theft Auto V Savegame and Snapmatic viewer/editor
cmake ../ cmake ../
make -j $(nproc --all) make -j $(nproc --all)
sudo make install sudo make install
#### Download Binary Releases
Go to [gta5view release](https://github.com/SyDevTeam/gta5view/releases) and download the .exe file for Windows, .deb file for Debian/Ubuntu and .dmg file for OS X.

View File

@ -7,7 +7,7 @@
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>400</width> <width>400</width>
<height>105</height> <height>112</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
@ -20,7 +20,7 @@
<item> <item>
<widget class="QLabel" name="labSavegameText"> <widget class="QLabel" name="labSavegameText">
<property name="text"> <property name="text">
<string>&lt;span style=&quot; font-weight:600;&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</string> <string>&lt;span style=&quot;font-weight:600&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</string>
</property> </property>
<property name="alignment"> <property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set> <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>

View File

@ -28,7 +28,7 @@
#endif #endif
#ifndef GTA5SYNC_APPVENDORLINK #ifndef GTA5SYNC_APPVENDORLINK
#define GTA5SYNC_APPVENDORLINK "g5e://about?U3lwaW5n:R2l0TGFiOiA8YSBocmVmPSJodHRwczovL2dpdGxhYi5jb20vU3lwaW5nIj5TeXBpbmc8L2E+PGJyLz5HaXRIdWI6IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS9TeXBpbmciPlN5cGluZzwvYT48YnIvPlNvY2lhbCBDbHViOiA8YSBocmVmPSJodHRwczovL3NvY2lhbGNsdWIucm9ja3N0YXJnYW1lcy5jb20vbWVtYmVyL1N5cGluZy80NjMwMzA1NiI+U3lwaW5nPC9hPg==" #define GTA5SYNC_APPVENDORLINK "g5e://about?U3lwaW5n:R2l0TGFiOiA8YSBocmVmPSJodHRwczovL2dpdGxhYi5jb20vU3lwaW5nIj5TeXBpbmc8L2E+PGJyLz5HaXRIdWI6IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS9TeXBpbmciPlN5cGluZzwvYT48YnIvPlNvY2lhbCBDbHViOiA8YSBocmVmPSJodHRwczovL3NvY2lhbGNsdWIucm9ja3N0YXJnYW1lcy5jb20vbWVtYmVyL1N5cGluZy80NjMwMzA1NiI+U3lwaW5nPC9hPg"
#endif #endif
#ifndef GTA5SYNC_APPSTR #ifndef GTA5SYNC_APPSTR

View File

@ -32,7 +32,8 @@
<developer_name>Syping</developer_name> <developer_name>Syping</developer_name>
<releases> <releases>
<release date="2020-10-11" version="1.8.0" /> <release date="2020-11-30" version="1.9.0"/>
<release date="2020-10-11" version="1.8.0"/>
</releases> </releases>
<screenshots> <screenshots>

View File

@ -10,7 +10,7 @@
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="29"/> <location filename="../AboutDialog.ui" line="29"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -28,30 +28,30 @@ Running with Qt %6&lt;br/&gt;
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="48"/> <location filename="../AboutDialog.cpp" line="49"/>
<source>Translated by %1</source> <source>Translated by %1</source>
<extracomment>Translated by translator, example Translated by Syping</extracomment> <extracomment>Translated by translator, example Translated by Syping</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="50"/> <location filename="../AboutDialog.cpp" line="51"/>
<source>TRANSLATOR</source> <source>TRANSLATOR</source>
<extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment> <extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="73"/> <location filename="../AboutDialog.cpp" line="70"/>
<source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt; <source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt;
Pictures and Savegames</source> Pictures and Savegames</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="76"/> <location filename="../AboutDialog.cpp" line="73"/>
<source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source> <source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="78"/> <location filename="../AboutDialog.cpp" line="75"/>
<source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source> <source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -985,10 +985,10 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="114"/> <location filename="../PictureDialog.ui" line="114"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Created: &lt;/span&gt;%8</source> &lt;span style=&quot;font-weight:600&quot;&gt;Created: &lt;/span&gt;%8</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
@ -1656,7 +1656,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="23"/> <location filename="../SavegameDialog.ui" line="23"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source> <source>&lt;span style=&quot;font-weight:600&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>

Binary file not shown.

View File

@ -10,7 +10,7 @@
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="29"/> <location filename="../AboutDialog.ui" line="29"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -20,7 +20,7 @@ Built with Qt %5&lt;br/&gt;
Running with Qt %6&lt;br/&gt; Running with Qt %6&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%7</source> %7</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -37,31 +37,31 @@ Läuft auf Qt %6&lt;br/&gt;
<translation>S&amp;chließen</translation> <translation>S&amp;chließen</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="48"/> <location filename="../AboutDialog.cpp" line="49"/>
<source>Translated by %1</source> <source>Translated by %1</source>
<extracomment>Translated by translator, example Translated by Syping</extracomment> <extracomment>Translated by translator, example Translated by Syping</extracomment>
<translation>Übersetzt von %1</translation> <translation>Übersetzt von %1</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="50"/> <location filename="../AboutDialog.cpp" line="51"/>
<source>TRANSLATOR</source> <source>TRANSLATOR</source>
<extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment> <extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment>
<translation>Syping,g5e://about?U3lwaW5n:R2l0TGFiOiA8YSBocmVmPSJodHRwczovL2dpdGxhYi5jb20vU3lwaW5nIj5TeXBpbmc8L2E+PGJyLz5HaXRIdWI6IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS9TeXBpbmciPlN5cGluZzwvYT48YnIvPlNvY2lhbCBDbHViOiA8YSBocmVmPSJodHRwczovL3NvY2lhbGNsdWIucm9ja3N0YXJnYW1lcy5jb20vbWVtYmVyL1N5cGluZy80NjMwMzA1NiI+U3lwaW5nPC9hPg==</translation> <translation>Syping,g5e://about?U3lwaW5n:R2l0TGFiOiA8YSBocmVmPSJodHRwczovL2dpdGxhYi5jb20vU3lwaW5nIj5TeXBpbmc8L2E+PGJyLz5HaXRIdWI6IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS9TeXBpbmciPlN5cGluZzwvYT48YnIvPlNvY2lhbCBDbHViOiA8YSBocmVmPSJodHRwczovL3NvY2lhbGNsdWIucm9ja3N0YXJnYW1lcy5jb20vbWVtYmVyL1N5cGluZy80NjMwMzA1NiI+U3lwaW5nPC9hPg</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="73"/> <location filename="../AboutDialog.cpp" line="70"/>
<source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt; <source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt;
Pictures and Savegames</source> Pictures and Savegames</source>
<translation>Ein Projekt zum ansehen von Grand Theft Auto V&lt;br/&gt; <translation>Ein Projekt zum ansehen von Grand Theft Auto V&lt;br/&gt;
Snapmatic Bilder und Spielständen</translation> Snapmatic Bilder und Spielständen</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="76"/> <location filename="../AboutDialog.cpp" line="73"/>
<source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source> <source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source>
<translation>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation> <translation>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="78"/> <location filename="../AboutDialog.cpp" line="75"/>
<source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source> <source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation>%1 ist lizenziert unter &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation> <translation>%1 ist lizenziert unter &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message> </message>
@ -269,7 +269,7 @@ Snapmatic Bilder und Spielständen</translation>
</message> </message>
<message> <message>
<source>...</source> <source>...</source>
<translation type="vanished">...</translation> <translation type="obsolete">...</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="227"/> <location filename="../ImportDialog.ui" line="227"/>
@ -294,7 +294,7 @@ Snapmatic Bilder und Spielständen</translation>
</message> </message>
<message> <message>
<source>X</source> <source>X</source>
<translation type="vanished">X</translation> <translation type="obsolete">X</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="268"/> <location filename="../ImportDialog.ui" line="268"/>
@ -614,7 +614,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Open with Singleclick</source> <source>Open with Singleclick</source>
<translation type="vanished">Ein Klick zum öffnen</translation> <translation type="obsolete">Ein Klick zum öffnen</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="56"/> <location filename="../OptionsDialog.ui" line="56"/>
@ -623,7 +623,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Select with Singleclick</source> <source>Select with Singleclick</source>
<translation type="vanished">Ein Klick zum auswählen</translation> <translation type="obsolete">Ein Klick zum auswählen</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="66"/> <location filename="../OptionsDialog.ui" line="66"/>
@ -857,7 +857,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Always use Message Font (Windows 2003 and earlier)</source> <source>Always use Message Font (Windows 2003 and earlier)</source>
<translation type="vanished">Immer Nachrichtenschrift nutzen (Windows 2003 und früher)</translation> <translation type="obsolete">Immer Nachrichtenschrift nutzen (Windows 2003 und früher)</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="596"/> <location filename="../OptionsDialog.ui" line="596"/>
@ -1017,14 +1017,14 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="114"/> <location filename="../PictureDialog.ui" line="114"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Created: &lt;/span&gt;%8</source> &lt;span style=&quot;font-weight:600&quot;&gt;Created: &lt;/span&gt;%8</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;Titel: &lt;/span&gt;%6&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;Titel: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Standort: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Standort: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Spieler: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Spieler: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Erstellt: &lt;/span&gt;%8</translation> &lt;span style=&quot;font-weight:600&quot;&gt;Erstellt: &lt;/span&gt;%8</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="174"/> <location filename="../PictureDialog.ui" line="174"/>
@ -1699,8 +1699,8 @@ Drücke 1 für Standardmodus</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="23"/> <location filename="../SavegameDialog.ui" line="23"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source> <source>&lt;span style=&quot;font-weight:600&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;Spielstand&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation> <translation>&lt;span style=&quot;font-weight:600&quot;&gt;Spielstand&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="70"/> <location filename="../SavegameDialog.ui" line="70"/>
@ -1929,7 +1929,7 @@ Drücke 1 für Standardmodus</translation>
<message> <message>
<location filename="../SnapmaticEditor.ui" line="71"/> <location filename="../SnapmaticEditor.ui" line="71"/>
<source>Mugshot</source> <source>Mugshot</source>
<translation>Fahndungsfoto</translation> <translation>Polizeifoto</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.ui" line="94"/> <location filename="../SnapmaticEditor.ui" line="94"/>

View File

@ -10,7 +10,7 @@
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="29"/> <location filename="../AboutDialog.ui" line="29"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -28,30 +28,30 @@ Running with Qt %6&lt;br/&gt;
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="48"/> <location filename="../AboutDialog.cpp" line="49"/>
<source>Translated by %1</source> <source>Translated by %1</source>
<extracomment>Translated by translator, example Translated by Syping</extracomment> <extracomment>Translated by translator, example Translated by Syping</extracomment>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="50"/> <location filename="../AboutDialog.cpp" line="51"/>
<source>TRANSLATOR</source> <source>TRANSLATOR</source>
<extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment> <extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment>
<translation>Syping,g5e://about?U3lwaW5n:R2l0TGFiOiA8YSBocmVmPSJodHRwczovL2dpdGxhYi5jb20vU3lwaW5nIj5TeXBpbmc8L2E+PGJyLz5HaXRIdWI6IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS9TeXBpbmciPlN5cGluZzwvYT48YnIvPlNvY2lhbCBDbHViOiA8YSBocmVmPSJodHRwczovL3NvY2lhbGNsdWIucm9ja3N0YXJnYW1lcy5jb20vbWVtYmVyL1N5cGluZy80NjMwMzA1NiI+U3lwaW5nPC9hPg==</translation> <translation>Syping,g5e://about?U3lwaW5n:R2l0TGFiOiA8YSBocmVmPSJodHRwczovL2dpdGxhYi5jb20vU3lwaW5nIj5TeXBpbmc8L2E+PGJyLz5HaXRIdWI6IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmNvbS9TeXBpbmciPlN5cGluZzwvYT48YnIvPlNvY2lhbCBDbHViOiA8YSBocmVmPSJodHRwczovL3NvY2lhbGNsdWIucm9ja3N0YXJnYW1lcy5jb20vbWVtYmVyL1N5cGluZy80NjMwMzA1NiI+U3lwaW5nPC9hPg==</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="73"/> <location filename="../AboutDialog.cpp" line="70"/>
<source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt; <source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt;
Pictures and Savegames</source> Pictures and Savegames</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="76"/> <location filename="../AboutDialog.cpp" line="73"/>
<source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source> <source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="78"/> <location filename="../AboutDialog.cpp" line="75"/>
<source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source> <source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
@ -985,10 +985,10 @@ Y: %2</source>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="114"/> <location filename="../PictureDialog.ui" line="114"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Created: &lt;/span&gt;%8</source> &lt;span style=&quot;font-weight:600&quot;&gt;Created: &lt;/span&gt;%8</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>
@ -1656,7 +1656,7 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="23"/> <location filename="../SavegameDialog.ui" line="23"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source> <source>&lt;span style=&quot;font-weight:600&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source>
<translation type="unfinished"></translation> <translation type="unfinished"></translation>
</message> </message>
<message> <message>

Binary file not shown.

View File

@ -10,7 +10,7 @@
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="29"/> <location filename="../AboutDialog.ui" line="29"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -20,7 +20,7 @@ Built with Qt %5&lt;br/&gt;
Running with Qt %6&lt;br/&gt; Running with Qt %6&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%7</source> %7</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -37,31 +37,32 @@ Fonctionne avec Qt %6&lt;br/&gt;
<translation>&amp;Fermer</translation> <translation>&amp;Fermer</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="48"/> <location filename="../AboutDialog.cpp" line="49"/>
<source>Translated by %1</source> <source>Translated by %1</source>
<extracomment>Translated by translator, example Translated by Syping</extracomment> <extracomment>Translated by translator, example Translated by Syping</extracomment>
<translation>Traduit par %1</translation> <translation>Traduit par %1</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="50"/> <location filename="../AboutDialog.cpp" line="51"/>
<source>TRANSLATOR</source> <source>TRANSLATOR</source>
<extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment> <extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment>
<translation>Ganjalo,https://github.com/Ganjalo/</translation> <translation>Ganjalo,https://github.com/Ganjalo/
XeriosG,g5e://about?WGVyaW9zRw:RGlzY29yZDogWGVyaW9zRyM1MzIxPGJyLz5TdGVhbTogPGEgaHJlZj0iaHR0cHM6Ly9zdGVhbWNvbW11bml0eS5jb20vcHJvZmlsZXMvNzY1NjExOTg0MjU2NjU3MjQvIj5YZXJpb3NHPC9hPg</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="73"/> <location filename="../AboutDialog.cpp" line="70"/>
<source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt; <source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt;
Pictures and Savegames</source> Pictures and Savegames</source>
<translation>Un outil pour gérer les photos Snapmatic&lt;br/&gt; <translation>Un outil pour gérer les photos Snapmatic&lt;br/&gt;
et les fichiers de sauvegarde de Grand Theft Auto V</translation> et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="76"/> <location filename="../AboutDialog.cpp" line="73"/>
<source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source> <source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source>
<translation>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation> <translation>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="78"/> <location filename="../AboutDialog.cpp" line="75"/>
<source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source> <source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation>%1 est distribué sous license &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation> <translation>%1 est distribué sous license &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message> </message>
@ -269,7 +270,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message> </message>
<message> <message>
<source>...</source> <source>...</source>
<translation type="vanished">...</translation> <translation type="obsolete">...</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="227"/> <location filename="../ImportDialog.ui" line="227"/>
@ -289,47 +290,47 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
</message> </message>
<message> <message>
<source>X</source> <source>X</source>
<translation type="vanished">X</translation> <translation type="obsolete">X</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="268"/> <location filename="../ImportDialog.ui" line="268"/>
<source>Force Colour in Avatar Zone</source> <source>Force Colour in Avatar Zone</source>
<translation>Forcer la couleur dans la Zone d&apos;Avatar</translation> <translation>Forcer la couleur dans la zone d&apos;avatar</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="303"/> <location filename="../ImportDialog.ui" line="303"/>
<source>Advanced</source> <source>Advanced</source>
<translation type="unfinished"></translation> <translation>Avancé</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="311"/> <location filename="../ImportDialog.ui" line="311"/>
<source>Resolution:</source> <source>Resolution:</source>
<translation type="unfinished"></translation> <translation>Résolution:</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="324"/> <location filename="../ImportDialog.ui" line="324"/>
<source>Snapmatic resolution</source> <source>Snapmatic resolution</source>
<translation type="unfinished"></translation> <translation>Résolution Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="335"/> <location filename="../ImportDialog.ui" line="335"/>
<source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source> <source>Avoid compression and expand buffer instead, improves picture quality, but may break Snapmatic</source>
<translation type="unfinished"></translation> <translation>Éviter la compression et étendre la mémoire tampon à la place, améliore la qualité de l&apos;image mais peut casser Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="338"/> <location filename="../ImportDialog.ui" line="338"/>
<source>Unlimited Buffer</source> <source>Unlimited Buffer</source>
<translation type="unfinished"></translation> <translation>Mémoire tampon illimitée</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="345"/> <location filename="../ImportDialog.ui" line="345"/>
<source>Import as-is, don&apos;t change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source> <source>Import as-is, don&apos;t change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source>
<translation type="unfinished"></translation> <translation>Importer tel quel,ne changez pas du tout l&apos;image, garantie de casser Snapmatic à moins que vous ne sachiez ce que vous faites</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="348"/> <location filename="../ImportDialog.ui" line="348"/>
<source>Import as-is</source> <source>Import as-is</source>
<translation type="unfinished"></translation> <translation>Importer tel quel</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="362"/> <location filename="../ImportDialog.ui" line="362"/>
@ -359,7 +360,7 @@ et les fichiers de sauvegarde de Grand Theft Auto V</translation>
<message> <message>
<location filename="../ImportDialog.ui" line="413"/> <location filename="../ImportDialog.ui" line="413"/>
<source>&amp;Cancel</source> <source>&amp;Cancel</source>
<translation>A&amp;nnuler</translation> <translation>&amp;Annuler</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="203"/> <location filename="../ImportDialog.ui" line="203"/>
@ -492,7 +493,7 @@ Si vous l&apos;utilisez comme Avatar, l&apos;image sera détachée !</translatio
<location filename="../ImportDialog.cpp" line="735"/> <location filename="../ImportDialog.cpp" line="735"/>
<location filename="../ImportDialog.cpp" line="926"/> <location filename="../ImportDialog.cpp" line="926"/>
<source>Snapmatic Avatar Zone</source> <source>Snapmatic Avatar Zone</source>
<translation>Zone d&apos;Avatar Snapmatic</translation> <translation>Zone d&apos;avatar Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.cpp" line="781"/> <location filename="../ImportDialog.cpp" line="781"/>
@ -544,7 +545,7 @@ Si vous l&apos;utilisez comme Avatar, l&apos;image sera détachée !</translatio
<message> <message>
<location filename="../MapLocationDialog.ui" line="26"/> <location filename="../MapLocationDialog.ui" line="26"/>
<source>Snapmatic Map Viewer</source> <source>Snapmatic Map Viewer</source>
<translation>Visionneuse de Carte Snapmatic</translation> <translation>Visionneuse de carte Snapmatic</translation>
</message> </message>
<message> <message>
<location filename="../MapLocationDialog.ui" line="143"/> <location filename="../MapLocationDialog.ui" line="143"/>
@ -624,7 +625,7 @@ Y : %2</translation>
</message> </message>
<message> <message>
<source>Open with Singleclick</source> <source>Open with Singleclick</source>
<translation type="vanished">Ouvrir avec un clic</translation> <translation type="obsolete">Ouvrir avec un clic</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="56"/> <location filename="../OptionsDialog.ui" line="56"/>
@ -633,7 +634,7 @@ Y : %2</translation>
</message> </message>
<message> <message>
<source>Select with Singleclick</source> <source>Select with Singleclick</source>
<translation type="vanished">Sélectionner avec un clic</translation> <translation type="obsolete">Sélectionner avec un clic</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="66"/> <location filename="../OptionsDialog.ui" line="66"/>
@ -852,7 +853,7 @@ Y : %2</translation>
</message> </message>
<message> <message>
<source>Always use Message Font (Windows 2003 and earlier)</source> <source>Always use Message Font (Windows 2003 and earlier)</source>
<translation type="vanished">Toujours utiliser la police Message (Windows 2003 et précédent)</translation> <translation type="obsolete">Toujours utiliser la police Message (Windows 2003 et précédent)</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="596"/> <location filename="../OptionsDialog.ui" line="596"/>
@ -880,17 +881,17 @@ Y : %2</translation>
<message> <message>
<location filename="../OptionsDialog.ui" line="652"/> <location filename="../OptionsDialog.ui" line="652"/>
<source>Use Default Style (Restart)</source> <source>Use Default Style (Restart)</source>
<translation>Utiliser le Style par Défaut (démarrage requis)</translation> <translation>Utiliser le style par défaut (redémarrage requis)</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="698"/> <location filename="../OptionsDialog.ui" line="698"/>
<source>Use Default Font (Restart)</source> <source>Use Default Font (Restart)</source>
<translation type="unfinished"></translation> <translation>Utiliser la police par défaut (redémarrage requis)</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="713"/> <location filename="../OptionsDialog.ui" line="713"/>
<source>Font:</source> <source>Font:</source>
<translation type="unfinished">Police :</translation> <translation>Police :</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="786"/> <location filename="../OptionsDialog.ui" line="786"/>
@ -1017,14 +1018,14 @@ Y : %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="114"/> <location filename="../PictureDialog.ui" line="114"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Created: &lt;/span&gt;%8</source> &lt;span style=&quot;font-weight:600&quot;&gt;Created: &lt;/span&gt;%8</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;Titre : &lt;/span&gt;%6&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;Titre : &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Emplacement : &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Emplacement : &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Joueurs : &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Joueurs : &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Créé le : &lt;/span&gt;%8</translation> &lt;span style=&quot;font-weight:600&quot;&gt;Créé le : &lt;/span&gt;%8</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="174"/> <location filename="../PictureDialog.ui" line="174"/>
@ -1686,11 +1687,11 @@ Appuyer sur 1 pour le mode par défaut</translation>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<source>Font</source> <source>Font</source>
<translation type="vanished">Police</translation> <translation type="obsolete">Police</translation>
</message> </message>
<message> <message>
<source>Selected Font: %1</source> <source>Selected Font: %1</source>
<translation type="vanished">Police sélectionnée : %1</translation> <translation type="obsolete">Police sélectionnée : %1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="137"/> <location filename="../main.cpp" line="137"/>
@ -1708,8 +1709,8 @@ Appuyer sur 1 pour le mode par défaut</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="23"/> <location filename="../SavegameDialog.ui" line="23"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source> <source>&lt;span style=&quot;font-weight:600&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;Sauvegarde&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation> <translation>&lt;span style=&quot;font-weight:600&quot;&gt;Sauvegarde&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="70"/> <location filename="../SavegameDialog.ui" line="70"/>
@ -2012,7 +2013,7 @@ Appuyer sur 1 pour le mode par défaut</translation>
<message> <message>
<location filename="../SnapmaticEditor.ui" line="243"/> <location filename="../SnapmaticEditor.ui" line="243"/>
<source>&amp;Apply</source> <source>&amp;Apply</source>
<translation>A&amp;ppliquer</translation> <translation>&amp;Appliquer</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.ui" line="256"/> <location filename="../SnapmaticEditor.ui" line="256"/>

Binary file not shown.

View File

@ -10,7 +10,7 @@
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="29"/> <location filename="../AboutDialog.ui" line="29"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -20,7 +20,7 @@ Built with Qt %5&lt;br/&gt;
Running with Qt %6&lt;br/&gt; Running with Qt %6&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%7</source> %7</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -37,31 +37,31 @@ Qt로 실행 %6&lt;br/&gt;
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="48"/> <location filename="../AboutDialog.cpp" line="49"/>
<source>Translated by %1</source> <source>Translated by %1</source>
<extracomment>Translated by translator, example Translated by Syping</extracomment> <extracomment>Translated by translator, example Translated by Syping</extracomment>
<translation> %1</translation> <translation> %1</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="50"/> <location filename="../AboutDialog.cpp" line="51"/>
<source>TRANSLATOR</source> <source>TRANSLATOR</source>
<extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment> <extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment>
<translation>&lt;a href=&quot;https://steamcommunity.com/id/BLACKPINK-/&quot;&gt;앙시모사우루스&lt;/a&gt;</translation> <translation>,https://steamcommunity.com/profiles/76561198166105984/</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="73"/> <location filename="../AboutDialog.cpp" line="70"/>
<source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt; <source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt;
Pictures and Savegames</source> Pictures and Savegames</source>
<translation> GTA 5 .&lt;br/&gt; <translation> GTA 5 .&lt;br/&gt;
</translation> </translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="76"/> <location filename="../AboutDialog.cpp" line="73"/>
<source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source> <source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source>
<translation> &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation> <translation> &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="78"/> <location filename="../AboutDialog.cpp" line="75"/>
<source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source> <source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation>%1 &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt; 에 따라 라이센스가 부여됩니다</translation> <translation>%1 &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt; 에 따라 라이센스가 부여됩니다</translation>
</message> </message>
@ -269,7 +269,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<source>...</source> <source>...</source>
<translation type="vanished">...</translation> <translation type="obsolete">...</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="203"/> <location filename="../ImportDialog.ui" line="203"/>
@ -291,7 +291,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<source>X</source> <source>X</source>
<translation type="vanished">X</translation> <translation type="obsolete">X</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="268"/> <location filename="../ImportDialog.ui" line="268"/>
@ -631,7 +631,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Open with Singleclick</source> <source>Open with Singleclick</source>
<translation type="vanished"> </translation> <translation type="obsolete"> </translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="56"/> <location filename="../OptionsDialog.ui" line="56"/>
@ -640,7 +640,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Select with Singleclick</source> <source>Select with Singleclick</source>
<translation type="vanished"> </translation> <translation type="obsolete"> </translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="66"/> <location filename="../OptionsDialog.ui" line="66"/>
@ -897,7 +897,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Always use Message Font (Windows 2003 and earlier)</source> <source>Always use Message Font (Windows 2003 and earlier)</source>
<translation type="vanished"> .(Windows 2003 )</translation> <translation type="obsolete"> .(Windows 2003 )</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="786"/> <location filename="../OptionsDialog.ui" line="786"/>
@ -1031,14 +1031,14 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="114"/> <location filename="../PictureDialog.ui" line="114"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Created: &lt;/span&gt;%8</source> &lt;span style=&quot;font-weight:600&quot;&gt;Created: &lt;/span&gt;%8</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;: &lt;/span&gt;%6&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt; : &lt;/span&gt;%8</translation> &lt;span style=&quot;font-weight:600&quot;&gt; : &lt;/span&gt;%8</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="174"/> <location filename="../PictureDialog.ui" line="174"/>
@ -1705,11 +1705,11 @@ Press 1 for Default View</source>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<source>Font</source> <source>Font</source>
<translation type="vanished"></translation> <translation type="obsolete"></translation>
</message> </message>
<message> <message>
<source>Selected Font: %1</source> <source>Selected Font: %1</source>
<translation type="vanished"> : %1</translation> <translation type="obsolete"> : %1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="137"/> <location filename="../main.cpp" line="137"/>
@ -1727,8 +1727,8 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="23"/> <location filename="../SavegameDialog.ui" line="23"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source> <source>&lt;span style=&quot;font-weight:600&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt; &lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation> <translation>&lt;span style=&quot;font-weight:600&quot;&gt; &lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="70"/> <location filename="../SavegameDialog.ui" line="70"/>

Binary file not shown.

View File

@ -10,7 +10,7 @@
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="29"/> <location filename="../AboutDialog.ui" line="29"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -20,7 +20,7 @@ Built with Qt %5&lt;br/&gt;
Running with Qt %6&lt;br/&gt; Running with Qt %6&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%7</source> %7</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -37,31 +37,31 @@ Running with Qt %6&lt;br/&gt;
<translation>&amp;Закрыть</translation> <translation>&amp;Закрыть</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="48"/> <location filename="../AboutDialog.cpp" line="49"/>
<source>Translated by %1</source> <source>Translated by %1</source>
<extracomment>Translated by translator, example Translated by Syping</extracomment> <extracomment>Translated by translator, example Translated by Syping</extracomment>
<translation>Перевёл %1</translation> <translation>Перевёл %1</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="50"/> <location filename="../AboutDialog.cpp" line="51"/>
<source>TRANSLATOR</source> <source>TRANSLATOR</source>
<extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment> <extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment>
<translation>VADemon,https://github.com/VADemon/</translation> <translation>VADemon,https://github.com/VADemon/</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="73"/> <location filename="../AboutDialog.cpp" line="70"/>
<source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt; <source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt;
Pictures and Savegames</source> Pictures and Savegames</source>
<translation>Проект для просмотра Grand Theft Auto V Snapmatic&lt;br/&gt; <translation>Проект для просмотра Grand Theft Auto V Snapmatic&lt;br/&gt;
картинок и сохранений</translation> картинок и сохранений</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="76"/> <location filename="../AboutDialog.cpp" line="73"/>
<source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source> <source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source>
<translation>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation> <translation>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="78"/> <location filename="../AboutDialog.cpp" line="75"/>
<source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source> <source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation>%1 под лицензией &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation> <translation>%1 под лицензией &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message> </message>
@ -273,7 +273,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<source>...</source> <source>...</source>
<translation type="vanished">...</translation> <translation type="obsolete">...</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="227"/> <location filename="../ImportDialog.ui" line="227"/>
@ -300,7 +300,7 @@ Pictures and Savegames</source>
<source>X</source> <source>X</source>
<translatorcomment>latin X <translatorcomment>latin X
</translatorcomment> </translatorcomment>
<translation type="vanished">X</translation> <translation type="obsolete">X</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="268"/> <location filename="../ImportDialog.ui" line="268"/>
@ -621,7 +621,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Open with Singleclick</source> <source>Open with Singleclick</source>
<translation type="vanished">Открывать одним щелчком</translation> <translation type="obsolete">Открывать одним щелчком</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="56"/> <location filename="../OptionsDialog.ui" line="56"/>
@ -630,7 +630,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Select with Singleclick</source> <source>Select with Singleclick</source>
<translation type="vanished">Выбирать одним щелчком</translation> <translation type="obsolete">Выбирать одним щелчком</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="66"/> <location filename="../OptionsDialog.ui" line="66"/>
@ -863,7 +863,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Always use Message Font (Windows 2003 and earlier)</source> <source>Always use Message Font (Windows 2003 and earlier)</source>
<translation type="vanished">Всегда использовать шрифт сообщений (Windows 2003 и ранние)</translation> <translation type="obsolete">Всегда использовать шрифт сообщений (Windows 2003 и ранние)</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="596"/> <location filename="../OptionsDialog.ui" line="596"/>
@ -1023,14 +1023,14 @@ Y: %2</translation>
<name>PictureDialog</name> <name>PictureDialog</name>
<message> <message>
<location filename="../PictureDialog.ui" line="114"/> <location filename="../PictureDialog.ui" line="114"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Created: &lt;/span&gt;%8</source> &lt;span style=&quot;font-weight:600&quot;&gt;Created: &lt;/span&gt;%8</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;Заголовок: &lt;/span&gt;%6&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;Заголовок: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Место: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Место: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Игроки: &lt;/span&gt;%4 (Банда %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Игроки: &lt;/span&gt;%4 (Банда %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Сделано: &lt;/span&gt;%8</translation> &lt;span style=&quot;font-weight:600&quot;&gt;Сделано: &lt;/span&gt;%8</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="177"/> <location filename="../PictureDialog.ui" line="177"/>
@ -1714,8 +1714,8 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="23"/> <location filename="../SavegameDialog.ui" line="23"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source> <source>&lt;span style=&quot;font-weight:600&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;Сохранение&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation> <translation>&lt;span style=&quot;font-weight:600&quot;&gt;Сохранение&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="70"/> <location filename="../SavegameDialog.ui" line="70"/>

Binary file not shown.

View File

@ -10,7 +10,7 @@
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="29"/> <location filename="../AboutDialog.ui" line="29"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -20,7 +20,7 @@ Built with Qt %5&lt;br/&gt;
Running with Qt %6&lt;br/&gt; Running with Qt %6&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%7</source> %7</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -37,34 +37,34 @@ Running with Qt %6&lt;br/&gt;
<translation>&amp;Закрити</translation> <translation>&amp;Закрити</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="48"/> <location filename="../AboutDialog.cpp" line="49"/>
<source>Translated by %1</source> <source>Translated by %1</source>
<extracomment>Translated by translator, example Translated by Syping</extracomment> <extracomment>Translated by translator, example Translated by Syping</extracomment>
<translation>Переклад %1</translation> <translation>Переклад %1</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="50"/> <location filename="../AboutDialog.cpp" line="51"/>
<source>TRANSLATOR</source> <source>TRANSLATOR</source>
<extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment> <extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment>
<translatorcomment>PROFessoR &apos;AppleSOft&apos;,https://steamcommunity.com/id/AppleSOft <translatorcomment>PROFessoR &apos;AppleSOft&apos;,https://steamcommunity.com/id/AppleSOft
VenJam1n,https://socialclub.rockstargames.com/member/--VenJam1n-- VenJam1n,https://socialclub.rockstargames.com/member/--VenJam1n--
twitter,https://twitter.com/_VenJam1n</translatorcomment> twitter,https://twitter.com/_VenJam1n</translatorcomment>
<translation>VenJam1n,g5e://about?VmVuSmFtMW4=:U3RlYW06IDxhIGhyZWY9Imh0dHBzOi8vc3RlYW1jb21tdW5pdHkuY29tL3Byb2ZpbGVzLzc2NTYxMTk3OTg0NjM1ODE2LyI+UFJPRmVzc29SICdBcHBsZVNPZnQnPC9hPjxici8+U29jaWFsIENsdWI6IDxhIGhyZWY9Imh0dHBzOi8vc29jaWFsY2x1Yi5yb2Nrc3RhcmdhbWVzLmNvbS9tZW1iZXIvLS1WZW5KYW0xbi0tLzU2Mzc1NjkiPlZlbkphbTFuPC9hPjxici8+VHdpdHRlcjogPGEgaHJlZj0iaHR0cHM6Ly90d2l0dGVyLmNvbS9fVmVuSmFtMW4iPlZlbkphbTFuPC9hPg==</translation> <translation>VenJam1n,g5e://about?VmVuSmFtMW4:U3RlYW06IDxhIGhyZWY9Imh0dHBzOi8vc3RlYW1jb21tdW5pdHkuY29tL3Byb2ZpbGVzLzc2NTYxMTk3OTg0NjM1ODE2LyI+UFJPRmVzc29SICdBcHBsZVNPZnQnPC9hPjxici8+U29jaWFsIENsdWI6IDxhIGhyZWY9Imh0dHBzOi8vc29jaWFsY2x1Yi5yb2Nrc3RhcmdhbWVzLmNvbS9tZW1iZXIvLS1WZW5KYW0xbi0tLzU2Mzc1NjkiPlZlbkphbTFuPC9hPjxici8+VHdpdHRlcjogPGEgaHJlZj0iaHR0cHM6Ly90d2l0dGVyLmNvbS9fVmVuSmFtMW4iPlZlbkphbTFuPC9hPg</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="73"/> <location filename="../AboutDialog.cpp" line="70"/>
<source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt; <source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt;
Pictures and Savegames</source> Pictures and Savegames</source>
<translation>Проект для перегляду Grand Theft Auto V Snapmatic&lt;br/&gt; <translation>Проект для перегляду Grand Theft Auto V Snapmatic&lt;br/&gt;
зображень та сейвів</translation> зображень та сейвів</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="76"/> <location filename="../AboutDialog.cpp" line="73"/>
<source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source> <source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source>
<translation>Авторське право &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation> <translation>Авторське право &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="78"/> <location filename="../AboutDialog.cpp" line="75"/>
<source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source> <source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation>%1 ліцензовано під &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation> <translation>%1 ліцензовано під &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</translation>
</message> </message>
@ -272,7 +272,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<source>...</source> <source>...</source>
<translation type="vanished">...</translation> <translation type="obsolete">...</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="203"/> <location filename="../ImportDialog.ui" line="203"/>
@ -294,7 +294,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<source>X</source> <source>X</source>
<translation type="vanished">Х</translation> <translation type="obsolete">Х</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="268"/> <location filename="../ImportDialog.ui" line="268"/>
@ -627,7 +627,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Open with Singleclick</source> <source>Open with Singleclick</source>
<translation type="vanished">Відкривати одиночним кліком</translation> <translation type="obsolete">Відкривати одиночним кліком</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="56"/> <location filename="../OptionsDialog.ui" line="56"/>
@ -636,7 +636,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Select with Singleclick</source> <source>Select with Singleclick</source>
<translation type="vanished">Обирати одиночним кліком</translation> <translation type="obsolete">Обирати одиночним кліком</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="66"/> <location filename="../OptionsDialog.ui" line="66"/>
@ -894,7 +894,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Always use Message Font (Windows 2003 and earlier)</source> <source>Always use Message Font (Windows 2003 and earlier)</source>
<translation type="vanished">Завжди використовуйте шрифт повідомлень (Windows 2003 і раніше)</translation> <translation type="obsolete">Завжди використовуйте шрифт повідомлень (Windows 2003 і раніше)</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="786"/> <location filename="../OptionsDialog.ui" line="786"/>
@ -1021,14 +1021,14 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="114"/> <location filename="../PictureDialog.ui" line="114"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Created: &lt;/span&gt;%8</source> &lt;span style=&quot;font-weight:600&quot;&gt;Created: &lt;/span&gt;%8</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;Назва: &lt;/span&gt;%6&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;Назва: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Розташування: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Розташування: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Гравці: &lt;/span&gt;%4 (Банда %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Гравці: &lt;/span&gt;%4 (Банда %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Створено: &lt;/span&gt;%8</translation> &lt;span style=&quot;font-weight:600&quot;&gt;Створено: &lt;/span&gt;%8</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="174"/> <location filename="../PictureDialog.ui" line="174"/>
@ -1690,11 +1690,11 @@ Press 1 for Default View</source>
<name>QApplication</name> <name>QApplication</name>
<message> <message>
<source>Font</source> <source>Font</source>
<translation type="vanished">Шрифт</translation> <translation type="obsolete">Шрифт</translation>
</message> </message>
<message> <message>
<source>Selected Font: %1</source> <source>Selected Font: %1</source>
<translation type="vanished">Вибраний шрифт:%1</translation> <translation type="obsolete">Вибраний шрифт:%1</translation>
</message> </message>
<message> <message>
<location filename="../main.cpp" line="137"/> <location filename="../main.cpp" line="137"/>
@ -1712,8 +1712,8 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="23"/> <location filename="../SavegameDialog.ui" line="23"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source> <source>&lt;span style=&quot;font-weight:600&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;Ігрове збереження&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation> <translation>&lt;span style=&quot;font-weight:600&quot;&gt;Ігрове збереження&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="70"/> <location filename="../SavegameDialog.ui" line="70"/>
@ -1932,7 +1932,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../SnapmaticEditor.ui" line="57"/> <location filename="../SnapmaticEditor.ui" line="57"/>
<source>Selfie</source> <source>Selfie</source>
<translation>Селфі</translation> <translation>Автопортрет</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.ui" line="64"/> <location filename="../SnapmaticEditor.ui" line="64"/>
@ -1942,7 +1942,7 @@ Press 1 for Default View</source>
<message> <message>
<location filename="../SnapmaticEditor.ui" line="71"/> <location filename="../SnapmaticEditor.ui" line="71"/>
<source>Mugshot</source> <source>Mugshot</source>
<translation>Автопортрет</translation> <translation>Кухоль постріл</translation>
</message> </message>
<message> <message>
<location filename="../SnapmaticEditor.ui" line="87"/> <location filename="../SnapmaticEditor.ui" line="87"/>

Binary file not shown.

View File

@ -10,7 +10,7 @@
</message> </message>
<message> <message>
<location filename="../AboutDialog.ui" line="29"/> <location filename="../AboutDialog.ui" line="29"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -20,7 +20,7 @@ Built with Qt %5&lt;br/&gt;
Running with Qt %6&lt;br/&gt; Running with Qt %6&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%7</source> %7</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;%1&lt;/span&gt;&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;%1&lt;/span&gt;&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
%2&lt;br/&gt; %2&lt;br/&gt;
&lt;br/&gt; &lt;br/&gt;
@ -37,30 +37,30 @@ Running with Qt %6&lt;br/&gt;
<translation>(&amp;C)</translation> <translation>(&amp;C)</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="48"/> <location filename="../AboutDialog.cpp" line="49"/>
<source>Translated by %1</source> <source>Translated by %1</source>
<extracomment>Translated by translator, example Translated by Syping</extracomment> <extracomment>Translated by translator, example Translated by Syping</extracomment>
<translation>: %1</translation> <translation>: %1</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="50"/> <location filename="../AboutDialog.cpp" line="51"/>
<source>TRANSLATOR</source> <source>TRANSLATOR</source>
<extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment> <extracomment>Insert your name here and profile here in following scheme, First Translator,First Profile\nSecond Translator\nThird Translator,Second Profile</extracomment>
<translation>Ray,https://steamcommunity.com/profiles/76561198282701714/</translation> <translation>Ray,https://steamcommunity.com/profiles/76561198282701714/</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="73"/> <location filename="../AboutDialog.cpp" line="70"/>
<source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt; <source>A project for viewing Grand Theft Auto V Snapmatic&lt;br/&gt;
Pictures and Savegames</source> Pictures and Savegames</source>
<translation> Grand Theft Auto V Snapmatic </translation> <translation> Grand Theft Auto V Snapmatic </translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="76"/> <location filename="../AboutDialog.cpp" line="73"/>
<source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source> <source>Copyright &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</source>
<translation> &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation> <translation> &amp;copy; &lt;a href=&quot;%1&quot;&gt;%2&lt;/a&gt; %3</translation>
</message> </message>
<message> <message>
<location filename="../AboutDialog.cpp" line="78"/> <location filename="../AboutDialog.cpp" line="75"/>
<source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source> <source>%1 is licensed under &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt;</source>
<translation>%1 使 &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt; 授權條款發布</translation> <translation>%1 使 &lt;a href=&quot;https://www.gnu.org/licenses/gpl-3.0.html#content&quot;&gt;GNU GPLv3&lt;/a&gt; 授權條款發布</translation>
</message> </message>
@ -268,7 +268,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<source>...</source> <source>...</source>
<translation type="vanished">...</translation> <translation type="obsolete">...</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="203"/> <location filename="../ImportDialog.ui" line="203"/>
@ -290,7 +290,7 @@ Pictures and Savegames</source>
</message> </message>
<message> <message>
<source>X</source> <source>X</source>
<translation type="vanished">X</translation> <translation type="obsolete">X</translation>
</message> </message>
<message> <message>
<location filename="../ImportDialog.ui" line="268"/> <location filename="../ImportDialog.ui" line="268"/>
@ -622,7 +622,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Open with Singleclick</source> <source>Open with Singleclick</source>
<translation type="vanished"></translation> <translation type="obsolete"></translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="56"/> <location filename="../OptionsDialog.ui" line="56"/>
@ -631,7 +631,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Select with Singleclick</source> <source>Select with Singleclick</source>
<translation type="vanished"></translation> <translation type="obsolete"></translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="66"/> <location filename="../OptionsDialog.ui" line="66"/>
@ -888,7 +888,7 @@ Y: %2</translation>
</message> </message>
<message> <message>
<source>Always use Message Font (Windows 2003 and earlier)</source> <source>Always use Message Font (Windows 2003 and earlier)</source>
<translation type="vanished">使 (Windows 2003 )</translation> <translation type="obsolete">使 (Windows 2003 )</translation>
</message> </message>
<message> <message>
<location filename="../OptionsDialog.ui" line="786"/> <location filename="../OptionsDialog.ui" line="786"/>
@ -1015,14 +1015,14 @@ Y: %2</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="114"/> <location filename="../PictureDialog.ui" line="114"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt; <source>&lt;span style=&quot;font-weight:600&quot;&gt;Title: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Location: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;Players: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;Created: &lt;/span&gt;%8</source> &lt;span style=&quot;font-weight:600&quot;&gt;Created: &lt;/span&gt;%8</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;: &lt;/span&gt;%6&lt;br/&gt; <translation>&lt;span style=&quot;font-weight:600&quot;&gt;: &lt;/span&gt;%6&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;: &lt;/span&gt;%7 (%1, %2, %3)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt; &lt;span style=&quot;font-weight:600&quot;&gt;: &lt;/span&gt;%4 (Crew %5)&lt;br/&gt;
&lt;span style=&quot; font-weight:600;&quot;&gt;: &lt;/span&gt;%8</translation> &lt;span style=&quot;font-weight:600&quot;&gt;: &lt;/span&gt;%8</translation>
</message> </message>
<message> <message>
<location filename="../PictureDialog.ui" line="174"/> <location filename="../PictureDialog.ui" line="174"/>
@ -1694,8 +1694,8 @@ Press 1 for Default View</source>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="23"/> <location filename="../SavegameDialog.ui" line="23"/>
<source>&lt;span style=&quot; font-weight:600;&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source> <source>&lt;span style=&quot;font-weight:600&quot;&gt;Savegame&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</source>
<translation>&lt;span style=&quot; font-weight:600;&quot;&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation> <translation>&lt;span style=&quot;font-weight:600&quot;&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;%1</translation>
</message> </message>
<message> <message>
<location filename="../SavegameDialog.ui" line="70"/> <location filename="../SavegameDialog.ui" line="70"/>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 661 KiB

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.