gta5view 1.9.0 release
This commit is contained in:
parent
9adc8d9650
commit
5dbc06f393
32 changed files with 229 additions and 273 deletions
|
@ -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} && \
|
||||||
|
|
|
@ -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} && \
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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 © <a href=\"%1\">%2</a> %3");
|
QString copyrightDes1 = tr("Copyright © <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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
</sizepolicy>
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><span style=" font-weight:600;">%1</span><br/>
|
<string><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
|
|
@ -111,10 +111,10 @@
|
||||||
</sizepolicy>
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string><span style=" font-weight:600;">Title: </span>%6<br/>
|
<string><span style="font-weight:600">Title: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Location: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Location: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Players: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Players: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Created: </span>%8</string>
|
<span style="font-weight:600">Created: </span>%8</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="wordWrap">
|
<property name="wordWrap">
|
||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
|
|
|
@ -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
|
|
||||||
}
|
|
||||||
|
|
|
@ -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();
|
||||||
|
|
|
@ -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.
|
|
||||||
|
|
|
@ -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><span style=" font-weight:600;">Savegame</span><br><br>%1</string>
|
<string><span style="font-weight:600">Savegame</span><br><br>%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>
|
||||||
|
|
2
config.h
2
config.h
|
@ -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
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.ui" line="29"/>
|
<location filename="../AboutDialog.ui" line="29"/>
|
||||||
<source><span style=" font-weight:600;">%1</span><br/>
|
<source><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -28,30 +28,30 @@ Running with Qt %6<br/>
|
||||||
<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<br/>
|
<source>A project for viewing Grand Theft Auto V Snapmatic<br/>
|
||||||
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 &copy; <a href="%1">%2</a> %3</source>
|
<source>Copyright &copy; <a href="%1">%2</a> %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 <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></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><span style=" font-weight:600;">Title: </span>%6<br/>
|
<source><span style="font-weight:600">Title: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Location: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Location: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Players: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Players: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Created: </span>%8</source>
|
<span style="font-weight:600">Created: </span>%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><span style=" font-weight:600;">Savegame</span><br><br>%1</source>
|
<source><span style="font-weight:600">Savegame</span><br><br>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.ui" line="29"/>
|
<location filename="../AboutDialog.ui" line="29"/>
|
||||||
<source><span style=" font-weight:600;">%1</span><br/>
|
<source><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -20,7 +20,7 @@ Built with Qt %5<br/>
|
||||||
Running with Qt %6<br/>
|
Running with Qt %6<br/>
|
||||||
<br/>
|
<br/>
|
||||||
%7</source>
|
%7</source>
|
||||||
<translation><span style=" font-weight:600;">%1</span><br/>
|
<translation><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -37,31 +37,31 @@ Läuft auf Qt %6<br/>
|
||||||
<translation>S&chließen</translation>
|
<translation>S&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<br/>
|
<source>A project for viewing Grand Theft Auto V Snapmatic<br/>
|
||||||
Pictures and Savegames</source>
|
Pictures and Savegames</source>
|
||||||
<translation>Ein Projekt zum ansehen von Grand Theft Auto V<br/>
|
<translation>Ein Projekt zum ansehen von Grand Theft Auto V<br/>
|
||||||
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 &copy; <a href="%1">%2</a> %3</source>
|
<source>Copyright &copy; <a href="%1">%2</a> %3</source>
|
||||||
<translation>Copyright &copy; <a href="%1">%2</a> %3</translation>
|
<translation>Copyright &copy; <a href="%1">%2</a> %3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.cpp" line="78"/>
|
<location filename="../AboutDialog.cpp" line="75"/>
|
||||||
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
||||||
<translation>%1 ist lizenziert unter <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></translation>
|
<translation>%1 ist lizenziert unter <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></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><span style=" font-weight:600;">Title: </span>%6<br/>
|
<source><span style="font-weight:600">Title: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Location: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Location: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Players: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Players: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Created: </span>%8</source>
|
<span style="font-weight:600">Created: </span>%8</source>
|
||||||
<translation><span style=" font-weight:600;">Titel: </span>%6<br/>
|
<translation><span style="font-weight:600">Titel: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Standort: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Standort: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Spieler: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Spieler: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Erstellt: </span>%8</translation>
|
<span style="font-weight:600">Erstellt: </span>%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><span style=" font-weight:600;">Savegame</span><br><br>%1</source>
|
<source><span style="font-weight:600">Savegame</span><br><br>%1</source>
|
||||||
<translation><span style=" font-weight:600;">Spielstand</span><br><br>%1</translation>
|
<translation><span style="font-weight:600">Spielstand</span><br><br>%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"/>
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.ui" line="29"/>
|
<location filename="../AboutDialog.ui" line="29"/>
|
||||||
<source><span style=" font-weight:600;">%1</span><br/>
|
<source><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -28,30 +28,30 @@ Running with Qt %6<br/>
|
||||||
<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<br/>
|
<source>A project for viewing Grand Theft Auto V Snapmatic<br/>
|
||||||
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 &copy; <a href="%1">%2</a> %3</source>
|
<source>Copyright &copy; <a href="%1">%2</a> %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 <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></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><span style=" font-weight:600;">Title: </span>%6<br/>
|
<source><span style="font-weight:600">Title: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Location: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Location: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Players: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Players: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Created: </span>%8</source>
|
<span style="font-weight:600">Created: </span>%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><span style=" font-weight:600;">Savegame</span><br><br>%1</source>
|
<source><span style="font-weight:600">Savegame</span><br><br>%1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.ui" line="29"/>
|
<location filename="../AboutDialog.ui" line="29"/>
|
||||||
<source><span style=" font-weight:600;">%1</span><br/>
|
<source><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -20,7 +20,7 @@ Built with Qt %5<br/>
|
||||||
Running with Qt %6<br/>
|
Running with Qt %6<br/>
|
||||||
<br/>
|
<br/>
|
||||||
%7</source>
|
%7</source>
|
||||||
<translation><span style=" font-weight:600;">%1</span><br/>
|
<translation><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -37,31 +37,32 @@ Fonctionne avec Qt %6<br/>
|
||||||
<translation>&Fermer</translation>
|
<translation>&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<br/>
|
<source>A project for viewing Grand Theft Auto V Snapmatic<br/>
|
||||||
Pictures and Savegames</source>
|
Pictures and Savegames</source>
|
||||||
<translation>Un outil pour gérer les photos Snapmatic<br/>
|
<translation>Un outil pour gérer les photos Snapmatic<br/>
|
||||||
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 &copy; <a href="%1">%2</a> %3</source>
|
<source>Copyright &copy; <a href="%1">%2</a> %3</source>
|
||||||
<translation>Copyright &copy; <a href="%1">%2</a> %3</translation>
|
<translation>Copyright &copy; <a href="%1">%2</a> %3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.cpp" line="78"/>
|
<location filename="../AboutDialog.cpp" line="75"/>
|
||||||
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
||||||
<translation>%1 est distribué sous license <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></translation>
|
<translation>%1 est distribué sous license <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></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'Avatar</translation>
|
<translation>Forcer la couleur dans la zone d'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'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't change the picture at all, guaranteed to break Snapmatic unless you know what you doing</source>
|
<source>Import as-is, don'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'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>&Cancel</source>
|
<source>&Cancel</source>
|
||||||
<translation>A&nnuler</translation>
|
<translation>&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'utilisez comme Avatar, l'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'Avatar Snapmatic</translation>
|
<translation>Zone d'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'utilisez comme Avatar, l'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 (ré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><span style=" font-weight:600;">Title: </span>%6<br/>
|
<source><span style="font-weight:600">Title: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Location: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Location: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Players: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Players: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Created: </span>%8</source>
|
<span style="font-weight:600">Created: </span>%8</source>
|
||||||
<translation><span style=" font-weight:600;">Titre : </span>%6<br/>
|
<translation><span style="font-weight:600">Titre : </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Emplacement : </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Emplacement : </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Joueurs : </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Joueurs : </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Créé le : </span>%8</translation>
|
<span style="font-weight:600">Créé le : </span>%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><span style=" font-weight:600;">Savegame</span><br><br>%1</source>
|
<source><span style="font-weight:600">Savegame</span><br><br>%1</source>
|
||||||
<translation><span style=" font-weight:600;">Sauvegarde</span><br><br>%1</translation>
|
<translation><span style="font-weight:600">Sauvegarde</span><br><br>%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>&Apply</source>
|
<source>&Apply</source>
|
||||||
<translation>A&ppliquer</translation>
|
<translation>&Appliquer</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SnapmaticEditor.ui" line="256"/>
|
<location filename="../SnapmaticEditor.ui" line="256"/>
|
||||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.ui" line="29"/>
|
<location filename="../AboutDialog.ui" line="29"/>
|
||||||
<source><span style=" font-weight:600;">%1</span><br/>
|
<source><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -20,7 +20,7 @@ Built with Qt %5<br/>
|
||||||
Running with Qt %6<br/>
|
Running with Qt %6<br/>
|
||||||
<br/>
|
<br/>
|
||||||
%7</source>
|
%7</source>
|
||||||
<translation><span style=" font-weight:600;">%1</span><br/>
|
<translation><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -37,31 +37,31 @@ Qt로 실행 %6<br/>
|
||||||
<translation>닫기(&C)</translation>
|
<translation>닫기(&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><a href="https://steamcommunity.com/id/BLACKPINK-/">앙시모사우루스</a></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<br/>
|
<source>A project for viewing Grand Theft Auto V Snapmatic<br/>
|
||||||
Pictures and Savegames</source>
|
Pictures and Savegames</source>
|
||||||
<translation>이 프로그램은 GTA 5 스냅매틱을 수정하고 보기 위한 프로젝트입니다.<br/>
|
<translation>이 프로그램은 GTA 5 스냅매틱을 수정하고 보기 위한 프로젝트입니다.<br/>
|
||||||
이미지 뷰어 및 세이브 파일 관리 지원</translation>
|
이미지 뷰어 및 세이브 파일 관리 지원</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.cpp" line="76"/>
|
<location filename="../AboutDialog.cpp" line="73"/>
|
||||||
<source>Copyright &copy; <a href="%1">%2</a> %3</source>
|
<source>Copyright &copy; <a href="%1">%2</a> %3</source>
|
||||||
<translation>저작권 &copy; <a href="%1">%2</a> %3</translation>
|
<translation>저작권 &copy; <a href="%1">%2</a> %3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.cpp" line="78"/>
|
<location filename="../AboutDialog.cpp" line="75"/>
|
||||||
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
||||||
<translation>%1는 <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a> 에 따라 라이센스가 부여됩니다</translation>
|
<translation>%1는 <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a> 에 따라 라이센스가 부여됩니다</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><span style=" font-weight:600;">Title: </span>%6<br/>
|
<source><span style="font-weight:600">Title: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Location: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Location: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Players: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Players: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Created: </span>%8</source>
|
<span style="font-weight:600">Created: </span>%8</source>
|
||||||
<translation><span style=" font-weight:600;">제목: </span>%6<br/>
|
<translation><span style="font-weight:600">제목: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">위치: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">위치: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">플레이어: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">플레이어: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">생성 날짜: </span>%8</translation>
|
<span style="font-weight:600">생성 날짜: </span>%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><span style=" font-weight:600;">Savegame</span><br><br>%1</source>
|
<source><span style="font-weight:600">Savegame</span><br><br>%1</source>
|
||||||
<translation><span style=" font-weight:600;">세이브 파일</span><br><br>%1</translation>
|
<translation><span style="font-weight:600">세이브 파일</span><br><br>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SavegameDialog.ui" line="70"/>
|
<location filename="../SavegameDialog.ui" line="70"/>
|
||||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.ui" line="29"/>
|
<location filename="../AboutDialog.ui" line="29"/>
|
||||||
<source><span style=" font-weight:600;">%1</span><br/>
|
<source><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -20,7 +20,7 @@ Built with Qt %5<br/>
|
||||||
Running with Qt %6<br/>
|
Running with Qt %6<br/>
|
||||||
<br/>
|
<br/>
|
||||||
%7</source>
|
%7</source>
|
||||||
<translation><span style=" font-weight:600;">%1</span><br/>
|
<translation><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -37,31 +37,31 @@ Running with Qt %6<br/>
|
||||||
<translation>&Закрыть</translation>
|
<translation>&Закрыть</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<br/>
|
<source>A project for viewing Grand Theft Auto V Snapmatic<br/>
|
||||||
Pictures and Savegames</source>
|
Pictures and Savegames</source>
|
||||||
<translation>Проект для просмотра Grand Theft Auto V Snapmatic<br/>
|
<translation>Проект для просмотра Grand Theft Auto V Snapmatic<br/>
|
||||||
картинок и сохранений</translation>
|
картинок и сохранений</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.cpp" line="76"/>
|
<location filename="../AboutDialog.cpp" line="73"/>
|
||||||
<source>Copyright &copy; <a href="%1">%2</a> %3</source>
|
<source>Copyright &copy; <a href="%1">%2</a> %3</source>
|
||||||
<translation>Copyright &copy; <a href="%1">%2</a> %3</translation>
|
<translation>Copyright &copy; <a href="%1">%2</a> %3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.cpp" line="78"/>
|
<location filename="../AboutDialog.cpp" line="75"/>
|
||||||
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
||||||
<translation>%1 под лицензией <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></translation>
|
<translation>%1 под лицензией <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></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><span style=" font-weight:600;">Title: </span>%6<br/>
|
<source><span style="font-weight:600">Title: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Location: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Location: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Players: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Players: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Created: </span>%8</source>
|
<span style="font-weight:600">Created: </span>%8</source>
|
||||||
<translation><span style=" font-weight:600;">Заголовок: </span>%6<br/>
|
<translation><span style="font-weight:600">Заголовок: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Место: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Место: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Игроки: </span>%4 (Банда %5)<br/>
|
<span style="font-weight:600">Игроки: </span>%4 (Банда %5)<br/>
|
||||||
<span style=" font-weight:600;">Сделано: </span>%8</translation>
|
<span style="font-weight:600">Сделано: </span>%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><span style=" font-weight:600;">Savegame</span><br><br>%1</source>
|
<source><span style="font-weight:600">Savegame</span><br><br>%1</source>
|
||||||
<translation><span style=" font-weight:600;">Сохранение</span><br><br>%1</translation>
|
<translation><span style="font-weight:600">Сохранение</span><br><br>%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../SavegameDialog.ui" line="70"/>
|
<location filename="../SavegameDialog.ui" line="70"/>
|
||||||
|
|
Binary file not shown.
|
@ -10,7 +10,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.ui" line="29"/>
|
<location filename="../AboutDialog.ui" line="29"/>
|
||||||
<source><span style=" font-weight:600;">%1</span><br/>
|
<source><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -20,7 +20,7 @@ Built with Qt %5<br/>
|
||||||
Running with Qt %6<br/>
|
Running with Qt %6<br/>
|
||||||
<br/>
|
<br/>
|
||||||
%7</source>
|
%7</source>
|
||||||
<translation><span style=" font-weight:600;">%1</span><br/>
|
<translation><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -37,34 +37,34 @@ Running with Qt %6<br/>
|
||||||
<translation>&Закрити</translation>
|
<translation>&Закрити</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 'AppleSOft',https://steamcommunity.com/id/AppleSOft
|
<translatorcomment>PROFessoR 'AppleSOft',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<br/>
|
<source>A project for viewing Grand Theft Auto V Snapmatic<br/>
|
||||||
Pictures and Savegames</source>
|
Pictures and Savegames</source>
|
||||||
<translation>Проект для перегляду Grand Theft Auto V Snapmatic<br/>
|
<translation>Проект для перегляду Grand Theft Auto V Snapmatic<br/>
|
||||||
зображень та сейвів</translation>
|
зображень та сейвів</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.cpp" line="76"/>
|
<location filename="../AboutDialog.cpp" line="73"/>
|
||||||
<source>Copyright &copy; <a href="%1">%2</a> %3</source>
|
<source>Copyright &copy; <a href="%1">%2</a> %3</source>
|
||||||
<translation>Авторське право &copy; <a href="%1">%2</a> %3</translation>
|
<translation>Авторське право &copy; <a href="%1">%2</a> %3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.cpp" line="78"/>
|
<location filename="../AboutDialog.cpp" line="75"/>
|
||||||
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
||||||
<translation>%1 ліцензовано під <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></translation>
|
<translation>%1 ліцензовано під <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></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><span style=" font-weight:600;">Title: </span>%6<br/>
|
<source><span style="font-weight:600">Title: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Location: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Location: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Players: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Players: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Created: </span>%8</source>
|
<span style="font-weight:600">Created: </span>%8</source>
|
||||||
<translation><span style=" font-weight:600;">Назва: </span>%6<br/>
|
<translation><span style="font-weight:600">Назва: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Розташування: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Розташування: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Гравці: </span>%4 (Банда %5)<br/>
|
<span style="font-weight:600">Гравці: </span>%4 (Банда %5)<br/>
|
||||||
<span style=" font-weight:600;">Створено: </span>%8</translation>
|
<span style="font-weight:600">Створено: </span>%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><span style=" font-weight:600;">Savegame</span><br><br>%1</source>
|
<source><span style="font-weight:600">Savegame</span><br><br>%1</source>
|
||||||
<translation><span style=" font-weight:600;">Ігрове збереження</span><br><br>%1</translation>
|
<translation><span style="font-weight:600">Ігрове збереження</span><br><br>%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.
|
@ -10,7 +10,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.ui" line="29"/>
|
<location filename="../AboutDialog.ui" line="29"/>
|
||||||
<source><span style=" font-weight:600;">%1</span><br/>
|
<source><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -20,7 +20,7 @@ Built with Qt %5<br/>
|
||||||
Running with Qt %6<br/>
|
Running with Qt %6<br/>
|
||||||
<br/>
|
<br/>
|
||||||
%7</source>
|
%7</source>
|
||||||
<translation><span style=" font-weight:600;">%1</span><br/>
|
<translation><span style="font-weight:600">%1</span><br/>
|
||||||
<br/>
|
<br/>
|
||||||
%2<br/>
|
%2<br/>
|
||||||
<br/>
|
<br/>
|
||||||
|
@ -37,30 +37,30 @@ Running with Qt %6<br/>
|
||||||
<translation>關閉(&C)</translation>
|
<translation>關閉(&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<br/>
|
<source>A project for viewing Grand Theft Auto V Snapmatic<br/>
|
||||||
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 &copy; <a href="%1">%2</a> %3</source>
|
<source>Copyright &copy; <a href="%1">%2</a> %3</source>
|
||||||
<translation>版權 &copy; <a href="%1">%2</a> %3</translation>
|
<translation>版權 &copy; <a href="%1">%2</a> %3</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../AboutDialog.cpp" line="78"/>
|
<location filename="../AboutDialog.cpp" line="75"/>
|
||||||
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
<source>%1 is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a></source>
|
||||||
<translation>%1 使用 <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a> 授權條款發布</translation>
|
<translation>%1 使用 <a href="https://www.gnu.org/licenses/gpl-3.0.html#content">GNU GPLv3</a> 授權條款發布</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><span style=" font-weight:600;">Title: </span>%6<br/>
|
<source><span style="font-weight:600">Title: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">Location: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">Location: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">Players: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">Players: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">Created: </span>%8</source>
|
<span style="font-weight:600">Created: </span>%8</source>
|
||||||
<translation><span style=" font-weight:600;">標題: </span>%6<br/>
|
<translation><span style="font-weight:600">標題: </span>%6<br/>
|
||||||
<span style=" font-weight:600;">地點: </span>%7 (%1, %2, %3)<br/>
|
<span style="font-weight:600">地點: </span>%7 (%1, %2, %3)<br/>
|
||||||
<span style=" font-weight:600;">玩家: </span>%4 (Crew %5)<br/>
|
<span style="font-weight:600">玩家: </span>%4 (Crew %5)<br/>
|
||||||
<span style=" font-weight:600;">建立於: </span>%8</translation>
|
<span style="font-weight:600">建立於: </span>%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><span style=" font-weight:600;">Savegame</span><br><br>%1</source>
|
<source><span style="font-weight:600">Savegame</span><br><br>%1</source>
|
||||||
<translation><span style=" font-weight:600;">遊戲存檔</span><br><br>%1</translation>
|
<translation><span style="font-weight:600">遊戲存檔</span><br><br>%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 |
BIN
res/src/prop.png
BIN
res/src/prop.png
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 32 KiB |
BIN
res/template.g5e
BIN
res/template.g5e
Binary file not shown.
Loading…
Reference in a new issue